Skip to content

Commit ccba18a

Browse files
cvinayakkartben
authored andcommitted
Bluetooth: Controller: Single timer use Periodic Adv Sync nRF54L support
Update Periodic Advertising Sync implementation 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 88a73dd commit ccba18a

File tree

1 file changed

+1
-1
lines changed
  • subsys/bluetooth/controller/ll_sw/nordic/lll

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ static void isr_aux_setup(void *param)
757757
hcto += window_size_us;
758758
hcto += radio_rx_chain_delay_get(phy_aux, PHY_FLAGS_S8);
759759
hcto += addr_us_get(phy_aux);
760-
radio_tmr_hcto_configure(hcto);
760+
radio_tmr_hcto_configure_abs(hcto);
761761

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

0 commit comments

Comments
 (0)