Skip to content

Commit 3664cb9

Browse files
cvinayaknashif
authored andcommitted
Bluetooth: controller: Fix BT_CTLR_ULL_HIGH_PRIO default value
Fix BT_CTLR_ULL_HIGH_PRIO default value to equal BT_CTLR_LLL_PRIO value if BT_CTLR_LOW_LAT is enabled, else default ULL_HIGH to lower IRQ priority level in comparison to LLL IRQ priority level. If BT_CTLR_ZLI is enabled, BT_CTLR_ULL_HIGH_PRIO can default to a priority level value of 0 and still be lower priority level than the LLL which is placed at Zero Latency IRQ priority level (highest priority in the CPU). Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 5d86496 commit 3664cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/Kconfig.ll_sw_split

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ config BT_CTLR_ULL_HIGH_PRIO
285285
int "Upper Link Layer High IRQ priority"
286286
range BT_CTLR_LLL_PRIO 3 if SOC_SERIES_NRF51X
287287
range BT_CTLR_LLL_PRIO 6 if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
288-
default BT_CTLR_LLL_PRIO if (BT_CTLR_ZLI || BT_CTLR_LOW_LAT_ULL)
288+
default BT_CTLR_LLL_PRIO if (BT_CTLR_ZLI || BT_CTLR_LOW_LAT)
289289
default 1
290290
help
291291
The interrupt priority for Ticker's Worker IRQ and Upper Link Layer

0 commit comments

Comments
 (0)