Home
last modified time | relevance | path

Searched refs:dle (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/tests/bluetooth/controller/ctrl_data_length_update/src/
Dmain.c836 zassert_equal(conn.lll.dle.local.max_rx_time, 2120, "max_rx_time mismatch.\n"); in ZTEST()
837 zassert_equal(conn.lll.dle.local.max_tx_time, 2120, "max_tx_time mismatch.\n"); in ZTEST()
839 zassert_equal(conn.lll.dle.local.max_rx_time, 2120, "max_rx_time mismatch.\n"); in ZTEST()
840 zassert_equal(conn.lll.dle.local.max_tx_time, 2120, "max_tx_time mismatch.\n"); in ZTEST()
843 zassert_equal(conn.lll.dle.local.max_rx_time, 2120, "max_rx_time mismatch.\n"); in ZTEST()
844 zassert_equal(conn.lll.dle.local.max_tx_time, 1800, "max_tx_time mismatch.\n"); in ZTEST()
854 zassert_equal(conn.lll.dle.local.max_rx_time, 2120, "max_rx_time mismatch.\n"); in ZTEST()
855 zassert_equal(conn.lll.dle.local.max_tx_time, 2120, "max_tx_time mismatch.\n"); in ZTEST()
857 zassert_equal(conn.lll.dle.local.max_rx_time, 2120, "max_rx_time mismatch.\n"); in ZTEST()
858 zassert_equal(conn.lll.dle.local.max_tx_time, 2120, "max_tx_time mismatch.\n"); in ZTEST()
[all …]
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_conn.c1311 tx_time = lll->dle.eff.max_tx_time; in ull_conn_done()
1312 rx_time = lll->dle.eff.max_rx_time; in ull_conn_done()
1331 tx_time = PDU_DC_MAX_US(lll->dle.eff.max_tx_octets, 0); in ull_conn_done()
1332 rx_time = PDU_DC_MAX_US(lll->dle.eff.max_rx_octets, 0); in ull_conn_done()
1575 max_tx_octets = (lll->dle.eff.max_tx_time >> 3) - 10; in ull_conn_lll_max_tx_octets_get()
1583 max_tx_octets = (lll->dle.eff.max_tx_time >> 2) - 11; in ull_conn_lll_max_tx_octets_get()
1596 max_tx_octets = ((lll->dle.eff.max_tx_time - 592) >> in ull_conn_lll_max_tx_octets_get()
1606 max_tx_octets = ((lll->dle.eff.max_tx_time - 430) >> in ull_conn_lll_max_tx_octets_get()
1620 if (max_tx_octets > lll->dle.eff.max_tx_octets) { in ull_conn_lll_max_tx_octets_get()
1621 max_tx_octets = lll->dle.eff.max_tx_octets; in ull_conn_lll_max_tx_octets_get()
[all …]
Dull_llcp_phy.c288 uint16_t eff_tx_time = lll->dle.eff.max_tx_time; in pu_update_eff_times()
289 uint16_t eff_rx_time = lll->dle.eff.max_rx_time; in pu_update_eff_times()
297 pu_calc_eff_time(lll->dle.eff.max_tx_octets, lll->phy_tx, max_tx_time); in pu_update_eff_times()
302 pu_calc_eff_time(lll->dle.eff.max_rx_octets, lll->phy_rx, max_rx_time); in pu_update_eff_times()
305 if ((eff_tx_time > lll->dle.eff.max_tx_time) || in pu_update_eff_times()
306 (lll->dle.eff.max_tx_time > max_tx_time) || in pu_update_eff_times()
307 (eff_rx_time > lll->dle.eff.max_rx_time) || in pu_update_eff_times()
308 (lll->dle.eff.max_rx_time > max_rx_time)) { in pu_update_eff_times()
309 lll->dle.eff.max_tx_time = eff_tx_time; in pu_update_eff_times()
310 lll->dle.eff.max_rx_time = eff_rx_time; in pu_update_eff_times()
Dull_central.c349 conn_lll->dle.eff.max_tx_time = MAX(conn_lll->dle.eff.max_tx_time, in ll_create_connection()
352 conn_lll->dle.eff.max_rx_time = MAX(conn_lll->dle.eff.max_rx_time, in ll_create_connection()
356 max_tx_time = conn_lll->dle.eff.max_tx_time; in ll_create_connection()
357 max_rx_time = conn_lll->dle.eff.max_rx_time; in ll_create_connection()
Dull_llcp_pdu.c631 const struct data_pdu_length *dle) in encode_length_req_rsp_common() argument
637 p->max_rx_octets = sys_cpu_to_le16(dle->max_rx_octets); in encode_length_req_rsp_common()
638 p->max_tx_octets = sys_cpu_to_le16(dle->max_tx_octets); in encode_length_req_rsp_common()
639 p->max_rx_time = sys_cpu_to_le16(dle->max_rx_time); in encode_length_req_rsp_common()
640 p->max_tx_time = sys_cpu_to_le16(dle->max_tx_time); in encode_length_req_rsp_common()
648 &conn->lll.dle.local); in llcp_pdu_encode_length_req()
656 &conn->lll.dle.local); in llcp_pdu_encode_length_rsp()
664 &conn->lll.dle.eff); in llcp_ntf_encode_length_change()
717 conn->lll.dle.remote = remote; in decode_length_req_rsp_common()
Dull_llcp_common.c804 ull_dle_max_time_get(conn, &conn->lll.dle.local.max_rx_time,
805 &conn->lll.dle.local.max_tx_time);
984 ull_dle_max_time_get(conn, &conn->lll.dle.local.max_rx_time,
985 &conn->lll.dle.local.max_tx_time);
1019 ctx->data.dle.ntf_dle = ull_dle_update_eff_rx(conn);
1354 dle_changed |= ctx->data.dle.ntf_dle;
Dlll_conn.h114 } dle; member
Dull_peripheral.c352 max_tx_time = lll->dle.eff.max_tx_time;
353 max_rx_time = lll->dle.eff.max_rx_time;
Dull_llcp_internal.h225 } dle; member
/Zephyr-latest/tests/bluetooth/controller/ctrl_collision/src/
Dmain.c111 conn.lll.dle.remote.max_tx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in collision_setup()
112 conn.lll.dle.remote.max_rx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in collision_setup()
113 conn.lll.dle.remote.max_tx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_tx_octets, in collision_setup()
115 conn.lll.dle.remote.max_rx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_rx_octets, in collision_setup()
/Zephyr-latest/tests/bluetooth/controller/ctrl_cte_req/src/
Dmain.c829 conn.lll.dle.remote.max_tx_octets = PDU_PDU_MAX_OCTETS; in phy_update_setup()
830 conn.lll.dle.remote.max_rx_octets = PDU_PDU_MAX_OCTETS; in phy_update_setup()
831 conn.lll.dle.remote.max_tx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_tx_octets, PHY_1M); in phy_update_setup()
832 conn.lll.dle.remote.max_rx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_rx_octets, PHY_1M); in phy_update_setup()
/Zephyr-latest/tests/bluetooth/controller/ctrl_phy_update/src/
Dmain.c73 conn.lll.dle.remote.max_tx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in phy_setup()
74 conn.lll.dle.remote.max_rx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in phy_setup()
75 conn.lll.dle.remote.max_tx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_tx_octets, in phy_setup()
77 conn.lll.dle.remote.max_rx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_rx_octets, in phy_setup()
136 conn.lll.dle.eff.max_rx_time = 0; in ZTEST()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_conn.c428 max_rx_octets = lll->dle.eff.max_rx_octets; in lll_conn_rx_pkt_set()
462 max_tx_octets = lll->dle.eff.max_tx_octets; in lll_conn_tx_pkt_set()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/
Dlll_scan_aux.c1578 conn_lll->dle.eff.max_tx_time = MAX(conn_lll->dle.eff.max_tx_time,
1581 conn_lll->dle.eff.max_rx_time = MAX(conn_lll->dle.eff.max_rx_time,
Dlll_conn.c777 max_rx_octets = lll->dle.eff.max_rx_octets;
830 max_tx_octets = lll->dle.eff.max_tx_octets;