File tree Expand file tree Collapse file tree 1 file changed +2
-13
lines changed
subsys/bluetooth/controller/ll_sw/nordic/lll Expand file tree Collapse file tree 1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change 33
33
#include "common/log.h"
34
34
#include "hal/debug.h"
35
35
36
- #if defined(CONFIG_BT_CTLR_ZLI )
37
- #define IRQ_CONNECT_FLAGS IRQ_ZERO_LATENCY
38
- #else
39
- #define IRQ_CONNECT_FLAGS 0
40
- #endif
41
-
42
36
static struct {
43
37
struct {
44
38
void * param ;
@@ -164,16 +158,11 @@ int lll_init(void)
164
158
165
159
/* Connect ISRs */
166
160
IRQ_DIRECT_CONNECT (RADIO_IRQn , CONFIG_BT_CTLR_LLL_PRIO ,
167
- radio_nrf5_isr , IRQ_CONNECT_FLAGS );
168
- #if (CONFIG_BT_CTLR_LLL_PRIO == CONFIG_BT_CTLR_ULL_HIGH_PRIO )
169
- IRQ_CONNECT (RTC0_IRQn , CONFIG_BT_CTLR_ULL_HIGH_PRIO ,
170
- rtc0_nrf5_isr , NULL , IRQ_CONNECT_FLAGS );
171
- #else
161
+ radio_nrf5_isr , 0 );
172
162
IRQ_CONNECT (RTC0_IRQn , CONFIG_BT_CTLR_ULL_HIGH_PRIO ,
173
163
rtc0_nrf5_isr , NULL , 0 );
174
- #endif
175
164
IRQ_CONNECT (HAL_SWI_RADIO_IRQ , CONFIG_BT_CTLR_LLL_PRIO ,
176
- swi_lll_nrf5_isr , NULL , IRQ_CONNECT_FLAGS );
165
+ swi_lll_nrf5_isr , NULL , 0 );
177
166
#if defined(CONFIG_BT_CTLR_LOW_LAT ) || \
178
167
(CONFIG_BT_CTLR_ULL_HIGH_PRIO != CONFIG_BT_CTLR_ULL_LOW_PRIO )
179
168
IRQ_CONNECT (HAL_SWI_JOB_IRQ , CONFIG_BT_CTLR_ULL_LOW_PRIO ,
You can’t perform that action at this time.
0 commit comments