Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions boards/nordic/bm_nrf54l15dk/Kconfig.bm_nrf54l15dk
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#

config BOARD_BM_NRF54L15DK
select SOC_NRF54L05_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L05_CPUAPP_S115_SOFTDEVICE || BOARD_BM_NRF54L15DK_NRF54L05_CPUAPP_S115_SOFTDEVICE_MCUBOOT
select SOC_NRF54L10_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L10_CPUAPP_S115_SOFTDEVICE || BOARD_BM_NRF54L15DK_NRF54L10_CPUAPP_S115_SOFTDEVICE_MCUBOOT
select SOC_NRF54L15_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L15_CPUAPP_S115_SOFTDEVICE || BOARD_BM_NRF54L15DK_NRF54L15_CPUAPP_S115_SOFTDEVICE_MCUBOOT
select SOC_NRF54L05_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L05_CPUAPP_S115_SOFTDEVICE || \
BOARD_BM_NRF54L15DK_NRF54L05_CPUAPP_S115_SOFTDEVICE_MCUBOOT
select SOC_NRF54L10_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L10_CPUAPP_S115_SOFTDEVICE || \
BOARD_BM_NRF54L15DK_NRF54L10_CPUAPP_S115_SOFTDEVICE_MCUBOOT
select SOC_NRF54L15_CPUAPP if BOARD_BM_NRF54L15DK_NRF54L15_CPUAPP_S115_SOFTDEVICE || \
BOARD_BM_NRF54L15DK_NRF54L15_CPUAPP_S115_SOFTDEVICE_MCUBOOT
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

# SoftDevice variant
CONFIG_SOFTDEVICE_S115=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_BM_UARTE_CONSOLE=y
Expand Down
1 change: 0 additions & 1 deletion subsys/softdevice/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

if(CONFIG_SOFTDEVICE_S115)
zephyr_include_directories("${ZEPHYR_NRF_BM_MODULE_DIR}/components/softdevice/${CONFIG_SOFTDEVICE_VARIANT_STR}/${CONFIG_SOFTDEVICE_VARIANT_STR}_API/include")
endif()
9 changes: 7 additions & 2 deletions subsys/softdevice/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,17 @@ config SOFTDEVICE_QOS_CHANNEL_SURVEY_REPORT

if SOFTDEVICE

choice SOFTDEVICE_VARIANT
prompt "SoftDevice variant"
default SOFTDEVICE_S115

config SOFTDEVICE_S115
bool
bool "S115"
depends on SOC_SERIES_NRF54LX
select SOFTDEVICE_PERIPHERAL
select SOFTDEVICE_DATA_LENGTH_UPDATE
default y

endchoice # SOFTDEVICE_VARIANT

config SOFTDEVICE_VARIANT_STR
string
Expand Down
2 changes: 1 addition & 1 deletion subsys/softdevice_handler/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ zephyr_library_sources(
irq_connect.c
)

if(CONFIG_SOFTDEVICE_S115)
if(CONFIG_SOFTDEVICE AND CONFIG_SOC_SERIES_NRF54LX)
zephyr_library_sources(irq_forward.s)
# Suppress the swap_helper.S file so that z_arm_svc can be defined manually
set(cortex_m_dir ${ZEPHYR_BASE}/arch/arm/core/cortex_m)
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ manifest:
- zcbor
- name: sdk-nrf-bm-internal
path: nrf-bm-internal
revision: 2086b4bb5ee2cc68b824fe5ecd4e2461987e4c5c
revision: pull/6/head
groups:
- nrf-bm-internal

Expand Down
Loading