Home
last modified time | relevance | path

Searched refs:bis_count (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/subsys/bluetooth/audio/
Dbap_base.c159 uint8_t bis_count; in bt_bap_base_get_base_from_ad() local
161 if (net_buf.len < sizeof(bis_count)) { in bt_bap_base_get_base_from_ad()
167 bis_count = base_pull_bis_count(&net_buf); in bt_bap_base_get_base_from_ad()
168 if (bis_count == 0 || bis_count > BT_ISO_MAX_GROUP_ISO_COUNT) { in bt_bap_base_get_base_from_ad()
169 LOG_DBG("Subgroup[%u]: Invalid BIS count: %u", i, bis_count); in bt_bap_base_get_base_from_ad()
196 for (uint8_t j = 0U; j < bis_count; j++) { in bt_bap_base_get_base_from_ad()
244 uint8_t bis_count; in bt_bap_base_get_size() local
247 bis_count = base_pull_bis_count(&net_buf); in bt_bap_base_get_size()
262 for (uint8_t j = 0U; j < bis_count; j++) { in bt_bap_base_get_size()
346 uint8_t bis_count; in bt_bap_base_foreach_subgroup() local
[all …]
Dbap_broadcast_source.c690 uint8_t bis_count; in bt_bap_broadcast_source_create() local
720 bis_count = 0U; in bt_bap_broadcast_source_create()
759 if (bis_count >= BROADCAST_STREAM_CNT) { in bt_bap_broadcast_source_create()
760 LOG_DBG("Stream count %d exceeded", bis_count); in bt_bap_broadcast_source_create()
764 codec_cfg = &source->codec_cfg[bis_count]; in bt_bap_broadcast_source_create()
775 bis_count++; in bt_bap_broadcast_source_create()
828 uint8_t bis_count; in bt_bap_broadcast_source_reconfig() local
899 bis_count = 0U; in bt_bap_broadcast_source_reconfig()
928 if (bis_count >= BROADCAST_STREAM_CNT) { in bt_bap_broadcast_source_reconfig()
929 LOG_DBG("Stream count %d exceeded", bis_count); in bt_bap_broadcast_source_reconfig()
[all …]
Dbap_broadcast_sink.c575 uint8_t bis_count; member
600 if (data->bis_count == ARRAY_SIZE(data->bis)) { in base_subgroup_bis_index_cb()
602 LOG_DBG("Could only store %u BIS", data->bis_count); in base_subgroup_bis_index_cb()
606 sink_bis = &data->bis[data->bis_count]; in base_subgroup_bis_index_cb()
657 data->bis_count++; in base_subgroup_bis_index_cb()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dbroadcaster.c451 uint64_t bis_count; in parse_bis_count_arg() local
461 bis_count = strtoul(buffer, NULL, 0); in parse_bis_count_arg()
462 if (bis_count > MAX(BT_ISO_MAX_GROUP_ISO_COUNT, CONFIG_BT_ISO_MAX_CHAN)) { in parse_bis_count_arg()
463 printk("Invalid BIS count %llu", bis_count); in parse_bis_count_arg()
467 return (int)bis_count; in parse_bis_count_arg()
479 int bis_count; in parse_args() local
526 bis_count = parse_bis_count_arg(); in parse_args()
527 if (bis_count < 0) { in parse_args()
570 big_create_param.num_bis = bis_count; in parse_args()
Dreceiver.c36 static uint8_t bis_count; variable
155 bis_count = MIN(biginfo->num_bis, CONFIG_BT_ISO_MAX_CHAN); in biginfo_cb()
374 big_sync_param.num_bis = bis_count; in create_big_sync()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/
DREADME.rst99 …rent settings: rtn=2, interval=7500, latency=10, phy=2, sdu=251, packing=0, framing=0, bis_count=2)
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/src/
Dtest_bis.c275 uint8_t bis_count = 1; /* TODO: Add support for multiple BIS per BIG */ in create_ll_big() local
287 err = ll_big_create(big_handle, adv_handle, bis_count, sdu_interval, in create_ll_big()