Skip to content

Commit 3041232

Browse files
alexsvenrlubos
authored andcommitted
applications: nrf5340_audio: Change UUID type
- Change from UUID_SOME to UUID_ALL for broadcasters - Change same thing for broadcast_config_tool - OCT-3156 Signed-off-by: Alexander Svensen <[email protected]>
1 parent 214da5d commit 3041232

File tree

2 files changed

+2
-2
lines changed
  • applications/nrf5340_audio/broadcast_source
  • samples/bluetooth/broadcast_config_tool/src

2 files changed

+2
-2
lines changed

applications/nrf5340_audio/broadcast_source/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ static int ext_adv_populate(uint8_t big_index, struct broadcast_source_ext_adv_d
395395
brdcst_name_size);
396396
}
397397

398-
ext_adv_buf[ext_adv_buf_cnt].type = BT_DATA_UUID16_SOME;
398+
ext_adv_buf[ext_adv_buf_cnt].type = BT_DATA_UUID16_ALL;
399399
ext_adv_buf[ext_adv_buf_cnt].data = ext_adv_data->uuid_buf->data;
400400
ext_adv_buf_cnt++;
401401

samples/bluetooth/broadcast_config_tool/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ static int ext_adv_populate(uint8_t big_index, struct broadcast_source_ext_adv_d
444444
int ret;
445445
size_t ext_adv_buf_cnt = 0;
446446

447-
ext_adv_buf[ext_adv_buf_cnt].type = BT_DATA_UUID16_SOME;
447+
ext_adv_buf[ext_adv_buf_cnt].type = BT_DATA_UUID16_ALL;
448448
ext_adv_buf[ext_adv_buf_cnt].data = ext_adv_data->uuid_buf->data;
449449
ext_adv_buf_cnt++;
450450

0 commit comments

Comments
 (0)