-
Notifications
You must be signed in to change notification settings - Fork 3
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 <[email protected]>
- Loading branch information
1 parent
ba92fa3
commit a03612b
Showing
186 changed files
with
4,682 additions
and
2,061 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.