Skip to content

Commit

Permalink
openthread: samples: Adjust nrf54h cpuapp partion size.
Browse files Browse the repository at this point in the history
Commit extends cpuapp partiotion size from 296K to 700K
for nrf54h20 for OT cli sample.

Signed-off-by: Przemyslaw Bida <[email protected]>
  • Loading branch information
canisLupus1313 committed Jun 5, 2024
1 parent 1be0a3b commit 5375e94
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions samples/openthread/cli/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/


/delete-node/ &cpuapp_rx_partitions;

&mram1x {

cpuapp_rx_partitions: cpuapp-rx-partitions {
compatible = "nordic,owned-partitions", "fixed-partitions";
status = "disabled";
perm-read;
perm-execute;
perm-secure;
#address-cells = <1>;
#size-cells = <1>;

cpuapp_slot0_partition: partition@a6000 {
reg = <0xa6000 DT_SIZE_K(700)>;
};

cpuppr_code_partition: partition@155000 {
reg = <0x155000 DT_SIZE_K(64)>;
};
};

};

0 comments on commit 5375e94

Please sign in to comment.