Home
last modified time | relevance | path

Searched refs:pto (Results 1 – 19 of 19) sorted by relevance

/Zephyr-4.1.0/samples/bluetooth/iso_broadcast_benchmark/src/
Dbroadcaster.c64 .pto = DEFAULT_BIS_PTO,
283 uint64_t pto; in parse_pto_arg() local
286 big_create_param.pto, DEFAULT_BIS_PTO); in parse_pto_arg()
293 pto = strtoul(buffer, NULL, 0); in parse_pto_arg()
294 if (!IN_RANGE(pto, BT_ISO_PTO_MIN, BT_ISO_PTO_MAX)) { in parse_pto_arg()
295 printk("Invalid PTO %llu", pto); in parse_pto_arg()
300 return (int)pto; in parse_pto_arg()
487 int pto; in parse_args() local
538 pto = parse_pto_arg(); in parse_args()
539 if (pto < 0) { in parse_args()
[all …]
/Zephyr-4.1.0/include/zephyr/bluetooth/
Diso.h555 uint8_t pto; member
1022 uint32_t pto; member
1043 uint32_t pto; member
Dhci_types.h2283 uint8_t pto; member
3415 uint8_t pto; member
3436 uint8_t pto; member
3496 uint8_t pto; member
/Zephyr-4.1.0/subsys/bluetooth/controller/ll_sw/
Dull_adv_iso.c106 uint8_t bn, uint8_t irc, uint8_t pto, bool test_config) in big_create() argument
215 if (pto > 0x0F) { in big_create()
219 if (pto && !(bn * irc < nse)) { in big_create()
468 lll_adv_iso->pto = pto; in big_create()
470 if (pto && !lll_adv_iso->ptc) { in big_create()
476 lll_adv_iso->pto = MAX((bn / lll_adv_iso->bn), BT_CTLR_ADV_ISO_PTO_MIN); in big_create()
478 lll_adv_iso->pto = 0U; in big_create()
569 PDU_BIG_INFO_PTO_SET(big_info, lll_adv_iso->pto); in big_create()
708 uint8_t pto, uint8_t encryption, uint8_t *bcode) in ll_big_test_create() argument
714 iso_interval, nse, max_pdu, bn, irc, pto, true); in ll_big_test_create()
Dlll_sync_iso.h61 uint32_t pto:4; member
Dlll_adv.h66 uint32_t pto:4; member
Dull_sync_iso.c486 lll->pto = PDU_BIG_INFO_PTO_GET(bi); in ull_sync_iso_setup()
489 if (lll->pto) { in ull_sync_iso_setup()
/Zephyr-4.1.0/subsys/bluetooth/audio/
Dbap_endpoint.h118 uint8_t pto; member
Dbap_broadcast_source.c806 source->pto = param->pto; in bt_bap_broadcast_source_create()
1082 param.pto = source->pto; in bt_bap_broadcast_source_start()
/Zephyr-4.1.0/include/zephyr/bluetooth/audio/
Dcap.h520 uint8_t pto; member
Dbap.h2233 uint8_t pto; member
/Zephyr-4.1.0/subsys/bluetooth/host/
Diso.c2889 req->pto = param->pto; in hci_le_create_big_test()
2902 req->framing, req->bn, req->irc, req->pto, req->encryption); in hci_le_create_big_test()
3028 CHECKIF(!IN_RANGE(param->pto, BT_ISO_PTO_MIN, BT_ISO_PTO_MAX)) { in valid_big_param()
3029 LOG_DBG("Invalid PTO %u", param->pto); in valid_big_param()
3130 broadcaster_info->pto = info->iso_interval * evt->pto; in store_bis_broadcaster_info()
3321 receiver_info->pto = info->iso_interval * evt->pto; in store_bis_sync_receiver_info()
Dscan.c1599 biginfo.offset = evt->pto; in bt_hci_le_biginfo_adv_report()
/Zephyr-4.1.0/samples/bluetooth/iso_broadcast_benchmark/
DREADME.rst76 …oadcast_receiver: BIGinfo received: num_bis 2, nse 1, interval 7 ms, bn 1, pto 0, irc 1, max_pdu 2…
/Zephyr-4.1.0/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_sync_iso.c1021 (lll->ptc_curr * lll->pto); in isr_rx()
1629 ptx_group_mult = (ptx_group_idx + 1U) * lll->pto; /* 9 bits */ in payload_index_get()
1770 lll->pto * lll->iso_interval * in isr_rx_iso_data_valid()
Dlll_adv_iso.c724 ptx_group_mult = (ptx_group_idx + 1U) * lll->pto; /* 9 bits */ in isr_tx_common()
/Zephyr-4.1.0/subsys/bluetooth/controller/include/
Dll.h121 uint8_t pto, uint8_t encryption, uint8_t *bcode);
/Zephyr-4.1.0/subsys/bluetooth/controller/hci/
Dhci.c1768 cmd->irc, cmd->pto, cmd->encryption, in le_create_big_test()
8031 sep->pto = PDU_BIG_INFO_PTO_GET(bi);
8121 lll->pto * (lll->nse / lll->bn - lll->irc) *
8126 (lll->pto * (lll->nse / lll->bn - lll->irc) + 1) *
8133 sep->pto = lll->pto;
8237 lll->pto * (lll->nse / lll->bn - lll->irc) *
8242 (lll->pto * (lll->nse / lll->bn - lll->irc) + 1) *
8251 sep->pto = lll->pto;
/Zephyr-4.1.0/tests/bsim/bluetooth/ll/bis/src/
Dtest_bis.c409 big_create_param.pto = BT_ISO_PTO_MIN; in create_advanced_big()