Skip to content

Commit 938fca2

Browse files
cvinayaknashif
authored andcommitted
Bluetooth: controller: Use ticker resolution margin in central
Use the vendor specific ticker resolution margin in the central connection initiation offset calculation. Related to commit 89ab68f ("bluetooth: controller: Vendor specific ticker resolution margin"). Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent ce27b26 commit 938fca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/ll_sw/ull_master.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ void ull_master_setup(memq_link_t *link, struct node_rx_hdr *rx,
677677

678678
conn_interval_us = lll->interval * CONN_INT_UNIT_US;
679679
conn_offset_us = ftr->radio_end_us;
680-
conn_offset_us += HAL_TICKER_TICKS_TO_US(1);
680+
conn_offset_us += EVENT_TICKER_RES_MARGIN_US;
681681
conn_offset_us -= EVENT_OVERHEAD_START_US;
682682

683683
#if defined(CONFIG_BT_CTLR_PHY)

0 commit comments

Comments
 (0)