/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll_central_iso.c | 204 if (cis_lll->tx.bn_curr > cis_lll->tx.bn) { in prepare_cb() 213 pdu_tx->cie = (cis_lll->rx.bn_curr > cis_lll->rx.bn); in prepare_cb() 239 } else if (node_tx->payload_count >= (payload_count + cis_lll->tx.bn)) { in prepare_cb() 256 pdu_tx->cie = (cis_lll->tx.bn_curr > cis_lll->tx.bn) && in prepare_cb() 257 (cis_lll->rx.bn_curr > cis_lll->rx.bn); in prepare_cb() 636 (payload_count + cis_lll->tx.bn)) { in isr_tx() 715 if ((pdu_rx->nesn != cis_lll->sn) && (cis_lll->tx.bn_curr <= cis_lll->tx.bn)) { in isr_rx() 718 if ((cis_lll->tx.bn_curr > cis_lll->tx.bn) && in isr_rx() 719 ((cis_lll->tx.payload_count / cis_lll->tx.bn) < cis_lll->event_count)) { in isr_rx() 720 cis_lll->tx.payload_count += cis_lll->tx.bn; in isr_rx() [all …]
|
D | lll_peripheral_iso.c | 553 if ((pdu_rx->nesn != cis_lll->sn) && (cis_lll->tx.bn_curr <= cis_lll->tx.bn)) { in isr_rx() 556 if ((cis_lll->tx.bn_curr > cis_lll->tx.bn) && in isr_rx() 557 ((cis_lll->tx.payload_count / cis_lll->tx.bn) < in isr_rx() 559 cis_lll->tx.payload_count += cis_lll->tx.bn; in isr_rx() 571 (cis_lll->rx.bn_curr <= cis_lll->rx.bn) && in isr_rx() 616 (cis_lll->rx.payload_count / cis_lll->rx.bn)) * in isr_rx() 630 if ((cis_lll->rx.bn_curr > cis_lll->rx.bn) && in isr_rx() 631 ((cis_lll->rx.payload_count / cis_lll->rx.bn) < cis_lll->event_count)) { in isr_rx() 632 cis_lll->rx.payload_count += cis_lll->rx.bn; in isr_rx() 644 cie = cie || ((cis_lll->rx.bn_curr > cis_lll->rx.bn) && in isr_rx() [all …]
|
D | lll_sync_iso.c | 60 uint16_t latency, uint8_t bn, 225 event_counter = (lll->payload_count / lll->bn) + lll->latency_event; in prepare_cb_common() 228 lll->payload_count += (lll->latency_prepare * lll->bn); in prepare_cb_common() 322 payload_count = lll->payload_count - lll->bn; in prepare_cb_common() 415 if (lll->bn_curr <= lll->bn) { in is_abort_cb() 597 ((lll->bn * lll->irc) + lll->ptc)) + in isr_rx() 598 ((lll->irc_curr - 1U) * lll->bn) + (lll->bn_curr - 1U) + in isr_rx() 624 if ((lll->bn_curr == lll->bn) && in isr_rx() 662 payload_offset = (lll->latency_event * lll->bn) + (lll->bn_curr - 1U) + in isr_rx() 725 while (lll->bn_curr < lll->bn) { in isr_rx() [all …]
|
D | lll_adv_iso.c | 204 event_counter = (lll->payload_count / lll->bn) + lll->latency_event; in prepare_cb_common() 207 lll->payload_count += (lll->latency_prepare * lll->bn); in prepare_cb_common() 208 payload_count = lll->payload_count - lll->bn; in prepare_cb_common() 305 if (lll->bn_curr >= lll->bn) { in prepare_cb_common() 382 if ((lll->bn_curr == lll->bn) && in prepare_cb_common() 486 if (lll->bn_curr < lll->bn) { in isr_tx_common() 535 payload_count = lll->payload_count - lll->bn; in isr_tx_common() 558 payload_count = lll->payload_count - lll->bn; in isr_tx_common() 632 payload_count = lll->payload_count + payload_index - lll->bn; in isr_tx_common() 669 if (lll->bn_curr >= lll->bn && !(lll->ptc_curr % lll->bn)) { in isr_tx_common() [all …]
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_central_iso.c | 79 uint16_t max_sdu, uint8_t *bn, 347 tx = cis->lll.tx.bn && cis->lll.tx.max_pdu; in ll_cig_parameters_commit() 348 rx = cis->lll.rx.bn && cis->lll.rx.max_pdu; in ll_cig_parameters_commit() 369 uint8_t bn; in ll_cig_parameters_commit() local 371 bn = cis->lll.tx.bn; in ll_cig_parameters_commit() 376 cig->c_sdu_interval, cis->c_max_sdu, &bn, &max_pdu); in ll_cig_parameters_commit() 382 cis->lll.tx.bn = bn; in ll_cig_parameters_commit() 385 cis->lll.tx.bn = 0U; in ll_cig_parameters_commit() 391 uint8_t bn; in ll_cig_parameters_commit() local 393 bn = cis->lll.rx.bn; in ll_cig_parameters_commit() [all …]
|
D | ull_adv_iso.c | 95 uint8_t bn, uint8_t irc, uint8_t pto, bool test_config) in big_create() argument 196 if (!IN_RANGE(bn, 0x01, 0x07)) { in big_create() 205 if (!IN_RANGE(pto, 0x00, bn /*0x0F*/)) { in big_create() 209 if (bn * irc + pto < nse) { in big_create() 344 lll_adv_iso->bn = bn; in big_create() 366 bn = DIV_ROUND_UP(max_sdu, lll_adv_iso->max_pdu) * sdu_per_event; in big_create() 367 if (bn > PDU_BIG_BN_MAX) { in big_create() 369 lll_adv_iso->bn = PDU_BIG_BN_MAX; in big_create() 374 bn = DIV_ROUND_UP(bn, PDU_BIG_BN_MAX) * PDU_BIG_BN_MAX; in big_create() 376 lll_adv_iso->bn = bn; in big_create() [all …]
|
D | ull_iso.c | 285 burst_number = cis->lll.rx.bn; in ll_setup_iso_path() 298 burst_number = cis->lll.tx.bn; in ll_setup_iso_path() 330 burst_number = lll_iso->bn; in ll_setup_iso_path() 359 burst_number = lll_iso->bn; in ll_setup_iso_path() 834 uint8_t bn; in ll_iso_receive_test() local 846 if (cis->lll.rx.bn == 0) { in ll_iso_receive_test() 865 bn = cis->lll.rx.bn; in ll_iso_receive_test() 906 bn = lll_iso->bn; in ll_iso_receive_test() 937 err = isoal_sink_create(handle, role, framed, bn, ft, in ll_iso_receive_test() 1246 if (cis->lll.tx.bn == 0U) { in ll_iso_transmit_test() [all …]
|
D | lll_sync_iso.h | 37 uint8_t bn:3; member
|
D | lll_conn_iso.h | 16 uint64_t bn:4; /* Burst number (BN) */ member
|
D | lll_adv.h | 43 uint8_t bn:3; member
|
D | ull_peripheral_iso.c | 267 cis->lll.rx.bn = req->c_bn; in ull_peripheral_iso_acquire() 273 cis->lll.tx.bn = req->p_bn; in ull_peripheral_iso_acquire()
|
D | ull_sync_iso.c | 481 lll->bn = PDU_BIG_INFO_BN_GET(bi); in ull_sync_iso_setup() 487 lll->ptc = lll->bn; in ull_sync_iso_setup() 572 ((lll->irc * lll->bn) + lll->ptc); in ull_sync_iso_setup() 670 lll->payload_count += lll->bn; in ull_sync_iso_setup()
|
D | ull_conn_iso.c | 980 lost_payloads = (lost_cig_events - (cis->lll.rx.ft - 1)) * cis->lll.rx.bn; in ull_conn_iso_start() 983 lost_payloads = (lost_cig_events - (cis->lll.tx.ft - 1)) * cis->lll.tx.bn; in ull_conn_iso_start() 1042 slot_us = cis->lll.sub_interval * MAX(cis->lll.tx.bn, cis->lll.rx.bn); in ull_conn_iso_start()
|
D | ull_llcp.c | 844 ctx->data.cis_create.c_bn = cis->lll.tx.bn; in ull_cp_cis_create() 845 ctx->data.cis_create.p_bn = cis->lll.rx.bn; in ull_cp_cis_create()
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_senml_cbor.cddl | 4 ? bn => tstr, ; Base Name 24 bn = -2
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | iso.h | 975 uint8_t bn; member 1031 uint8_t bn; member 1049 uint8_t bn; member
|
D | hci_types.h | 2233 uint8_t bn; member 3352 uint8_t bn; member 3373 uint8_t bn; member 3433 uint8_t bn; member
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_cis_create/src/ |
D | main.c | 667 cis->lll.tx.bn = local_cis_req.c_bn; in ZTEST() 668 cis->lll.rx.bn = local_cis_req.p_bn; in ZTEST() 819 cis->lll.tx.bn = local_cis_req.c_bn; in ZTEST() 820 cis->lll.rx.bn = local_cis_req.p_bn; in ZTEST()
|
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/src/ |
D | main.c | 789 uint64_t bn; in parse_bn_arg() local 799 bn = strtoul(buffer, NULL, 0); in parse_bn_arg() 800 if (!IN_RANGE(bn, BT_ISO_BN_MIN, BT_ISO_BN_MAX)) { in parse_bn_arg() 801 printk("Invalid burst number %llu", bn); in parse_bn_arg() 806 return (int)bn; in parse_bn_arg()
|
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/ |
D | README.rst | 76 …iso_broadcast_receiver: BIGinfo received: num_bis 2, nse 1, interval 7 ms, bn 1, pto 0, irc 1, max…
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | iso.c | 1180 central->bn = evt->c_bn; in store_cis_info() 1187 peripheral->bn = evt->p_bn; in store_cis_info() 2887 req->bn = qos->tx->burst_number; in hci_le_create_big_test() 2902 req->framing, req->bn, req->irc, req->pto, req->encryption); in hci_le_create_big_test() 3127 broadcaster_info->bn = evt->bn; in store_bis_broadcaster_info() 3318 receiver_info->bn = evt->bn; in store_bis_sync_receiver_info()
|
D | scan.c | 1569 biginfo.burst_number = evt->bn; in bt_hci_le_biginfo_adv_report()
|
/Zephyr-latest/subsys/bluetooth/controller/include/ |
D | ll.h | 120 uint8_t framing, uint8_t bn, uint8_t irc,
|
/Zephyr-latest/subsys/bluetooth/controller/hci/ |
D | hci.c | 1732 cmd->packing, cmd->framing, cmd->bn, in le_create_big_test() 4401 sep->c_bn = lll_cis_c->bn; 4402 sep->p_bn = lll_cis_p->bn; 6132 target_event = lll_iso->payload_count / lll_iso->bn; 7995 sep->bn = PDU_BIG_INFO_BN_GET(bi); 8086 lll->pto * (lll->nse / lll->bn - lll->irc) * 8091 (lll->pto * (lll->nse / lll->bn - lll->irc) + 1) * 8097 sep->bn = lll->bn; 8185 sep->bn = lll->bn;
|
/Zephyr-latest/samples/modules/tflite-micro/hello_world/train/ |
D | train_hello_world_model.ipynb | 1557 …2bqm3rn6HdaPYX2H0atnL8r+UkbP7j3p07MP2/ZsY+vurfQ7rB99evZJeG3RbWKD5LrKdXXH6J/bn+IRxaz6dBWPLX2Mnt17Mq…
|