Skip to content

Commit 980cc21

Browse files
cvinayakkartben
authored andcommitted
Bluetooth: Controller: Single timer use ISO Receive nRF54L support
Update ISO Sync Receiver 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 ccba18a commit 980cc21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ static void isr_rx(void *param)
11521152
hcto += radio_rx_chain_delay_get(lll->phy, PHY_FLAGS_S8);
11531153

11541154
/* setup absolute PDU header reception timeout */
1155-
radio_tmr_hcto_configure(hcto);
1155+
radio_tmr_hcto_configure_abs(hcto);
11561156

11571157
/* setup capture of PDU end timestamp */
11581158
radio_tmr_end_capture();

0 commit comments

Comments
 (0)