Home
last modified time | relevance | path

Searched refs:bis_iso_chan (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/samples/bluetooth/iso_broadcast/src/
Dmain.c69 static struct bt_iso_chan bis_iso_chan[] = { variable
75 &bis_iso_chan[0],
76 &bis_iso_chan[1],
200 ret = bt_iso_chan_send(&bis_iso_chan[chan], buf, seq_num); in main()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dreceiver.c346 static struct bt_iso_chan bis_iso_chan[CONFIG_BT_ISO_MAX_CHAN]; in create_big_sync() local
356 for (int i = 0; i < ARRAY_SIZE(bis_iso_chan); i++) { in create_big_sync()
357 bis_iso_chan[i].ops = &iso_ops; in create_big_sync()
358 bis_iso_chan[i].qos = &bis_iso_qos; in create_big_sync()
359 bis[i] = &bis_iso_chan[i]; in create_big_sync()
/Zephyr-latest/subsys/bluetooth/host/shell/
Diso.c645 static struct bt_iso_chan bis_iso_chan = { variable
650 static struct bt_iso_chan *bis_channels[BIS_ISO_CHAN_COUNT] = { &bis_iso_chan };
678 if (!bis_iso_chan.iso) { in cmd_broadcast()
688 len = MIN(bis_iso_chan.qos->tx->sdu, CONFIG_BT_ISO_TX_MTU); in cmd_broadcast()
703 ret = bt_iso_chan_send(&bis_iso_chan, buf, bis_sn_last); in cmd_broadcast()
774 if (!bis_iso_chan.iso) { in cmd_tx_sync_read_bis()
779 err = bt_iso_chan_get_tx_sync(&bis_iso_chan, &tx_info); in cmd_tx_sync_read_bis()
/Zephyr-latest/samples/bluetooth/iso_receive/src/
Dmain.c263 static struct bt_iso_chan bis_iso_chan[] = { variable
271 &bis_iso_chan[0],
272 &bis_iso_chan[1],
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/src/
Dtest_bis.c84 static struct bt_iso_chan bis_iso_chan = { variable
90 static struct bt_iso_chan *bis_channels[BIS_ISO_CHAN_COUNT] = { &bis_iso_chan };
189 ret = bt_iso_chan_send(&bis_iso_chan, buf, seq_num++); in iso_send()