Skip to content

Commit

Permalink
applications: nrf_desktop: Align RRAM configuration for nRF54L15 PDK
Browse files Browse the repository at this point in the history
Change aligns RRAM configuration for nRF54L15 PDK. The application does
not use cpuflpr core, so whole memory can be used by cpuapp.

Jira: NCSDK-27508

Signed-off-by: Marek Pieta <[email protected]>
  • Loading branch information
MarekPieta committed May 21, 2024
1 parent 55a11d9 commit c083d30
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
status = "okay";
};

/* Application does not use cpuflpr core. Assign whole RRAM to cpuapp. */
&cpuapp_rram {
reg = < 0x0 DT_SIZE_K(1524) >;
};

/ {
/* Disable pwmleds and redefine them to align configuration with CAF LEDs requirements.
* The configuration needs to match the used board revision (v0.2.0).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
status = "okay";
};

/* Application does not use cpuflpr core. Assign whole RRAM to cpuapp. */
&cpuapp_rram {
reg = < 0x0 DT_SIZE_K(1524) >;
};

/ {
/* Disable pwmleds and redefine them to align configuration with CAF LEDs requirements.
* The configuration needs to match the used board revision (v0.3.0).
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

/* Application does not use cpuflpr core. Assign whole RRAM to cpuapp. */
&cpuapp_rram {
reg = < 0x0 DT_SIZE_K(1524) >;
};

0 comments on commit c083d30

Please sign in to comment.