-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add nrf54lm20dk/nrf54lm20b/cpuapp to bluetooth samples #27704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
8 changes: 8 additions & 0 deletions
8
samples/benchmarks/coremark/boards/nrf54lm20dk_nrf54lm20b_cpuapp.conf
This file contains hidden or 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,8 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor ASA | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
|
|
||
| CONFIG_COREMARK_ITERATIONS=4000 | ||
|
|
||
| CONFIG_LOG_MODE_IMMEDIATE=y |
57 changes: 57 additions & 0 deletions
57
samples/benchmarks/coremark/boards/nrf54lm20dk_nrf54lm20b_cpuapp.overlay
This file contains hidden or 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,57 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| #include "app_aliases_common.dtsi" | ||
|
|
||
| /* The following configuration is required to run the CPUFLPR core. | ||
| * It is imported from the nordic-flpr snippet in the sdk-nrf repository. | ||
| */ | ||
| / { | ||
| soc { | ||
| reserved-memory { | ||
| #address-cells = <1>; | ||
| #size-cells = <1>; | ||
|
|
||
| cpuflpr_code_partition: image@1e5000 { | ||
| /* FLPR core code partition */ | ||
| reg = <0x1e5000 DT_SIZE_K(96)>; | ||
| }; | ||
| }; | ||
|
|
||
| cpuflpr_sram_code_data: memory@20067c00 { | ||
| compatible = "mmio-sram"; | ||
| reg = <0x20067c00 DT_SIZE_K(96)>; | ||
| #address-cells = <1>; | ||
| #size-cells = <1>; | ||
| ranges = <0x0 0x20067c00 DT_SIZE_K(96)>; | ||
| }; | ||
| }; | ||
| }; | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 DT_SIZE_K(415)>; | ||
| ranges = <0x0 0x20000000 DT_SIZE_K(415)>; | ||
| }; | ||
|
|
||
| &uart30 { | ||
| status = "reserved"; | ||
| }; | ||
|
|
||
| &cpuflpr_vpr { | ||
| status = "okay"; | ||
| execution-memory = <&cpuflpr_sram_code_data>; | ||
| source-memory = <&cpuflpr_code_partition>; | ||
| }; | ||
|
|
||
| &cpuapp_vevif_tx { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| /* The same set of GPIO and GPIOTE DTS nodes are enabled in the cpuapp and the cpuflpr targets. | ||
| * This is done to allow control over one Button and one LED in each core. The benchmark code is | ||
| * responsible for ensuring that each core exclusively uses the individual GPIO pin and the GPIOTE | ||
| * instance that may be used with the GPIO pin (Button). | ||
| */ |
8 changes: 8 additions & 0 deletions
8
samples/benchmarks/coremark/boards/nrf54lm20dk_nrf54lm20b_cpuflpr.conf
This file contains hidden or 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,8 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor ASA | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
|
|
||
| CONFIG_COREMARK_ITERATIONS=4000 | ||
|
|
||
| CONFIG_LOG_MODE_IMMEDIATE=y |
18 changes: 18 additions & 0 deletions
18
samples/benchmarks/coremark/boards/nrf54lm20dk_nrf54lm20b_cpuflpr.overlay
This file contains hidden or 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,18 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| / { | ||
| aliases { | ||
| button = &button3; | ||
| led = &led3; | ||
| }; | ||
| }; | ||
|
|
||
| /* The same set of GPIO and GPIOTE DTS nodes are enabled in the cpuapp and the cpuflpr targets. | ||
| * This is done to allow control over one Button and one LED in each core. The benchmark code is | ||
| * responsible for ensuring that each core exclusively uses the individual GPIO pin and the GPIOTE | ||
| * instance that may be used with the GPIO pin (Button). | ||
| */ |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/central_and_peripheral_hrs/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/central_and_peripheral_hrs/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/central_bas/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/central_bas/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/central_hr_coded/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/central_hr_coded/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/central_uart/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/central_uart/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/multiple_adv_sets/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/multiple_adv_sets/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/peripheral_ams_client/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/peripheral_ams_client/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/peripheral_ancs_client/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.conf
This file contains hidden or 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,7 @@ | ||
| # | ||
| # Copyright (c) 2026 Nordic Semiconductor | ||
| # | ||
| # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| # | ||
|
|
||
| CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME=n |
10 changes: 10 additions & 0 deletions
10
samples/bluetooth/peripheral_ancs_client/boards/nrf54lm20dk_nrf54lm20b_cpuapp_ns.overlay
This file contains hidden or 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,10 @@ | ||
| /* | ||
| * Copyright (c) 2026 Nordic Semiconductor ASA | ||
| * | ||
| * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
| */ | ||
|
|
||
| &cpuapp_sram { | ||
| reg = <0x20000000 0x7fe40>; | ||
| ranges = <0x0 0x20000000 0x7fe40>; | ||
| }; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.