File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
subsys/bluetooth/controller/ll_sw/nordic/lll Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -338,6 +338,7 @@ void lll_scan_aux_isr_aux_setup(void *param)
338
338
aux_start_us -= EVENT_JITTER_US ;
339
339
340
340
start_us = radio_tmr_start_us (0 , aux_start_us );
341
+ LL_ASSERT (start_us == (aux_start_us + 1U ));
341
342
342
343
/* Setup header complete timeout */
343
344
hcto = start_us ;
Original file line number Diff line number Diff line change @@ -738,6 +738,7 @@ static void isr_aux_setup(void *param)
738
738
aux_start_us -= EVENT_JITTER_US ;
739
739
740
740
start_us = radio_tmr_start_us (0 , aux_start_us );
741
+ LL_ASSERT (start_us == (aux_start_us + 1U ));
741
742
742
743
/* Setup header complete timeout */
743
744
hcto = start_us ;
Original file line number Diff line number Diff line change @@ -1046,10 +1046,7 @@ static void isr_rx(void *param)
1046
1046
1047
1047
start_us = hcto ;
1048
1048
hcto = radio_tmr_start_us (0U , start_us );
1049
- /* FIXME: Assertion check disabled until investigation as to
1050
- * why there is high ISR latency causing assertion here.
1051
- */
1052
- /* LL_ASSERT(hcto == (start_us + 1U)); */
1049
+ LL_ASSERT (hcto == (start_us + 1U ));
1053
1050
1054
1051
/* Add 8 us * subevents so far, as radio was setup to listen
1055
1052
* 4 us early and subevents could have a 4 us drift each until
You can’t perform that action at this time.
0 commit comments