Skip to content

Commit c4a6651

Browse files
cvinayakkartben
authored andcommitted
Bluetooth: Controller: Single timer use Extended Scanning nRF54L support
Update Extended Scanning for single timer use support required for nRF54L Series SoCs. As the timer is reset on every radio end, use the radio_tmr_hcto_configure_abs() function to set the header complete timeout correctly when using single timer for s/w switching. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 373dc0d commit c4a6651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/ll_sw/nordic/lll/lll_scan_aux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ void lll_scan_aux_isr_aux_setup(void *param)
365365
hcto += window_size_us;
366366
hcto += radio_rx_chain_delay_get(phy_aux, PHY_FLAGS_S8);
367367
hcto += addr_us_get(phy_aux);
368-
radio_tmr_hcto_configure(hcto);
368+
radio_tmr_hcto_configure_abs(hcto);
369369

370370
/* capture end of Rx-ed PDU, extended scan to schedule auxiliary
371371
* channel chaining, create connection or to create periodic sync.

0 commit comments

Comments
 (0)