diff --git a/example/ancs_client_demo.c b/example/ancs_client_demo.c index 2b3239641..3db168f8e 100644 --- a/example/ancs_client_demo.c +++ b/example/ancs_client_demo.c @@ -73,8 +73,8 @@ #include "ancs_client_demo.h" static const uint8_t adv_data[] = { - // Flags general discoverable - 0x02, 0x01, 0x02, + // Flags general discoverable, BR/EDR not supported + 0x02, 0x01, 0x06, // Name 0x05, 0x09, 'A', 'N', 'C', 'S', // Service Solicitation, 128-bit UUIDs - ANCS (little endian) diff --git a/example/le_counter.c b/example/le_counter.c index 38a0baff6..c77e35172 100644 --- a/example/le_counter.c +++ b/example/le_counter.c @@ -78,7 +78,7 @@ static void heartbeat_handler(struct btstack_timer_source *ts); static void beat(void); const uint8_t adv_data[] = { - // Flags general discoverable + // Flags general discoverable, BR/EDR not supported 0x02, 0x01, 0x06, // Name 0x0b, 0x09, 'L', 'E', ' ', 'C', 'o', 'u', 'n', 't', 'e', 'r', diff --git a/example/le_streamer.c b/example/le_streamer.c index aea72732a..f9d1b0e70 100644 --- a/example/le_streamer.c +++ b/example/le_streamer.c @@ -64,7 +64,7 @@ static void streamer(void); static btstack_packet_callback_registration_t hci_event_callback_registration; const uint8_t adv_data[] = { - // Flags general discoverable + // Flags general discoverable, BR/EDR not supported 0x02, 0x01, 0x06, // Name 0x0c, 0x09, 'L', 'E', ' ', 'S', 't', 'r', 'e', 'a', 'm', 'e', 'r',