xref: /btstack/test/le_audio/le_audio_broadcast_sink.c (revision 3b0d944c1e759d7b17784e09eed74fe6431b567b)
110277393SMatthias Ringwald /*
210277393SMatthias Ringwald  * Copyright (C) 2022 BlueKitchen GmbH
310277393SMatthias Ringwald  *
410277393SMatthias Ringwald  * Redistribution and use in source and binary forms, with or without
510277393SMatthias Ringwald  * modification, are permitted provided that the following conditions
610277393SMatthias Ringwald  * are met:
710277393SMatthias Ringwald  *
810277393SMatthias Ringwald  * 1. Redistributions of source code must retain the above copyright
910277393SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer.
1010277393SMatthias Ringwald  * 2. Redistributions in binary form must reproduce the above copyright
1110277393SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer in the
1210277393SMatthias Ringwald  *    documentation and/or other materials provided with the distribution.
1310277393SMatthias Ringwald  * 3. Neither the name of the copyright holders nor the names of
1410277393SMatthias Ringwald  *    contributors may be used to endorse or promote products derived
1510277393SMatthias Ringwald  *    from this software without specific prior written permission.
1610277393SMatthias Ringwald  * 4. Any redistribution, use, or modification is done solely for
1710277393SMatthias Ringwald  *    personal benefit and not for any commercial purpose or for
1810277393SMatthias Ringwald  *    monetary gain.
1910277393SMatthias Ringwald  *
2010277393SMatthias Ringwald  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
2110277393SMatthias Ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2210277393SMatthias Ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
2310277393SMatthias Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
2410277393SMatthias Ringwald  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
2510277393SMatthias Ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
2610277393SMatthias Ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
2710277393SMatthias Ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
2810277393SMatthias Ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2910277393SMatthias Ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
3010277393SMatthias Ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3110277393SMatthias Ringwald  * SUCH DAMAGE.
3210277393SMatthias Ringwald  *
3310277393SMatthias Ringwald  * Please inquire about commercial licensing options at
3410277393SMatthias Ringwald  * [email protected]
3510277393SMatthias Ringwald  *
3610277393SMatthias Ringwald  */
3710277393SMatthias Ringwald 
3810277393SMatthias Ringwald #define BTSTACK_FILE__ "le_audio_broadcast_sink.c"
3910277393SMatthias Ringwald 
4010277393SMatthias Ringwald /*
4110277393SMatthias Ringwald  * LE Audio Broadcast Sink
4210277393SMatthias Ringwald  */
4310277393SMatthias Ringwald 
4410277393SMatthias Ringwald 
4510277393SMatthias Ringwald #include "btstack_config.h"
4610277393SMatthias Ringwald 
4710277393SMatthias Ringwald #include <stdint.h>
4810277393SMatthias Ringwald #include <stdio.h>
4910277393SMatthias Ringwald #include <stdlib.h>
5010277393SMatthias Ringwald #include <string.h>
5110277393SMatthias Ringwald #include <inttypes.h>
5210277393SMatthias Ringwald 
5310277393SMatthias Ringwald #include "ad_parser.h"
54efd5f6d0SMatthias Ringwald #include "ble/gatt-service/broadcast_audio_scan_service_server.h"
55efd5f6d0SMatthias Ringwald #include "ble/att_server.h"
56efd5f6d0SMatthias Ringwald #include "ble/sm.h"
5710277393SMatthias Ringwald #include "bluetooth_data_types.h"
5810277393SMatthias Ringwald #include "bluetooth_gatt.h"
5910277393SMatthias Ringwald #include "btstack_debug.h"
6010277393SMatthias Ringwald #include "btstack_audio.h"
6110277393SMatthias Ringwald #include "btstack_event.h"
6210277393SMatthias Ringwald #include "btstack_run_loop.h"
6310277393SMatthias Ringwald #include "btstack_ring_buffer.h"
6410277393SMatthias Ringwald #include "btstack_stdin.h"
6510277393SMatthias Ringwald #include "btstack_util.h"
6610277393SMatthias Ringwald #include "gap.h"
6710277393SMatthias Ringwald #include "hci.h"
6810277393SMatthias Ringwald #include "hci_cmd.h"
692fd68da2SMatthias Ringwald #include "btstack_lc3.h"
70e40ee29aSMatthias Ringwald #include "btstack_lc3_google.h"
719a0d67ccSMatthias Ringwald #include "btstack_lc3plus_fraunhofer.h"
72efd5f6d0SMatthias Ringwald #include "l2cap.h"
73efd5f6d0SMatthias Ringwald 
74efd5f6d0SMatthias Ringwald #include "le_audio_broadcast_sink.h"
754a5b1c65SMatthias Ringwald 
764a5b1c65SMatthias Ringwald #ifdef HAVE_POSIX_FILE_IO
7710277393SMatthias Ringwald #include "wav_util.h"
784a5b1c65SMatthias Ringwald #endif
7910277393SMatthias Ringwald 
8010277393SMatthias Ringwald // max config
8110277393SMatthias Ringwald #define MAX_NUM_BIS 2
8210277393SMatthias Ringwald #define MAX_SAMPLES_PER_FRAME 480
8310277393SMatthias Ringwald 
8410277393SMatthias Ringwald // playback
8510277393SMatthias Ringwald #define MAX_NUM_LC3_FRAMES   5
8610277393SMatthias Ringwald #define MAX_BYTES_PER_SAMPLE 4
8710277393SMatthias Ringwald #define PLAYBACK_BUFFER_SIZE (MAX_NUM_LC3_FRAMES * MAX_SAMPLES_PER_FRAME * MAX_BYTES_PER_SAMPLE)
8810277393SMatthias Ringwald 
8910277393SMatthias Ringwald // analysis
9010277393SMatthias Ringwald #define PACKET_PREFIX_LEN 10
9110277393SMatthias Ringwald 
9210277393SMatthias Ringwald #define ANSI_COLOR_RED     "\x1b[31m"
9310277393SMatthias Ringwald #define ANSI_COLOR_GREEN   "\x1b[32m"
9410277393SMatthias Ringwald #define ANSI_COLOR_YELLOW  "\x1b[33m"
9510277393SMatthias Ringwald #define ANSI_COLOR_BLUE    "\x1b[34m"
9610277393SMatthias Ringwald #define ANSI_COLOR_MAGENTA "\x1b[35m"
9710277393SMatthias Ringwald #define ANSI_COLOR_CYAN    "\x1b[36m"
9810277393SMatthias Ringwald #define ANSI_COLOR_RESET   "\x1b[0m"
9910277393SMatthias Ringwald 
10010277393SMatthias Ringwald static void show_usage(void);
10110277393SMatthias Ringwald 
10210277393SMatthias Ringwald static const char * filename_wav = "le_audio_broadcast_sink.wav";
10310277393SMatthias Ringwald 
10410277393SMatthias Ringwald static enum {
10510277393SMatthias Ringwald     APP_W4_WORKING,
10610277393SMatthias Ringwald     APP_W4_BROADCAST_ADV,
10710277393SMatthias Ringwald     APP_W4_PA_AND_BIG_INFO,
108b3a520acSMatthias Ringwald     APP_W4_BROADCAST_CODE,
10910277393SMatthias Ringwald     APP_W4_BIG_SYNC_ESTABLISHED,
11010277393SMatthias Ringwald     APP_STREAMING,
11110277393SMatthias Ringwald     APP_IDLE
11210277393SMatthias Ringwald } app_state = APP_W4_WORKING;
11310277393SMatthias Ringwald 
114efd5f6d0SMatthias Ringwald static const uint8_t adv_sid = 0;
115efd5f6d0SMatthias Ringwald static le_advertising_set_t le_advertising_set;
116efd5f6d0SMatthias Ringwald static uint8_t adv_handle = 0;
117efd5f6d0SMatthias Ringwald 
118efd5f6d0SMatthias Ringwald static const le_extended_advertising_parameters_t extended_params = {
119efd5f6d0SMatthias Ringwald         .advertising_event_properties = 1,  // connectable
120efd5f6d0SMatthias Ringwald         .primary_advertising_interval_min = 0x4b0, // 750 ms
121efd5f6d0SMatthias Ringwald         .primary_advertising_interval_max = 0x4b0, // 750 ms
122efd5f6d0SMatthias Ringwald         .primary_advertising_channel_map = 7,
123efd5f6d0SMatthias Ringwald         .own_address_type = 0,
124efd5f6d0SMatthias Ringwald         .peer_address_type = 0,
125efd5f6d0SMatthias Ringwald         .peer_address =  { 0 },
126efd5f6d0SMatthias Ringwald         .advertising_filter_policy = 0,
127efd5f6d0SMatthias Ringwald         .advertising_tx_power = 10, // 10 dBm
128efd5f6d0SMatthias Ringwald         .primary_advertising_phy = 1, // LE 1M PHY
129efd5f6d0SMatthias Ringwald         .secondary_advertising_max_skip = 0,
130efd5f6d0SMatthias Ringwald         .secondary_advertising_phy = 1, // LE 1M PHY
131efd5f6d0SMatthias Ringwald         .advertising_sid = adv_sid,
132efd5f6d0SMatthias Ringwald         .scan_request_notification_enable = 0,
133efd5f6d0SMatthias Ringwald };
134efd5f6d0SMatthias Ringwald 
135efd5f6d0SMatthias Ringwald static const uint8_t extended_adv_data[] = {
136*3b0d944cSMatthias Ringwald         // 16 bit service data, ORG_BLUETOOTH_SERVICE_BROADCAST_AUDIO_SCAN_SERVICE,
137*3b0d944cSMatthias Ringwald         3, BLUETOOTH_DATA_TYPE_SERVICE_DATA_16_BIT_UUID,
13881a67409SMatthias Ringwald             ORG_BLUETOOTH_SERVICE_BROADCAST_AUDIO_SCAN_SERVICE & 0xff, ORG_BLUETOOTH_SERVICE_BROADCAST_AUDIO_SCAN_SERVICE >> 8,
13981a67409SMatthias Ringwald        // name
14081a67409SMatthias Ringwald         5, BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME, 'S', 'i', 'n', 'k'
14181a67409SMatthias Ringwald };
14281a67409SMatthias Ringwald 
14360d70dccSMatthias Ringwald #define BASS_NUM_CLIENTS 1
14460d70dccSMatthias Ringwald #define BASS_NUM_SOURCES 1
1457a236728SMatthias Ringwald static bass_source_data_t   bass_source_new;
14660d70dccSMatthias Ringwald static bass_server_source_t bass_sources[BASS_NUM_SOURCES];
14760d70dccSMatthias Ringwald static bass_remote_client_t bass_clients[BASS_NUM_CLIENTS];
14860d70dccSMatthias Ringwald 
14910277393SMatthias Ringwald //
15010277393SMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration;
151efd5f6d0SMatthias Ringwald static btstack_packet_callback_registration_t sm_event_callback_registration;
15210277393SMatthias Ringwald 
15310277393SMatthias Ringwald static bool have_base;
15410277393SMatthias Ringwald static bool have_big_info;
155ffbedad9SMatthias Ringwald static bool have_past;
1560707de65SMatthias Ringwald static bool have_broadcast_code;
157ffbedad9SMatthias Ringwald static bool standalone_mode;
1580707de65SMatthias Ringwald static uint32_t bis_sync_mask;
15910277393SMatthias Ringwald 
16010277393SMatthias Ringwald uint32_t last_samples_report_ms;
1614a5b1c65SMatthias Ringwald uint16_t samples_received;
1624a5b1c65SMatthias Ringwald uint16_t samples_dropped;
16310277393SMatthias Ringwald uint16_t frames_per_second[MAX_NUM_BIS];
16410277393SMatthias Ringwald 
16510277393SMatthias Ringwald // remote info
16610277393SMatthias Ringwald static char remote_name[20];
16710277393SMatthias Ringwald static bd_addr_t remote;
16810277393SMatthias Ringwald static bd_addr_type_t remote_type;
16910277393SMatthias Ringwald static uint8_t remote_sid;
17010277393SMatthias Ringwald static bool count_mode;
17110277393SMatthias Ringwald static bool pts_mode;
1722fe0253dSMatthias Ringwald static bool nrf5340_audio_demo;
1732fe0253dSMatthias Ringwald 
17410277393SMatthias Ringwald 
17510277393SMatthias Ringwald // broadcast info
17610277393SMatthias Ringwald static const uint8_t    big_handle = 1;
17710277393SMatthias Ringwald static hci_con_handle_t sync_handle;
17810277393SMatthias Ringwald static hci_con_handle_t bis_con_handles[MAX_NUM_BIS];
17910277393SMatthias Ringwald static unsigned int     next_bis_index;
180ac95ea81SMatthias Ringwald static uint8_t          encryption;
1810707de65SMatthias Ringwald static uint8_t          broadcast_code[16];
18210277393SMatthias Ringwald 
1832de3ad61SMatthias Ringwald static btstack_timer_source_t broadcast_sink_pa_sync_timer;
1842de3ad61SMatthias Ringwald 
18510277393SMatthias Ringwald // analysis
1861716d43dSMatthias Ringwald static bool     last_packet_received_big;
1871716d43dSMatthias Ringwald static uint16_t last_packet_sequence_big;
188ae7e4c11SMatthias Ringwald static bool     last_packet_received[MAX_NUM_BIS];
18910277393SMatthias Ringwald static uint16_t last_packet_sequence[MAX_NUM_BIS];
19010277393SMatthias Ringwald static uint32_t last_packet_time_ms[MAX_NUM_BIS];
19110277393SMatthias Ringwald static uint8_t  last_packet_prefix[MAX_NUM_BIS * PACKET_PREFIX_LEN];
19210277393SMatthias Ringwald 
1935c0d69beSMatthias Ringwald // BIG Sync
1945c0d69beSMatthias Ringwald static le_audio_big_sync_t        big_sync_storage;
1955c0d69beSMatthias Ringwald static le_audio_big_sync_params_t big_sync_params;
1965c0d69beSMatthias Ringwald 
19710277393SMatthias Ringwald // lc3 writer
19810277393SMatthias Ringwald static uint32_t lc3_frames;
19910277393SMatthias Ringwald 
20010277393SMatthias Ringwald // lc3 codec config
2014a5b1c65SMatthias Ringwald static uint16_t sampling_frequency_hz;
2022fd68da2SMatthias Ringwald static btstack_lc3_frame_duration_t frame_duration;
20310277393SMatthias Ringwald static uint16_t number_samples_per_frame;
20410277393SMatthias Ringwald static uint16_t octets_per_frame;
20510277393SMatthias Ringwald static uint8_t  num_bis;
20610277393SMatthias Ringwald 
20710277393SMatthias Ringwald // lc3 decoder
2089a0d67ccSMatthias Ringwald static bool request_lc3plus_decoder = false;
2099a0d67ccSMatthias Ringwald static bool use_lc3plus_decoder = false;
2102fd68da2SMatthias Ringwald static const btstack_lc3_decoder_t * lc3_decoder;
21110277393SMatthias Ringwald static int16_t pcm[MAX_NUM_BIS * MAX_SAMPLES_PER_FRAME];
21210277393SMatthias Ringwald 
2139a0d67ccSMatthias Ringwald static btstack_lc3_decoder_google_t google_decoder_contexts[MAX_NUM_BIS];
2149a0d67ccSMatthias Ringwald #ifdef HAVE_LC3PLUS
2159a0d67ccSMatthias Ringwald static btstack_lc3plus_fraunhofer_decoder_t fraunhofer_decoder_contexts[MAX_NUM_BIS];
2169a0d67ccSMatthias Ringwald #endif
2179a0d67ccSMatthias Ringwald static void * decoder_contexts[MAX_NR_BIS];
2189a0d67ccSMatthias Ringwald 
21910277393SMatthias Ringwald // playback
22010277393SMatthias Ringwald static uint8_t playback_buffer_storage[PLAYBACK_BUFFER_SIZE];
22110277393SMatthias Ringwald static btstack_ring_buffer_t playback_buffer;
22210277393SMatthias Ringwald 
2231716d43dSMatthias Ringwald static btstack_timer_source_t next_packet_timer;
22422d64f35SMatthias Ringwald static uint16_t               cached_iso_sdu_len;
22522d64f35SMatthias Ringwald static bool                   have_pcm[MAX_NUM_BIS];
22622d64f35SMatthias Ringwald 
22710277393SMatthias Ringwald static void le_audio_broadcast_sink_playback(int16_t * buffer, uint16_t num_samples){
22810277393SMatthias Ringwald     // called from lower-layer but guaranteed to be on main thread
22910277393SMatthias Ringwald     uint32_t bytes_needed = num_samples * num_bis * 2;
23010277393SMatthias Ringwald 
23110277393SMatthias Ringwald     static bool underrun = true;
23210277393SMatthias Ringwald 
23310277393SMatthias Ringwald     log_info("Playback: need %u, have %u", num_samples, btstack_ring_buffer_bytes_available(&playback_buffer) / ( num_bis * 2));
23410277393SMatthias Ringwald 
23510277393SMatthias Ringwald     if (bytes_needed > btstack_ring_buffer_bytes_available(&playback_buffer)){
23610277393SMatthias Ringwald         memset(buffer, 0, bytes_needed);
23710277393SMatthias Ringwald         if (underrun == false){
23810277393SMatthias Ringwald             log_info("Playback underrun");
23910277393SMatthias Ringwald             underrun = true;
24010277393SMatthias Ringwald         }
24110277393SMatthias Ringwald         return;
24210277393SMatthias Ringwald     }
24310277393SMatthias Ringwald 
24410277393SMatthias Ringwald     if (underrun){
24510277393SMatthias Ringwald         underrun = false;
24610277393SMatthias Ringwald         log_info("Playback started");
24710277393SMatthias Ringwald     }
24810277393SMatthias Ringwald     uint32_t bytes_read;
24910277393SMatthias Ringwald     btstack_ring_buffer_read(&playback_buffer, (uint8_t *) buffer, bytes_needed, &bytes_read);
25010277393SMatthias Ringwald     btstack_assert(bytes_read == bytes_needed);
25110277393SMatthias Ringwald }
25210277393SMatthias Ringwald 
25310277393SMatthias Ringwald static void setup_lc3_decoder(void){
25410277393SMatthias Ringwald     uint8_t channel;
25510277393SMatthias Ringwald     for (channel = 0 ; channel < num_bis ; channel++){
2569a0d67ccSMatthias Ringwald         // pick decoder
2579a0d67ccSMatthias Ringwald         void * decoder_context = NULL;
2589a0d67ccSMatthias Ringwald #ifdef HAVE_LC3PLUS
2599a0d67ccSMatthias Ringwald         if (use_lc3plus_decoder){
2609a0d67ccSMatthias Ringwald             decoder_context = &fraunhofer_decoder_contexts[channel];
2619a0d67ccSMatthias Ringwald             lc3_decoder = btstack_lc3plus_fraunhofer_decoder_init_instance(decoder_context);
2629a0d67ccSMatthias Ringwald         }
2639a0d67ccSMatthias Ringwald         else
2649a0d67ccSMatthias Ringwald #endif
2659a0d67ccSMatthias Ringwald         {
2669a0d67ccSMatthias Ringwald             decoder_context = &google_decoder_contexts[channel];
267e40ee29aSMatthias Ringwald             lc3_decoder = btstack_lc3_decoder_google_init_instance(decoder_context);
2689a0d67ccSMatthias Ringwald         }
2699a0d67ccSMatthias Ringwald         decoder_contexts[channel] = decoder_context;
270da364eecSMatthias Ringwald         lc3_decoder->configure(decoder_context, sampling_frequency_hz, frame_duration, octets_per_frame);
27110277393SMatthias Ringwald     }
272dc0d751cSMatthias Ringwald     number_samples_per_frame = btstack_lc3_samples_per_frame(sampling_frequency_hz, frame_duration);
27310277393SMatthias Ringwald     btstack_assert(number_samples_per_frame <= MAX_SAMPLES_PER_FRAME);
27410277393SMatthias Ringwald }
27510277393SMatthias Ringwald 
27610277393SMatthias Ringwald static void close_files(void){
2774a5b1c65SMatthias Ringwald #ifdef HAVE_POSIX_FILE_IO
27810277393SMatthias Ringwald     printf("Close files\n");
27910277393SMatthias Ringwald     wav_writer_close();
2804a5b1c65SMatthias Ringwald #endif
281e38308a2SMatthias Ringwald     const btstack_audio_sink_t * sink = btstack_audio_sink_get_instance();
282e38308a2SMatthias Ringwald     if (sink != NULL){
283e38308a2SMatthias Ringwald         sink->stop_stream();
284e38308a2SMatthias Ringwald         sink->close();
285e38308a2SMatthias Ringwald     }
28610277393SMatthias Ringwald }
28710277393SMatthias Ringwald 
28810277393SMatthias Ringwald static void handle_periodic_advertisement(const uint8_t * packet, uint16_t size){
2892fe0253dSMatthias Ringwald     // nRF534_audio quirk - no BASE in periodic advertisement
2902fe0253dSMatthias Ringwald     if (nrf5340_audio_demo){
2912fe0253dSMatthias Ringwald         // hard coded config LC3
2922fe0253dSMatthias Ringwald         // default: mono bitrate 96000, 10 ms with USB audio source, 120 octets per frame
2932fe0253dSMatthias Ringwald         count_mode = 0;
2942fe0253dSMatthias Ringwald         pts_mode   = 0;
2952fe0253dSMatthias Ringwald         num_bis    = 1;
2962fe0253dSMatthias Ringwald         sampling_frequency_hz = 48000;
2972fe0253dSMatthias Ringwald         frame_duration = BTSTACK_LC3_FRAME_DURATION_10000US;
2982fe0253dSMatthias Ringwald         octets_per_frame = 120;
2992fe0253dSMatthias Ringwald         have_base = true;
3002fe0253dSMatthias Ringwald         return;
3012fe0253dSMatthias Ringwald     }
3022fe0253dSMatthias Ringwald 
30310277393SMatthias Ringwald     // periodic advertisement contains the BASE
30410277393SMatthias Ringwald     // TODO: BASE might be split across multiple advertisements
30510277393SMatthias Ringwald     const uint8_t * adv_data = hci_subevent_le_periodic_advertising_report_get_data(packet);
30610277393SMatthias Ringwald     uint16_t adv_size = hci_subevent_le_periodic_advertising_report_get_data_length(packet);
3078206d906SMatthias Ringwald     uint8_t adv_status = hci_subevent_le_periodic_advertising_report_get_data_status(packet);
3088206d906SMatthias Ringwald 
3098206d906SMatthias Ringwald     if (adv_status != 0) {
3108206d906SMatthias Ringwald         printf("Periodic Advertisement (status %u): ", adv_status);
3118206d906SMatthias Ringwald         printf_hexdump(adv_data, adv_size);
3128206d906SMatthias Ringwald         return;
3138206d906SMatthias Ringwald     }
31410277393SMatthias Ringwald 
31510277393SMatthias Ringwald     ad_context_t context;
31610277393SMatthias Ringwald     for (ad_iterator_init(&context, adv_size, adv_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)) {
31710277393SMatthias Ringwald         uint8_t data_type = ad_iterator_get_data_type(&context);
3184a5b1c65SMatthias Ringwald         // TODO: avoid out-of-bounds read
3194a5b1c65SMatthias Ringwald         // uint8_t data_size = ad_iterator_get_data_len(&context);
32010277393SMatthias Ringwald         const uint8_t * data = ad_iterator_get_data(&context);
32110277393SMatthias Ringwald         uint16_t uuid;
32210277393SMatthias Ringwald         switch (data_type){
32310277393SMatthias Ringwald             case BLUETOOTH_DATA_TYPE_SERVICE_DATA_16_BIT_UUID:
32410277393SMatthias Ringwald                 uuid = little_endian_read_16(data, 0);
32510277393SMatthias Ringwald                 if (uuid == ORG_BLUETOOTH_SERVICE_BASIC_AUDIO_ANNOUNCEMENT_SERVICE){
32610277393SMatthias Ringwald                     have_base = true;
32710277393SMatthias Ringwald                     // Level 1: Group Level
32810277393SMatthias Ringwald                     const uint8_t * base_data = &data[2];
3294a5b1c65SMatthias Ringwald                     // TODO: avoid out-of-bounds read
3304a5b1c65SMatthias Ringwald                     // uint16_t base_len = data_size - 2;
33110277393SMatthias Ringwald                     printf("BASE:\n");
33210277393SMatthias Ringwald                     uint32_t presentation_delay = little_endian_read_24(base_data, 0);
33310277393SMatthias Ringwald                     printf("- presentation delay: %"PRIu32" us\n", presentation_delay);
33410277393SMatthias Ringwald                     uint8_t num_subgroups = base_data[3];
3357a236728SMatthias Ringwald                     // Cache in new source struct
3367a236728SMatthias Ringwald                     bass_source_new.subgroups_num = num_subgroups;
33710277393SMatthias Ringwald                     printf("- num subgroups: %u\n", num_subgroups);
33810277393SMatthias Ringwald                     uint8_t i;
33910277393SMatthias Ringwald                     uint16_t offset = 4;
34010277393SMatthias Ringwald                     for (i=0;i<num_subgroups;i++){
34110277393SMatthias Ringwald                         // Level 2: Subgroup Level
34210277393SMatthias Ringwald                         num_bis = base_data[offset++];
34310277393SMatthias Ringwald                         printf("  - num bis[%u]: %u\n", i, num_bis);
34410277393SMatthias Ringwald                         // codec_id: coding format = 0x06, vendor and coded id = 0
34510277393SMatthias Ringwald                         offset += 5;
34610277393SMatthias Ringwald                         uint8_t codec_specific_configuration_length = base_data[offset++];
34710277393SMatthias Ringwald                         const uint8_t * codec_specific_configuration = &base_data[offset];
34810277393SMatthias Ringwald                         printf("  - codec specific config[%u]: ", i);
34910277393SMatthias Ringwald                         printf_hexdump(codec_specific_configuration, codec_specific_configuration_length);
35010277393SMatthias Ringwald                         // parse config to get sampling frequency and frame duration
35110277393SMatthias Ringwald                         uint8_t codec_offset = 0;
35210277393SMatthias Ringwald                         while ((codec_offset + 1) < codec_specific_configuration_length){
35310277393SMatthias Ringwald                             uint8_t ltv_len = codec_specific_configuration[codec_offset++];
35410277393SMatthias Ringwald                             uint8_t ltv_type = codec_specific_configuration[codec_offset];
35510277393SMatthias Ringwald                             const uint32_t sampling_frequency_map[] = { 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, 176400, 192000, 384000 };
35610277393SMatthias Ringwald                             uint8_t sampling_frequency_index;
35710277393SMatthias Ringwald                             uint8_t frame_duration_index;
35810277393SMatthias Ringwald                             switch (ltv_type){
35910277393SMatthias Ringwald                                 case 0x01: // sampling frequency
36010277393SMatthias Ringwald                                     sampling_frequency_index = codec_specific_configuration[codec_offset+1];
36110277393SMatthias Ringwald                                     // TODO: check range
36210277393SMatthias Ringwald                                     sampling_frequency_hz = sampling_frequency_map[sampling_frequency_index - 1];
3634a5b1c65SMatthias Ringwald                                     printf("    - sampling frequency[%u]: %u\n", i, sampling_frequency_hz);
36410277393SMatthias Ringwald                                     break;
36510277393SMatthias Ringwald                                 case 0x02: // 0 = 7.5, 1 = 10 ms
36610277393SMatthias Ringwald                                     frame_duration_index =  codec_specific_configuration[codec_offset+1];
3672fd68da2SMatthias Ringwald                                     frame_duration = (frame_duration_index == 0) ? BTSTACK_LC3_FRAME_DURATION_7500US : BTSTACK_LC3_FRAME_DURATION_10000US;
3682fd68da2SMatthias Ringwald                                     printf("    - frame duration[%u]: %s ms\n", i, (frame_duration == BTSTACK_LC3_FRAME_DURATION_7500US) ? "7.5" : "10");
36910277393SMatthias Ringwald                                     break;
37010277393SMatthias Ringwald                                 case 0x04:  // octets per coding frame
37110277393SMatthias Ringwald                                     octets_per_frame = little_endian_read_16(codec_specific_configuration, codec_offset+1);
37210277393SMatthias Ringwald                                     printf("    - octets per codec frame[%u]: %u\n", i, octets_per_frame);
37310277393SMatthias Ringwald                                     break;
37410277393SMatthias Ringwald                                 default:
37510277393SMatthias Ringwald                                     break;
37610277393SMatthias Ringwald                             }
37710277393SMatthias Ringwald                             codec_offset += ltv_len;
37810277393SMatthias Ringwald                         }
37910277393SMatthias Ringwald                         //
38010277393SMatthias Ringwald                         offset += codec_specific_configuration_length;
38110277393SMatthias Ringwald                         uint8_t metadata_length = base_data[offset++];
38210277393SMatthias Ringwald                         const uint8_t * meta_data = &base_data[offset];
38310277393SMatthias Ringwald                         offset += metadata_length;
38410277393SMatthias Ringwald                         printf("  - meta data[%u]: ", i);
38510277393SMatthias Ringwald                         printf_hexdump(meta_data, metadata_length);
38610277393SMatthias Ringwald                         uint8_t k;
38710277393SMatthias Ringwald                         for (k=0;k<num_bis;k++){
38810277393SMatthias Ringwald                             // Level 3: BIS Level
38910277393SMatthias Ringwald                             uint8_t bis_index = base_data[offset++];
390b3a520acSMatthias Ringwald                             if ((bis_index == 0) || (bis_index > 30)){
391b3a520acSMatthias Ringwald                                 continue;
392b3a520acSMatthias Ringwald                             }
3937a236728SMatthias Ringwald 
3940707de65SMatthias Ringwald                             // collect bis sync mask
395b3a520acSMatthias Ringwald                             bis_sync_mask |=  1 << (bis_index - 1);
3967a236728SMatthias Ringwald 
39710277393SMatthias Ringwald                             printf("    - bis index[%u][%u]: %u\n", i, k, bis_index);
39810277393SMatthias Ringwald                             uint8_t codec_specific_configuration_length2 = base_data[offset++];
39910277393SMatthias Ringwald                             const uint8_t * codec_specific_configuration2 = &base_data[offset];
40010277393SMatthias Ringwald                             printf("    - codec specific config[%u][%u]: ", i, k);
40110277393SMatthias Ringwald                             printf_hexdump(codec_specific_configuration2, codec_specific_configuration_length2);
40210277393SMatthias Ringwald                             offset += codec_specific_configuration_length2;
40310277393SMatthias Ringwald                         }
40410277393SMatthias Ringwald                     }
40510277393SMatthias Ringwald                 }
40610277393SMatthias Ringwald                 break;
40710277393SMatthias Ringwald             default:
40810277393SMatthias Ringwald                 break;
40910277393SMatthias Ringwald         }
41010277393SMatthias Ringwald     }
41110277393SMatthias Ringwald }
41210277393SMatthias Ringwald 
41310277393SMatthias Ringwald static void handle_big_info(const uint8_t * packet, uint16_t size){
41410277393SMatthias Ringwald     printf("BIG Info advertising report\n");
41510277393SMatthias Ringwald     sync_handle = hci_subevent_le_biginfo_advertising_report_get_sync_handle(packet);
416ac95ea81SMatthias Ringwald     encryption = hci_subevent_le_biginfo_advertising_report_get_encryption(packet);
417ac95ea81SMatthias Ringwald     if (encryption) {
418b3a520acSMatthias Ringwald         printf("Stream is encrypted\n");
419ac95ea81SMatthias Ringwald     }
42010277393SMatthias Ringwald     have_big_info = true;
42110277393SMatthias Ringwald }
42210277393SMatthias Ringwald 
42310277393SMatthias Ringwald static void enter_create_big_sync(void){
42410277393SMatthias Ringwald     // stop scanning
42510277393SMatthias Ringwald     gap_stop_scan();
42610277393SMatthias Ringwald 
4279a0d67ccSMatthias Ringwald     // switch to lc3plus if requested and possible
4289a0d67ccSMatthias Ringwald     use_lc3plus_decoder = request_lc3plus_decoder && (frame_duration == BTSTACK_LC3_FRAME_DURATION_10000US);
4299a0d67ccSMatthias Ringwald 
43010277393SMatthias Ringwald     // init decoder
43110277393SMatthias Ringwald     setup_lc3_decoder();
43210277393SMatthias Ringwald 
4339a0d67ccSMatthias Ringwald     printf("Configure: %u channels, sampling rate %u, samples per frame %u, lc3plus %u\n", num_bis, sampling_frequency_hz, number_samples_per_frame, use_lc3plus_decoder);
43410277393SMatthias Ringwald 
4354a5b1c65SMatthias Ringwald #ifdef HAVE_POSIX_FILE_IO
43610277393SMatthias Ringwald     // create wav file
43710277393SMatthias Ringwald     printf("WAV file: %s\n", filename_wav);
43810277393SMatthias Ringwald     wav_writer_open(filename_wav, num_bis, sampling_frequency_hz);
4394a5b1c65SMatthias Ringwald #endif
44010277393SMatthias Ringwald 
44110277393SMatthias Ringwald     // init playback buffer
44210277393SMatthias Ringwald     btstack_ring_buffer_init(&playback_buffer, playback_buffer_storage, PLAYBACK_BUFFER_SIZE);
44310277393SMatthias Ringwald 
44410277393SMatthias Ringwald     // start playback
44510277393SMatthias Ringwald     // PTS 8.2 sends stereo at half speed for stereo, for now playback at half speed
44610277393SMatthias Ringwald     const btstack_audio_sink_t * sink = btstack_audio_sink_get_instance();
44710277393SMatthias Ringwald     if (sink != NULL){
4484a5b1c65SMatthias Ringwald         uint16_t playback_speed;
44910277393SMatthias Ringwald         if ((num_bis > 1) && pts_mode){
45010277393SMatthias Ringwald             playback_speed = sampling_frequency_hz / num_bis;
45110277393SMatthias Ringwald             printf("PTS workaround: playback at %u hz\n", playback_speed);
45210277393SMatthias Ringwald         } else {
45310277393SMatthias Ringwald             playback_speed = sampling_frequency_hz;
45410277393SMatthias Ringwald         };
45510277393SMatthias Ringwald         sink->init(num_bis, sampling_frequency_hz, le_audio_broadcast_sink_playback);
45610277393SMatthias Ringwald         sink->start_stream();
45710277393SMatthias Ringwald     }
45810277393SMatthias Ringwald 
4595c0d69beSMatthias Ringwald     big_sync_params.big_handle = big_handle;
4605c0d69beSMatthias Ringwald     big_sync_params.sync_handle = sync_handle;
461ac95ea81SMatthias Ringwald     big_sync_params.encryption = encryption;
462ac95ea81SMatthias Ringwald     if (encryption) {
463ac95ea81SMatthias Ringwald         memcpy(big_sync_params.broadcast_code, &broadcast_code[0], 16);
464ac95ea81SMatthias Ringwald     } else {
4655c0d69beSMatthias Ringwald         memset(big_sync_params.broadcast_code, 0, 16);
466ac95ea81SMatthias Ringwald     }
4675c0d69beSMatthias Ringwald     big_sync_params.mse = 0;
4685c0d69beSMatthias Ringwald     big_sync_params.big_sync_timeout_10ms = 100;
4695c0d69beSMatthias Ringwald     big_sync_params.num_bis = num_bis;
4705c0d69beSMatthias Ringwald     uint8_t i;
4715c0d69beSMatthias Ringwald     printf("BIG Create Sync for BIS: ");
4725c0d69beSMatthias Ringwald     for (i=0;i<num_bis;i++){
4735c0d69beSMatthias Ringwald         big_sync_params.bis_indices[i] = i + 1;
4745c0d69beSMatthias Ringwald         printf("%u ", big_sync_params.bis_indices[i]);
4755c0d69beSMatthias Ringwald     }
4765c0d69beSMatthias Ringwald     printf("\n");
4775c0d69beSMatthias Ringwald     app_state = APP_W4_BIG_SYNC_ESTABLISHED;
4785c0d69beSMatthias Ringwald     gap_big_sync_create(&big_sync_storage, &big_sync_params);
47910277393SMatthias Ringwald }
48010277393SMatthias Ringwald 
481111967cbSMatthias Ringwald static void start_scanning() {
482111967cbSMatthias Ringwald     app_state = APP_W4_BROADCAST_ADV;
483400a29ddSMatthias Ringwald     have_base = false;
484400a29ddSMatthias Ringwald     have_big_info = false;
485111967cbSMatthias Ringwald     gap_set_scan_params(1, 0x30, 0x30, 0);
486111967cbSMatthias Ringwald     gap_start_scan();
487111967cbSMatthias Ringwald     printf("Start scan..\n");
488111967cbSMatthias Ringwald }
489111967cbSMatthias Ringwald 
49081a67409SMatthias Ringwald static void setup_advertising() {
491efd5f6d0SMatthias Ringwald     gap_extended_advertising_setup(&le_advertising_set, &extended_params, &adv_handle);
492efd5f6d0SMatthias Ringwald     gap_extended_advertising_set_adv_data(adv_handle, sizeof(extended_adv_data), extended_adv_data);
493efd5f6d0SMatthias Ringwald     gap_extended_advertising_start(adv_handle, 0, 0);
49481a67409SMatthias Ringwald }
49581a67409SMatthias Ringwald 
496b3a520acSMatthias Ringwald static void got_base_and_big_info() {
497b3a520acSMatthias Ringwald     // add source
498b3a520acSMatthias Ringwald     if (standalone_mode) {
499b3a520acSMatthias Ringwald         printf("BASS: add Broadcast Source\n");
500b3a520acSMatthias Ringwald         // add source
501b3a520acSMatthias Ringwald         uint8_t source_index = 0;
502b3a520acSMatthias Ringwald         broadcast_audio_scan_service_server_add_source(bass_source_new, &source_index);
503b3a520acSMatthias Ringwald         broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCHRONIZED_TO_PA);
504b3a520acSMatthias Ringwald     }
505b3a520acSMatthias Ringwald 
506b3a520acSMatthias Ringwald     if ((encryption == false) || have_broadcast_code){
507b3a520acSMatthias Ringwald         enter_create_big_sync();
508b3a520acSMatthias Ringwald     } else {
509b3a520acSMatthias Ringwald         printf("BASS: request Broadcast Code\n");
510b3a520acSMatthias Ringwald         bass_sources[0].big_encryption = LE_AUDIO_BIG_ENCRYPTION_BROADCAST_CODE_REQUIRED;
511b3a520acSMatthias Ringwald         broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCHRONIZED_TO_PA);
512b3a520acSMatthias Ringwald         app_state = APP_W4_BROADCAST_CODE;
513b3a520acSMatthias Ringwald     }
514b3a520acSMatthias Ringwald }
515b3a520acSMatthias Ringwald 
51610277393SMatthias Ringwald static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
51710277393SMatthias Ringwald     UNUSED(channel);
51810277393SMatthias Ringwald     if (packet_type != HCI_EVENT_PACKET) return;
51910277393SMatthias Ringwald     switch (packet[0]) {
52010277393SMatthias Ringwald         case BTSTACK_EVENT_STATE:
52110277393SMatthias Ringwald             switch(btstack_event_state_get_state(packet)) {
52210277393SMatthias Ringwald                 case HCI_STATE_WORKING:
523400a29ddSMatthias Ringwald                     app_state = APP_IDLE;
5249a0d67ccSMatthias Ringwald #ifdef ENABLE_DEMO_MODE
525111967cbSMatthias Ringwald                     start_scanning();
5269a0d67ccSMatthias Ringwald #else
5279a0d67ccSMatthias Ringwald                     show_usage();
5289a0d67ccSMatthias Ringwald #endif
52910277393SMatthias Ringwald                     break;
53010277393SMatthias Ringwald                 case HCI_STATE_OFF:
53110277393SMatthias Ringwald                     printf("Goodbye\n");
53210277393SMatthias Ringwald                     exit(0);
53310277393SMatthias Ringwald                     break;
53410277393SMatthias Ringwald                 default:
53510277393SMatthias Ringwald                     break;
53610277393SMatthias Ringwald             }
53710277393SMatthias Ringwald             break;
53810277393SMatthias Ringwald         case GAP_EVENT_EXTENDED_ADVERTISING_REPORT:
53910277393SMatthias Ringwald         {
54010277393SMatthias Ringwald             if (app_state != APP_W4_BROADCAST_ADV) break;
54110277393SMatthias Ringwald 
54210277393SMatthias Ringwald             gap_event_extended_advertising_report_get_address(packet, remote);
54310277393SMatthias Ringwald             uint8_t adv_size = gap_event_extended_advertising_report_get_data_length(packet);
54410277393SMatthias Ringwald             const uint8_t * adv_data = gap_event_extended_advertising_report_get_data(packet);
54510277393SMatthias Ringwald 
54610277393SMatthias Ringwald             ad_context_t context;
54710277393SMatthias Ringwald             bool found = false;
54810277393SMatthias Ringwald             remote_name[0] = '\0';
54910277393SMatthias Ringwald             uint16_t uuid;
55070718632SMatthias Ringwald             uint32_t broadcast_id;
55110277393SMatthias Ringwald             for (ad_iterator_init(&context, adv_size, adv_data) ; ad_iterator_has_more(&context) ; ad_iterator_next(&context)) {
55210277393SMatthias Ringwald                 uint8_t data_type = ad_iterator_get_data_type(&context);
55310277393SMatthias Ringwald                 uint8_t size = ad_iterator_get_data_len(&context);
55410277393SMatthias Ringwald                 const uint8_t *data = ad_iterator_get_data(&context);
55510277393SMatthias Ringwald                 switch (data_type){
55610277393SMatthias Ringwald                     case BLUETOOTH_DATA_TYPE_SERVICE_DATA_16_BIT_UUID:
55710277393SMatthias Ringwald                         uuid = little_endian_read_16(data, 0);
55810277393SMatthias Ringwald                         if (uuid == ORG_BLUETOOTH_SERVICE_BROADCAST_AUDIO_ANNOUNCEMENT_SERVICE){
55970718632SMatthias Ringwald                             broadcast_id = little_endian_read_24(data, 2);
56010277393SMatthias Ringwald                             found = true;
56110277393SMatthias Ringwald                         }
56210277393SMatthias Ringwald                         break;
56310277393SMatthias Ringwald                     case BLUETOOTH_DATA_TYPE_SHORTENED_LOCAL_NAME:
56410277393SMatthias Ringwald                     case BLUETOOTH_DATA_TYPE_COMPLETE_LOCAL_NAME:
56510277393SMatthias Ringwald                         size = btstack_min(sizeof(remote_name) - 1, size);
56610277393SMatthias Ringwald                         memcpy(remote_name, data, size);
56710277393SMatthias Ringwald                         remote_name[size] = 0;
5682fe0253dSMatthias Ringwald                         // support for nRF5340 Audio DK
5692fe0253dSMatthias Ringwald                         if (strncmp("NRF5340", remote_name, 7) == 0){
5702fe0253dSMatthias Ringwald                             nrf5340_audio_demo = true;
5712fe0253dSMatthias Ringwald                             found = true;
5722fe0253dSMatthias Ringwald                         }
57310277393SMatthias Ringwald                         break;
57410277393SMatthias Ringwald                     default:
57510277393SMatthias Ringwald                         break;
57610277393SMatthias Ringwald                 }
57710277393SMatthias Ringwald             }
57810277393SMatthias Ringwald             if (!found) break;
57910277393SMatthias Ringwald             remote_type = gap_event_extended_advertising_report_get_address_type(packet);
58010277393SMatthias Ringwald             remote_sid = gap_event_extended_advertising_report_get_advertising_sid(packet);
58110277393SMatthias Ringwald             pts_mode = strncmp("PTS-", remote_name, 4) == 0;
58210277393SMatthias Ringwald             count_mode = strncmp("COUNT", remote_name, 5) == 0;
58370718632SMatthias Ringwald             printf("Broadcast sink found, addr %s, name: '%s' (pts-mode: %u, count: %u), Broadcast_ID 0%06x\n", bd_addr_to_str(remote), remote_name, pts_mode, count_mode, broadcast_id);
58410277393SMatthias Ringwald             // ignore other advertisements
58510277393SMatthias Ringwald             gap_whitelist_add(remote_type, remote);
58610277393SMatthias Ringwald             gap_set_scan_params(1, 0x30, 0x30, 1);
58710277393SMatthias Ringwald             // sync to PA
58810277393SMatthias Ringwald             gap_periodic_advertiser_list_clear();
58910277393SMatthias Ringwald             gap_periodic_advertiser_list_add(remote_type, remote, remote_sid);
59010277393SMatthias Ringwald             app_state = APP_W4_PA_AND_BIG_INFO;
59110277393SMatthias Ringwald             printf("Start Periodic Advertising Sync\n");
59210277393SMatthias Ringwald             gap_periodic_advertising_create_sync(0x01, remote_sid, remote_type, remote, 0, 1000, 0);
5937a236728SMatthias Ringwald 
5947a236728SMatthias Ringwald             // setup bass source info
5957a236728SMatthias Ringwald             bass_source_new.address_type = remote_type;
5967a236728SMatthias Ringwald             memcpy(bass_source_new.address, remote, 6);
5977a236728SMatthias Ringwald             bass_source_new.adv_sid = remote_sid;
5987a236728SMatthias Ringwald             bass_source_new.broadcast_id = broadcast_id;
5997a236728SMatthias Ringwald             bass_source_new.pa_sync = LE_AUDIO_PA_SYNC_SYNCHRONIZE_TO_PA_PAST_AVAILABLE;
6007a236728SMatthias Ringwald             bass_source_new.pa_interval = gap_event_extended_advertising_report_get_periodic_advertising_interval(packet);
60110277393SMatthias Ringwald             break;
60210277393SMatthias Ringwald         }
60310277393SMatthias Ringwald 
60410277393SMatthias Ringwald         case HCI_EVENT_LE_META:
60510277393SMatthias Ringwald             switch(hci_event_le_meta_get_subevent_code(packet)) {
60692f80bb0SMatthias Ringwald                 case HCI_SUBEVENT_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER_RECEIVED:
607b3a520acSMatthias Ringwald                     // PAST implies broadcast source has been added by client
608ffbedad9SMatthias Ringwald                     printf("Periodic advertising sync transfer received\n");
6092de3ad61SMatthias Ringwald                     btstack_run_loop_remove_timer(&broadcast_sink_pa_sync_timer);
610ffbedad9SMatthias Ringwald                     broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCHRONIZED_TO_PA);
61192f80bb0SMatthias Ringwald                     app_state = APP_W4_PA_AND_BIG_INFO;
61292f80bb0SMatthias Ringwald                     break;
61310277393SMatthias Ringwald                 case HCI_SUBEVENT_LE_PERIODIC_ADVERTISING_SYNC_ESTABLISHMENT:
614400a29ddSMatthias Ringwald                     sync_handle = hci_subevent_le_periodic_advertising_sync_establishment_get_sync_handle(packet);
615400a29ddSMatthias Ringwald                     printf("Periodic advertising sync with handle 0x%04x established\n", sync_handle);
6167a236728SMatthias Ringwald                     app_state = APP_W4_PA_AND_BIG_INFO;
61710277393SMatthias Ringwald                     break;
61810277393SMatthias Ringwald                 case HCI_SUBEVENT_LE_PERIODIC_ADVERTISING_REPORT:
619ffbedad9SMatthias Ringwald                     if (app_state != APP_W4_PA_AND_BIG_INFO) break;
62010277393SMatthias Ringwald                     if (have_base) break;
62110277393SMatthias Ringwald                     handle_periodic_advertisement(packet, size);
622b3a520acSMatthias Ringwald                     if (have_base && have_big_info){
623b3a520acSMatthias Ringwald                         got_base_and_big_info();
62410277393SMatthias Ringwald                     }
62510277393SMatthias Ringwald                     break;
62610277393SMatthias Ringwald                 case HCI_SUBEVENT_LE_BIGINFO_ADVERTISING_REPORT:
627ffbedad9SMatthias Ringwald                     if (app_state != APP_W4_PA_AND_BIG_INFO) break;
62810277393SMatthias Ringwald                     if (have_big_info) break;
62910277393SMatthias Ringwald                     handle_big_info(packet, size);
630b3a520acSMatthias Ringwald                     if (have_base && have_big_info){
631b3a520acSMatthias Ringwald                         got_base_and_big_info();
63210277393SMatthias Ringwald                     }
63310277393SMatthias Ringwald                     break;
634111967cbSMatthias Ringwald                 case HCI_SUBEVENT_LE_BIG_SYNC_LOST:
635111967cbSMatthias Ringwald                     printf("BIG Sync Lost\n");
636111967cbSMatthias Ringwald                     {
637111967cbSMatthias Ringwald                         const btstack_audio_sink_t * sink = btstack_audio_sink_get_instance();
638111967cbSMatthias Ringwald                         if (sink != NULL) {
639111967cbSMatthias Ringwald                             sink->stop_stream();
640111967cbSMatthias Ringwald                             sink->close();
641111967cbSMatthias Ringwald                         }
642111967cbSMatthias Ringwald                     }
643111967cbSMatthias Ringwald                     // start over
644ffbedad9SMatthias Ringwald                     if (!standalone_mode) break;
645111967cbSMatthias Ringwald                     start_scanning();
646111967cbSMatthias Ringwald                     break;
64710277393SMatthias Ringwald                 default:
64810277393SMatthias Ringwald                     break;
64910277393SMatthias Ringwald             }
65010277393SMatthias Ringwald             break;
6515c0d69beSMatthias Ringwald         case HCI_EVENT_META_GAP:
6525c0d69beSMatthias Ringwald             switch (hci_event_gap_meta_get_subevent_code(packet)){
6535c0d69beSMatthias Ringwald                 case GAP_SUBEVENT_BIG_SYNC_CREATED: {
6545c0d69beSMatthias Ringwald                     printf("BIG Sync created with BIS Connection handles: ");
6555c0d69beSMatthias Ringwald                     uint8_t i;
65610277393SMatthias Ringwald                     for (i=0;i<num_bis;i++){
6575c0d69beSMatthias Ringwald                         bis_con_handles[i] = gap_subevent_big_sync_created_get_bis_con_handles(packet, i);
6585c0d69beSMatthias Ringwald                         printf("0x%04x ", bis_con_handles[i]);
65910277393SMatthias Ringwald                     }
6600707de65SMatthias Ringwald                     printf("\n");
66110277393SMatthias Ringwald                     app_state = APP_STREAMING;
6621716d43dSMatthias Ringwald                     last_packet_received_big = false;
66310277393SMatthias Ringwald                     last_samples_report_ms = btstack_run_loop_get_time_ms();
664151e8cb9SMatthias Ringwald                     memset(last_packet_sequence, 0, sizeof(last_packet_sequence));
665ae7e4c11SMatthias Ringwald                     memset(last_packet_received, 0, sizeof(last_packet_received));
6661716d43dSMatthias Ringwald                     memset(pcm, 0, sizeof(pcm));
667151e8cb9SMatthias Ringwald                     printf("Start receiving\n");
668ffbedad9SMatthias Ringwald 
669ffbedad9SMatthias Ringwald                     // update BIS Sync state
6700707de65SMatthias Ringwald                     bass_sources[0].data.subgroups[0].bis_sync_state = bis_sync_mask;
671ffbedad9SMatthias Ringwald                     broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCHRONIZED_TO_PA);
67210277393SMatthias Ringwald                     break;
6735c0d69beSMatthias Ringwald                 }
674e38308a2SMatthias Ringwald                 case GAP_SUBEVENT_BIG_SYNC_STOPPED:
675e38308a2SMatthias Ringwald                     printf("BIG Sync stopped, big_handle 0x%02x\n", gap_subevent_big_sync_stopped_get_big_handle(packet));
676e38308a2SMatthias Ringwald                     break;
6775c0d69beSMatthias Ringwald                 default:
6785c0d69beSMatthias Ringwald                     break;
6795c0d69beSMatthias Ringwald             }
68010277393SMatthias Ringwald             break;
681efd5f6d0SMatthias Ringwald         case SM_EVENT_JUST_WORKS_REQUEST:
682efd5f6d0SMatthias Ringwald             printf("Just Works requested\n");
683efd5f6d0SMatthias Ringwald             sm_just_works_confirm(sm_event_just_works_request_get_handle(packet));
684efd5f6d0SMatthias Ringwald             break;
68510277393SMatthias Ringwald         default:
68610277393SMatthias Ringwald             break;
68710277393SMatthias Ringwald     }
68810277393SMatthias Ringwald }
68910277393SMatthias Ringwald 
690fc31f34cSMatthias Ringwald static void store_samples_in_ringbuffer(void){
69122d64f35SMatthias Ringwald     // check if we have all channels
69222d64f35SMatthias Ringwald     uint8_t bis_channel;
69322d64f35SMatthias Ringwald     for (bis_channel = 0; bis_channel < num_bis ; bis_channel++){
69422d64f35SMatthias Ringwald         if (have_pcm[bis_channel] == false) return;
69522d64f35SMatthias Ringwald     }
696fc31f34cSMatthias Ringwald #ifdef HAVE_POSIX_FILE_IO
697fc31f34cSMatthias Ringwald     // write wav samples
698fc31f34cSMatthias Ringwald     wav_writer_write_int16(num_bis * number_samples_per_frame, pcm);
699fc31f34cSMatthias Ringwald #endif
700fc31f34cSMatthias Ringwald     // store samples in playback buffer
701fc31f34cSMatthias Ringwald     uint32_t bytes_to_store = num_bis * number_samples_per_frame * 2;
702fc31f34cSMatthias Ringwald     samples_received += number_samples_per_frame;
703fc31f34cSMatthias Ringwald     if (btstack_ring_buffer_bytes_free(&playback_buffer) >= bytes_to_store) {
704fc31f34cSMatthias Ringwald         btstack_ring_buffer_write(&playback_buffer, (uint8_t *) pcm, bytes_to_store);
705fc31f34cSMatthias Ringwald     } else {
706fc31f34cSMatthias Ringwald         printf("Samples dropped\n");
707fc31f34cSMatthias Ringwald         samples_dropped += number_samples_per_frame;
708fc31f34cSMatthias Ringwald     }
70922d64f35SMatthias Ringwald     // reset
71022d64f35SMatthias Ringwald     for (bis_channel = 0; bis_channel < num_bis ; bis_channel++){
71122d64f35SMatthias Ringwald         have_pcm[bis_channel] = false;
71222d64f35SMatthias Ringwald     }
71322d64f35SMatthias Ringwald }
71422d64f35SMatthias Ringwald 
715ba8a6634SMatthias Ringwald static void plc_do(uint8_t bis_channel) {// inject packet
716ba8a6634SMatthias Ringwald     uint8_t tmp_BEC_detect;
717ba8a6634SMatthias Ringwald     uint8_t BFI = 1;
718da364eecSMatthias Ringwald     (void) lc3_decoder->decode_signed_16(decoder_contexts[bis_channel], NULL, BFI,
719ba8a6634SMatthias Ringwald                                          &pcm[bis_channel], num_bis,
720ba8a6634SMatthias Ringwald                                          &tmp_BEC_detect);
721ba8a6634SMatthias Ringwald 
722ba8a6634SMatthias Ringwald     printf("PLC channel %u - packet sequence %u\n", bis_channel,  last_packet_sequence[bis_channel]);
723ba8a6634SMatthias Ringwald 
724ba8a6634SMatthias Ringwald     have_pcm[bis_channel] = true;
725ba8a6634SMatthias Ringwald     store_samples_in_ringbuffer();
726ba8a6634SMatthias Ringwald }
72722d64f35SMatthias Ringwald 
7281716d43dSMatthias Ringwald static void plc_missing(uint16_t packet_sequence_number) {
7291716d43dSMatthias Ringwald     while (btstack_time16_delta(packet_sequence_number, last_packet_sequence_big) > 1){
7301716d43dSMatthias Ringwald         uint8_t i;
7311716d43dSMatthias Ringwald         for (i=0;i<num_bis;i++){
7321716d43dSMatthias Ringwald             // deal with first packet missing. inject silent samples, pcm buffer is memset to zero at start
7331716d43dSMatthias Ringwald             if (last_packet_received[i] == false){
7341716d43dSMatthias Ringwald                 printf("PLC Missing: very first packet BIS %u missing\n", i);
7351716d43dSMatthias Ringwald                 have_pcm[i] = true;
7361716d43dSMatthias Ringwald                 store_samples_in_ringbuffer();
7371716d43dSMatthias Ringwald 
7381716d43dSMatthias Ringwald                 last_packet_received[i] = true;
7391716d43dSMatthias Ringwald                 last_packet_sequence[i] = last_packet_sequence_big;
7401716d43dSMatthias Ringwald                 continue;
7411716d43dSMatthias Ringwald             }
7421716d43dSMatthias Ringwald 
7431716d43dSMatthias Ringwald             // missing packet if big sequence counter is higher than bis sequence counter
7441716d43dSMatthias Ringwald             if (btstack_time16_delta(last_packet_sequence_big, last_packet_sequence[i]) > 0) {
7451716d43dSMatthias Ringwald                 plc_do(i);
7461716d43dSMatthias Ringwald                 last_packet_sequence[i] = last_packet_sequence_big;
7471716d43dSMatthias Ringwald             }
7481716d43dSMatthias Ringwald         }
7491716d43dSMatthias Ringwald         last_packet_sequence_big++;
7501716d43dSMatthias Ringwald     }
7511716d43dSMatthias Ringwald }
7521716d43dSMatthias Ringwald 
75322d64f35SMatthias Ringwald static void plc_timeout(btstack_timer_source_t * timer) {
754e38308a2SMatthias Ringwald     if (app_state != APP_STREAMING) return;
755e38308a2SMatthias Ringwald 
756151e8cb9SMatthias Ringwald     // Restart timer. This will loose sync with ISO interval, but if we stop caring if we loose that many packets
75722d64f35SMatthias Ringwald     uint32_t frame_duration_ms = frame_duration == BTSTACK_LC3_FRAME_DURATION_7500US ? 8 : 10;
7581716d43dSMatthias Ringwald     btstack_run_loop_set_timer(timer, frame_duration_ms);
7591716d43dSMatthias Ringwald     btstack_run_loop_set_timer_handler(timer, plc_timeout);
7601716d43dSMatthias Ringwald     btstack_run_loop_add_timer(timer);
76122d64f35SMatthias Ringwald 
7621716d43dSMatthias Ringwald     // assume no packet received in iso interval
7631716d43dSMatthias Ringwald     plc_missing(last_packet_sequence_big + 1);
764fc31f34cSMatthias Ringwald }
765fc31f34cSMatthias Ringwald 
76610277393SMatthias Ringwald static void iso_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
76710277393SMatthias Ringwald 
768e38308a2SMatthias Ringwald     if (app_state != APP_STREAMING) return;
769e38308a2SMatthias Ringwald 
77010277393SMatthias Ringwald     uint16_t header = little_endian_read_16(packet, 0);
77110277393SMatthias Ringwald     hci_con_handle_t con_handle = header & 0x0fff;
77210277393SMatthias Ringwald     uint8_t pb_flag = (header >> 12) & 3;
77310277393SMatthias Ringwald     uint8_t ts_flag = (header >> 14) & 1;
77410277393SMatthias Ringwald     uint16_t iso_load_len = little_endian_read_16(packet, 2);
77510277393SMatthias Ringwald 
77610277393SMatthias Ringwald     uint16_t offset = 4;
77710277393SMatthias Ringwald     uint32_t time_stamp = 0;
77810277393SMatthias Ringwald     if (ts_flag){
77910277393SMatthias Ringwald         uint32_t time_stamp = little_endian_read_32(packet, offset);
78010277393SMatthias Ringwald         offset += 4;
78110277393SMatthias Ringwald     }
78210277393SMatthias Ringwald 
78322d64f35SMatthias Ringwald     uint32_t receive_time_ms = btstack_run_loop_get_time_ms();
78422d64f35SMatthias Ringwald 
78510277393SMatthias Ringwald     uint16_t packet_sequence_number = little_endian_read_16(packet, offset);
78610277393SMatthias Ringwald     offset += 2;
78710277393SMatthias Ringwald 
78810277393SMatthias Ringwald     uint16_t header_2 = little_endian_read_16(packet, offset);
78910277393SMatthias Ringwald     uint16_t iso_sdu_length = header_2 & 0x3fff;
79010277393SMatthias Ringwald     uint8_t packet_status_flag = (uint8_t) (header_2 >> 14);
79110277393SMatthias Ringwald     offset += 2;
79210277393SMatthias Ringwald 
79310277393SMatthias Ringwald     if (iso_sdu_length == 0) return;
79410277393SMatthias Ringwald 
79510277393SMatthias Ringwald     // infer channel from con handle - only works for up to 2 channels
79610277393SMatthias Ringwald     uint8_t bis_channel = (con_handle == bis_con_handles[0]) ? 0 : 1;
79710277393SMatthias Ringwald 
79810277393SMatthias Ringwald     if (count_mode){
79910277393SMatthias Ringwald         // check for missing packet
80010277393SMatthias Ringwald         uint16_t last_seq_no = last_packet_sequence[bis_channel];
80110277393SMatthias Ringwald         bool packet_missed = (last_seq_no != 0) && ((last_seq_no + 1) != packet_sequence_number);
80210277393SMatthias Ringwald         if (packet_missed){
80310277393SMatthias Ringwald             // print last packet
80410277393SMatthias Ringwald             printf("\n");
8054a5b1c65SMatthias Ringwald             printf("%04x %10"PRIu32" %u ", last_seq_no, last_packet_time_ms[bis_channel], bis_channel);
80610277393SMatthias Ringwald             printf_hexdump(&last_packet_prefix[num_bis*PACKET_PREFIX_LEN], PACKET_PREFIX_LEN);
80710277393SMatthias Ringwald             last_seq_no++;
80810277393SMatthias Ringwald 
80910277393SMatthias Ringwald             printf(ANSI_COLOR_RED);
81010277393SMatthias Ringwald             while (last_seq_no < packet_sequence_number){
81110277393SMatthias Ringwald                 printf("%04x            %u MISSING\n", last_seq_no, bis_channel);
81210277393SMatthias Ringwald                 last_seq_no++;
81310277393SMatthias Ringwald             }
81410277393SMatthias Ringwald             printf(ANSI_COLOR_RESET);
81510277393SMatthias Ringwald 
81610277393SMatthias Ringwald             // print current packet
8173daa4bc7SMatthias Ringwald             printf("%04x %10"PRIu32" %u ", packet_sequence_number, receive_time_ms, bis_channel);
81810277393SMatthias Ringwald             printf_hexdump(&packet[offset], PACKET_PREFIX_LEN);
81910277393SMatthias Ringwald         }
82010277393SMatthias Ringwald 
82110277393SMatthias Ringwald         // cache current packet
82210277393SMatthias Ringwald         memcpy(&last_packet_prefix[num_bis*PACKET_PREFIX_LEN], &packet[offset], PACKET_PREFIX_LEN);
82310277393SMatthias Ringwald 
82410277393SMatthias Ringwald     } else {
82510277393SMatthias Ringwald 
826ae7e4c11SMatthias Ringwald         if (last_packet_received[bis_channel]) {
8271716d43dSMatthias Ringwald             int16_t packet_sequence_delta = btstack_time16_delta(packet_sequence_number,
8281716d43dSMatthias Ringwald                                                                  last_packet_sequence[bis_channel]);
829151e8cb9SMatthias Ringwald             if (packet_sequence_delta < 1) {
830ae7e4c11SMatthias Ringwald                 // drop delayed packet that had already been generated by PLC
831151e8cb9SMatthias Ringwald                 printf("Dropping delayed packet. Current sequence number %u, last received or generated by PLC: %u\n",
832151e8cb9SMatthias Ringwald                        packet_sequence_number, last_packet_sequence[bis_channel]);
833151e8cb9SMatthias Ringwald                 return;
834151e8cb9SMatthias Ringwald             }
835ae7e4c11SMatthias Ringwald         } else {
8361716d43dSMatthias Ringwald             if (!last_packet_received_big) {
8371716d43dSMatthias Ringwald                 // track sequence number of very first received packet
8381716d43dSMatthias Ringwald                 last_packet_received_big = true;
8391716d43dSMatthias Ringwald                 last_packet_sequence_big = packet_sequence_number;
8401716d43dSMatthias Ringwald             }
8411716d43dSMatthias Ringwald             printf("BIS %u, first packet seq number %u\n", bis_channel, packet_sequence_number);
842ae7e4c11SMatthias Ringwald             last_packet_received[bis_channel] = true;
843151e8cb9SMatthias Ringwald         }
844151e8cb9SMatthias Ringwald 
8451716d43dSMatthias Ringwald         // assert no channel is more than one packet behind
8461716d43dSMatthias Ringwald         plc_missing(packet_sequence_number);
8471716d43dSMatthias Ringwald 
84810277393SMatthias Ringwald         // decode codec frame
84910277393SMatthias Ringwald         uint8_t tmp_BEC_detect;
85010277393SMatthias Ringwald         uint8_t BFI = 0;
851da364eecSMatthias Ringwald         (void) lc3_decoder->decode_signed_16(decoder_contexts[bis_channel], &packet[offset], BFI,
852c3e2434dSMatthias Ringwald                                    &pcm[bis_channel], num_bis,
85310277393SMatthias Ringwald                                    &tmp_BEC_detect);
85422d64f35SMatthias Ringwald         have_pcm[bis_channel] = true;
855fc31f34cSMatthias Ringwald         store_samples_in_ringbuffer();
85610277393SMatthias Ringwald 
85710277393SMatthias Ringwald         lc3_frames++;
85810277393SMatthias Ringwald         frames_per_second[bis_channel]++;
85910277393SMatthias Ringwald 
86022d64f35SMatthias Ringwald         // PLC
86122d64f35SMatthias Ringwald         cached_iso_sdu_len = iso_sdu_length;
86222d64f35SMatthias Ringwald         uint32_t frame_duration_ms = frame_duration == BTSTACK_LC3_FRAME_DURATION_7500US ? 8 : 10;
8631716d43dSMatthias Ringwald         uint32_t timeout_ms = frame_duration_ms * 5 / 2;
8641716d43dSMatthias Ringwald         btstack_run_loop_remove_timer(&next_packet_timer);
8651716d43dSMatthias Ringwald         btstack_run_loop_set_timer(&next_packet_timer, timeout_ms);
8661716d43dSMatthias Ringwald         btstack_run_loop_set_timer_handler(&next_packet_timer, plc_timeout);
8671716d43dSMatthias Ringwald         btstack_run_loop_add_timer(&next_packet_timer);
86822d64f35SMatthias Ringwald 
86910277393SMatthias Ringwald         uint32_t time_ms = btstack_run_loop_get_time_ms();
8702fe0253dSMatthias Ringwald         if (btstack_time_delta(time_ms, last_samples_report_ms) >= 1000){
87110277393SMatthias Ringwald             last_samples_report_ms = time_ms;
8724a5b1c65SMatthias Ringwald             printf("LC3 Frames: %4u - ", (int) (lc3_frames / num_bis));
87310277393SMatthias Ringwald             uint8_t i;
87410277393SMatthias Ringwald             for (i=0;i<num_bis;i++){
87510277393SMatthias Ringwald                 printf("%u ", frames_per_second[i]);
87610277393SMatthias Ringwald                 frames_per_second[i] = 0;
87710277393SMatthias Ringwald             }
87810277393SMatthias Ringwald             printf(" frames per second, dropped %u of %u\n", samples_dropped, samples_received);
87910277393SMatthias Ringwald             samples_received = 0;
88010277393SMatthias Ringwald             samples_dropped  =  0;
88110277393SMatthias Ringwald         }
8823daa4bc7SMatthias Ringwald     }
88310277393SMatthias Ringwald 
8843daa4bc7SMatthias Ringwald     last_packet_time_ms[bis_channel]  = receive_time_ms;
8853daa4bc7SMatthias Ringwald     last_packet_sequence[bis_channel] = packet_sequence_number;
88610277393SMatthias Ringwald }
88710277393SMatthias Ringwald 
88810277393SMatthias Ringwald static void show_usage(void){
88910277393SMatthias Ringwald     printf("\n--- LE Audio Broadcast Sink Test Console ---\n");
8909a0d67ccSMatthias Ringwald     printf("s - start scanning\n");
8919a0d67ccSMatthias Ringwald #ifdef HAVE_LC3PLUS
8929a0d67ccSMatthias Ringwald     printf("q - use LC3plus decoder if 10 ms ISO interval is used\n");
8939a0d67ccSMatthias Ringwald #endif
8940707de65SMatthias Ringwald     printf("e - set broadcast code to 0x11111111111111111111111111111111\n");
895400a29ddSMatthias Ringwald     printf("t - terminate BIS streams\n");
89610277393SMatthias Ringwald     printf("x - close files and exit\n");
89710277393SMatthias Ringwald     printf("---\n");
89810277393SMatthias Ringwald }
89910277393SMatthias Ringwald 
90010277393SMatthias Ringwald static void stdin_process(char c){
90110277393SMatthias Ringwald     switch (c){
9029a0d67ccSMatthias Ringwald         case 's':
903400a29ddSMatthias Ringwald             if (app_state != APP_IDLE) break;
904ffbedad9SMatthias Ringwald             standalone_mode = true;
9059a0d67ccSMatthias Ringwald             start_scanning();
9069a0d67ccSMatthias Ringwald             break;
9070707de65SMatthias Ringwald         case 'e':
9080707de65SMatthias Ringwald             printf("Set broadcast code to 0x11111111111111111111111111111111\n");
9090707de65SMatthias Ringwald             memset(broadcast_code, 0x11, 16);
9100707de65SMatthias Ringwald             have_broadcast_code = true;
9110707de65SMatthias Ringwald             break;
9129a0d67ccSMatthias Ringwald #ifdef HAVE_LC3PLUS
9139a0d67ccSMatthias Ringwald         case 'q':
914151e8cb9SMatthias Ringwald             printf("Use LC3plus decoder for 10 ms ISO interval...\n");
9159a0d67ccSMatthias Ringwald             request_lc3plus_decoder = true;
9169a0d67ccSMatthias Ringwald             break;
9179a0d67ccSMatthias Ringwald #endif
918400a29ddSMatthias Ringwald         case 't':
919400a29ddSMatthias Ringwald             switch (app_state){
920400a29ddSMatthias Ringwald                 case APP_STREAMING:
921400a29ddSMatthias Ringwald                 case APP_W4_BIG_SYNC_ESTABLISHED:
922400a29ddSMatthias Ringwald                     app_state = APP_IDLE;
923400a29ddSMatthias Ringwald                     close_files();
924400a29ddSMatthias Ringwald                     printf("Terminate BIG SYNC\n");
925400a29ddSMatthias Ringwald                     gap_big_sync_terminate(big_handle);
926400a29ddSMatthias Ringwald                     break;
927400a29ddSMatthias Ringwald                 default:
928400a29ddSMatthias Ringwald                     break;
929400a29ddSMatthias Ringwald             }
930400a29ddSMatthias Ringwald             break;
93110277393SMatthias Ringwald         case 'x':
93210277393SMatthias Ringwald             close_files();
93310277393SMatthias Ringwald             printf("Shutdown...\n");
93410277393SMatthias Ringwald             hci_power_control(HCI_POWER_OFF);
93510277393SMatthias Ringwald             break;
93610277393SMatthias Ringwald         case '\n':
93710277393SMatthias Ringwald         case '\r':
93810277393SMatthias Ringwald             break;
93910277393SMatthias Ringwald         default:
94010277393SMatthias Ringwald             show_usage();
94110277393SMatthias Ringwald             break;
94210277393SMatthias Ringwald 
94310277393SMatthias Ringwald     }
94410277393SMatthias Ringwald }
9452de3ad61SMatthias Ringwald 
9462de3ad61SMatthias Ringwald static void broadcast_sync_pa_sync_timeout_handler(btstack_timer_source_t * ts){
9472de3ad61SMatthias Ringwald     UNUSED(ts);
9482de3ad61SMatthias Ringwald     printf("PAST Timeout -> LE_AUDIO_PA_SYNC_STATE_NO_PAST\n");
9492de3ad61SMatthias Ringwald     broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_NO_PAST);
9502de3ad61SMatthias Ringwald }
9512de3ad61SMatthias Ringwald 
95260d70dccSMatthias Ringwald static void bass_packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
95360d70dccSMatthias Ringwald     UNUSED(packet_type);
95460d70dccSMatthias Ringwald     UNUSED(channel);
955ffbedad9SMatthias Ringwald     btstack_assert (packet_type == HCI_EVENT_PACKET);
956ffbedad9SMatthias Ringwald     btstack_assert(hci_event_packet_get_type(packet) == HCI_EVENT_GATTSERVICE_META);
957ffbedad9SMatthias Ringwald     printf("BASS Event 0x%02x: ", hci_event_gattservice_meta_get_subevent_code(packet));
958ffbedad9SMatthias Ringwald     printf_hexdump(packet, size);
959ffbedad9SMatthias Ringwald     switch (hci_event_gattservice_meta_get_subevent_code(packet)){
960ffbedad9SMatthias Ringwald         case GATTSERVICE_SUBEVENT_BASS_SOURCE_ADDED:
961ffbedad9SMatthias Ringwald             printf("GATTSERVICE_SUBEVENT_BASS_SOURCE_ADDED, source_id 0x%04x, pa_sync %u\n",
962ffbedad9SMatthias Ringwald                    gattservice_subevent_bass_source_added_get_source_id(packet),
963ffbedad9SMatthias Ringwald                    gattservice_subevent_bass_source_added_get_pa_sync(packet));
9642de3ad61SMatthias Ringwald             switch (gattservice_subevent_bass_source_added_get_pa_sync(packet)){
9652de3ad61SMatthias Ringwald                 case LE_AUDIO_PA_SYNC_SYNCHRONIZE_TO_PA_PAST_AVAILABLE:
9662de3ad61SMatthias Ringwald                     printf("LE_AUDIO_PA_SYNC_SYNCHRONIZE_TO_PA_PAST_AVAILABLE -> Request SyncInfo\n");
967ffbedad9SMatthias Ringwald                     broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCINFO_REQUEST);
9682de3ad61SMatthias Ringwald                     // start timeout
9692de3ad61SMatthias Ringwald                     btstack_run_loop_set_timer_handler(&broadcast_sink_pa_sync_timer, broadcast_sync_pa_sync_timeout_handler);
9702de3ad61SMatthias Ringwald                     btstack_run_loop_set_timer(&broadcast_sink_pa_sync_timer, 10000);   // 10 seconds
9712de3ad61SMatthias Ringwald                     btstack_run_loop_add_timer(&broadcast_sink_pa_sync_timer);
9722de3ad61SMatthias Ringwald                     break;
9732de3ad61SMatthias Ringwald             }
974ffbedad9SMatthias Ringwald             break;
975ffbedad9SMatthias Ringwald         case GATTSERVICE_SUBEVENT_BASS_SOURCE_MODIFIED:
976ffbedad9SMatthias Ringwald             printf("GATTSERVICE_SUBEVENT_BASS_SOURCE_MODIFIED, source_id 0x%04x, pa_sync %u\n",
977ffbedad9SMatthias Ringwald                    gattservice_subevent_bass_source_added_get_source_id(packet),
978ffbedad9SMatthias Ringwald                    gattservice_subevent_bass_source_added_get_pa_sync(packet));
979ffbedad9SMatthias Ringwald             // handle 'bis sync == 0'
980ffbedad9SMatthias Ringwald             printf("PA Sync %u, bis_sync[0] = %u\n", bass_sources[0].data.pa_sync, bass_sources[0].data.subgroups[0].bis_sync);
981ffbedad9SMatthias Ringwald             if (bass_sources[0].data.subgroups[0].bis_sync == 0){
982ffbedad9SMatthias Ringwald                 printf("Simulate BIS Sync has stopped\n");
983ffbedad9SMatthias Ringwald                 bass_sources[0].data.subgroups[0].bis_sync_state = 0;
984ffbedad9SMatthias Ringwald                 broadcast_audio_scan_service_server_set_pa_sync_state(0, LE_AUDIO_PA_SYNC_STATE_SYNCHRONIZED_TO_PA);
985ffbedad9SMatthias Ringwald             }
9860707de65SMatthias Ringwald             break;
9870707de65SMatthias Ringwald         case GATTSERVICE_SUBEVENT_BASS_BROADCAST_CODE:
9880707de65SMatthias Ringwald             gattservice_subevent_bass_broadcast_code_get_broadcast_code(packet, broadcast_code);
9890707de65SMatthias Ringwald             printf("GATTSERVICE_SUBEVENT_BASS_BROADCAST_CODE received: ");
9900707de65SMatthias Ringwald             printf_hexdump(broadcast_code, 16);
9910707de65SMatthias Ringwald             bass_sources[0].big_encryption = LE_AUDIO_BIG_ENCRYPTION_DECRYPTING;
9920707de65SMatthias Ringwald             if (have_base && have_big_info){
9930707de65SMatthias Ringwald                 enter_create_big_sync();
9940707de65SMatthias Ringwald             }
9950707de65SMatthias Ringwald             break;
996ffbedad9SMatthias Ringwald         default:
997ffbedad9SMatthias Ringwald             break;
998ffbedad9SMatthias Ringwald     }
99960d70dccSMatthias Ringwald }
100010277393SMatthias Ringwald 
100110277393SMatthias Ringwald int btstack_main(int argc, const char * argv[]);
100210277393SMatthias Ringwald int btstack_main(int argc, const char * argv[]){
100310277393SMatthias Ringwald     (void) argv;
100410277393SMatthias Ringwald     (void) argc;
100510277393SMatthias Ringwald 
1006efd5f6d0SMatthias Ringwald     l2cap_init();
1007efd5f6d0SMatthias Ringwald     sm_init();
1008efd5f6d0SMatthias Ringwald 
1009efd5f6d0SMatthias Ringwald     // setup ATT server
1010efd5f6d0SMatthias Ringwald     att_server_init(profile_data, NULL, NULL);
1011efd5f6d0SMatthias Ringwald 
101210277393SMatthias Ringwald     // register for HCI events
101310277393SMatthias Ringwald     hci_event_callback_registration.callback = &packet_handler;
101410277393SMatthias Ringwald     hci_add_event_handler(&hci_event_callback_registration);
101510277393SMatthias Ringwald 
101610277393SMatthias Ringwald     // register for ISO Packet
101710277393SMatthias Ringwald     hci_register_iso_packet_handler(&iso_packet_handler);
101810277393SMatthias Ringwald 
1019efd5f6d0SMatthias Ringwald     // register for SM events
1020efd5f6d0SMatthias Ringwald     sm_event_callback_registration.callback = &packet_handler;
1021efd5f6d0SMatthias Ringwald     sm_add_event_handler(&sm_event_callback_registration);
1022efd5f6d0SMatthias Ringwald 
102360d70dccSMatthias Ringwald     // setup BASS Server
102460d70dccSMatthias Ringwald     broadcast_audio_scan_service_server_init(BASS_NUM_SOURCES, bass_sources, BASS_NUM_CLIENTS, bass_clients);
102560d70dccSMatthias Ringwald     broadcast_audio_scan_service_server_register_packet_handler(&bass_packet_handler);
102660d70dccSMatthias Ringwald 
102733bea8deSMatthias Ringwald     // setup advertising and allow to receive periodic advertising sync trasnfers
102833bea8deSMatthias Ringwald     setup_advertising();
102933bea8deSMatthias Ringwald     gap_periodic_advertising_sync_transfer_set_default_parameters(2, 0, 0x2000, 0);
103033bea8deSMatthias Ringwald 
103110277393SMatthias Ringwald     // turn on!
103210277393SMatthias Ringwald     hci_power_control(HCI_POWER_ON);
103310277393SMatthias Ringwald 
103410277393SMatthias Ringwald     btstack_stdin_setup(stdin_process);
103510277393SMatthias Ringwald     return 0;
103610277393SMatthias Ringwald }
1037