Skip to content

Commit 44ff15a

Browse files
eivindj-nordiclemrey
authored andcommitted
boards: correct cpuapp_sram for nRF54l15 boards
Without flipper we can use the full 256k for cpuapp_sram. This resolves a warning in VS Code. Signed-off-by: Eivind Jølsgard <[email protected]>
1 parent d27ae21 commit 44ff15a

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

boards/nordic/lite_nrf54l15/lite_nrf54l15_cpuapp_common.dtsi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
};
1414
};
1515

16+
/* Adjust the cpuapp_sram node to use all of SRAM for application CPU. */
17+
&cpuapp_sram {
18+
reg = <0x20000000 DT_SIZE_K(256)>;
19+
ranges = <0x0 0x20000000 DT_SIZE_K(256)>;
20+
};
1621

1722
&grtc {
1823
owned-channels = <0 1 2 3 4 5 6 7 8 9 10 11>;

boards/nordic/lite_nrf54l15_template/cpuapp_common.dtsi

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
};
1414
};
1515

16-
16+
/* Adjust the cpuapp_sram node to use all of SRAM for application CPU. */
17+
&cpuapp_sram {
18+
reg = <0x20000000 DT_SIZE_K(256)>;
19+
ranges = <0x0 0x20000000 DT_SIZE_K(256)>;
20+
};
1721

1822
&grtc {
1923
owned-channels = <0 1 2 3 4 5 6 7 8 9 10 11>;

0 commit comments

Comments
 (0)