Skip to content

Commit 81bb2ad

Browse files
alexstanoev-nordicrlubos
authored andcommitted
bluetooth: controller: Use new SDC variants for nRF54L
SDC library variants corresponding to BT_LL_SOFTDEVICE_PERIPHERAL and BT_LL_SOFTDEVICE_CENTRAL have now been added for the nRF54L series. These libraries have a lower NVM and RAM usage and are intended for applications requiring a basic single-role BLE feature set. Adjust the Kconfig dependencies so these variants get selected according to the same criteria as the existing nRF52 SDC variants. Signed-off-by: Aleksandar Stanoev <[email protected]>
1 parent 780332e commit 81bb2ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

subsys/bluetooth/controller/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,10 @@ choice BT_LL_SOFTDEVICE_VARIANT
322322
BT_CTLR_SDC_PAWR_ADV || \
323323
BT_CTLR_SDC_PAWR_SYNC || \
324324
BT_ISO || \
325+
BT_CTLR_CHANNEL_SOUNDING || \
325326
SOC_COMPATIBLE_NRF5340_CPUNET || \
326327
SOC_NRF54H20_CPURAD || \
327-
SOC_COMPATIBLE_NRF54LX)
328+
(SOC_COMPATIBLE_NRF54LX && TRUSTED_EXECUTION_NONSECURE))
328329
default BT_LL_SOFTDEVICE_CENTRAL if BT_OBSERVER
329330
default BT_LL_SOFTDEVICE_PERIPHERAL if BT_BROADCASTER
330331
help

0 commit comments

Comments
 (0)