-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update NCS version and add nRF54L support. Signed-off-by: Marcin Gasiorek <marcin.gasiorek@nordicsemi.no>
- Loading branch information
1 parent
ba92fa3
commit 7a7478d
Showing
185 changed files
with
4,650 additions
and
2,057 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# | ||
# Copyright (c) 2022 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
config SID_END_DEVICE_NOTIFY_DATA_PERIOD_MS | ||
int "Notify period of sensor monitoring demo app" | ||
default 10000 | ||
|
||
config SIDEWALK_THREAD_PRIORITY | ||
default 12 | ||
|
||
config SID_END_DEVICE_TX_THREAD_PRIORITY | ||
int | ||
default 13 | ||
|
||
config SID_END_DEVICE_RX_THREAD_PRIORITY | ||
int | ||
default 14 | ||
|
||
config SID_END_DEVICE_TX_THREAD_STACK_SIZE | ||
int | ||
default 4096 | ||
|
||
config SID_END_DEVICE_RX_THREAD_STACK_SIZE | ||
int | ||
default 4096 | ||
|
||
config SID_END_DEVICE_TX_THREAD_QUEUE_SIZE | ||
int | ||
default 10 | ||
|
||
config SID_END_DEVICE_RX_THREAD_QUEUE_SIZE | ||
int | ||
default 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# | ||
# Copyright (c) 2023 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
config NRF_DEFAULT_IPC_RADIO | ||
default y if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP | ||
|
||
choice BOOTLOADER | ||
default BOOTLOADER_MCUBOOT | ||
endchoice | ||
|
||
if BOOTLOADER_MCUBOOT | ||
|
||
config DFU_MULTI_IMAGE_PACKAGE_BUILD | ||
default y | ||
|
||
config DFU_MULTI_IMAGE_PACKAGE_APP | ||
default y | ||
|
||
if (BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP) | ||
|
||
config MCUBOOT_UPDATEABLE_IMAGES | ||
default 2 | ||
|
||
choice MCUBOOT_MODE | ||
default MCUBOOT_MODE_OVERWRITE_ONLY | ||
endchoice | ||
|
||
choice BOOT_SIGNATURE_TYPE | ||
default BOOT_SIGNATURE_TYPE_RSA | ||
endchoice | ||
|
||
config SECURE_BOOT | ||
default y | ||
|
||
config SECURE_BOOT_NETCORE | ||
default y | ||
|
||
config NETCORE_APP_UPDATE | ||
default y | ||
|
||
config DFU_MULTI_IMAGE_PACKAGE_NET | ||
default y | ||
|
||
endif # BOOTLOADER_MCUBOOT | ||
|
||
endif # (BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP) | ||
|
||
config PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY | ||
default y if BOARD_NRF52840DK_NRF52840 || BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP | ||
|
||
source "${ZEPHYR_BASE}/share/sysbuild/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
samples/SWTL001/boards/nrf54l15pdk_nrf54l15_cpuapp_0_2_1.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
# Workaround: | ||
# The nRF54L15 PDK (PCA10156) revisions v0.2.0 AA0-ES2, v0.2.0 AA0-ES3, | ||
# and v0.2.1 AB0-ES5 have Buttons 3 and 4 connected to the GPIO port | ||
# which does not support interrupts. | ||
CONFIG_DK_LIBRARY_BUTTON_NO_ISR=y | ||
|
||
CONFIG_SOC_FLASH_NRF_TIMEOUT_MULTIPLIER=100 |
Oops, something went wrong.