bluetooth: controller: enable support for nRF53 in Kconfig
This commit enables support in bluetooth/controller/Kconfig for nRF53 series of SoCs. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
This commit is contained in:
parent
a7a4c89579
commit
613e716e11
1 changed files with 5 additions and 5 deletions
|
@ -599,7 +599,7 @@ if BT_LL_SW_SPLIT
|
|||
config BT_CTLR_LLL_PRIO
|
||||
int "Lower Link Layer (Radio) IRQ priority"
|
||||
range 0 3 if SOC_SERIES_NRF51X
|
||||
range 0 6 if SOC_SERIES_NRF52X
|
||||
range 0 6 if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
|
||||
default 0
|
||||
help
|
||||
The interrupt priority for event preparation and radio IRQ.
|
||||
|
@ -607,7 +607,7 @@ config BT_CTLR_LLL_PRIO
|
|||
config BT_CTLR_ULL_HIGH_PRIO
|
||||
int "Upper Link Layer High IRQ priority"
|
||||
range BT_CTLR_LLL_PRIO 3 if SOC_SERIES_NRF51X
|
||||
range BT_CTLR_LLL_PRIO 6 if SOC_SERIES_NRF52X
|
||||
range BT_CTLR_LLL_PRIO 6 if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
|
||||
default BT_CTLR_LLL_PRIO
|
||||
help
|
||||
The interrupt priority for Ticker's Worker IRQ and Upper Link Layer
|
||||
|
@ -616,7 +616,7 @@ config BT_CTLR_ULL_HIGH_PRIO
|
|||
config BT_CTLR_ULL_LOW_PRIO
|
||||
int "Upper Link Layer Low IRQ priority"
|
||||
range BT_CTLR_ULL_HIGH_PRIO 3 if SOC_SERIES_NRF51X
|
||||
range BT_CTLR_ULL_HIGH_PRIO 6 if SOC_SERIES_NRF52X
|
||||
range BT_CTLR_ULL_HIGH_PRIO 6 if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
|
||||
default BT_CTLR_ULL_HIGH_PRIO
|
||||
help
|
||||
The interrupt priority for Ticker's Job IRQ and Upper Link Layer
|
||||
|
@ -655,7 +655,7 @@ endif # BT_LL_SW_SPLIT
|
|||
|
||||
config BT_CTLR_RADIO_ENABLE_FAST
|
||||
bool "Use tTXEN/RXEN,FAST ramp-up"
|
||||
depends on SOC_COMPATIBLE_NRF52X
|
||||
depends on SOC_COMPATIBLE_NRF52X || SOC_SERIES_NRF53X
|
||||
default y
|
||||
help
|
||||
Enable use of fast radio ramp-up mode.
|
||||
|
@ -669,7 +669,7 @@ config BT_CTLR_TIFS_HW
|
|||
|
||||
config BT_CTLR_SW_SWITCH_SINGLE_TIMER
|
||||
bool "Single TIMER tIFS Trx SW switching"
|
||||
depends on (!BT_CTLR_TIFS_HW) && SOC_COMPATIBLE_NRF52X
|
||||
depends on (!BT_CTLR_TIFS_HW) && (SOC_COMPATIBLE_NRF52X || SOC_SERIES_NRF53X)
|
||||
help
|
||||
Implement the tIFS Trx SW switch with the same TIMER
|
||||
instance, as the one used for BLE event timing. Requires
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue