forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openthread: samples: Adjust nrf54h cpuapp partion size.
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
Przemyslaw Bida
committed
Jun 5, 2024
1 parent
1be0a3b
commit a5f00db
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
samples/openthread/cli/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
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,45 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
|
||
|
||
/delete-node/ &cpuapp_rx_partitions; | ||
/delete-node/ &cpuapp_rw_partitions; | ||
|
||
&mram1x { | ||
erase-block-size = < 0x1000 >; | ||
write-block-size = < 0x10 >; | ||
|
||
cpuapp_rx_partitions: cpuapp-rx-partitions { | ||
compatible = "nordic,owned-partitions", "fixed-partitions"; | ||
status = "okay"; | ||
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)>; | ||
}; | ||
}; | ||
|
||
cpuapp_rw_partitions: cpuapp-rw-partitions { | ||
compatible = "nordic,owned-partitions", "fixed-partitions"; | ||
status = "okay"; | ||
perm-read; | ||
perm-write; | ||
#address-cells = < 0x1 >; | ||
#size-cells = < 0x1 >; | ||
|
||
storage_partition: partition@198000 { | ||
reg = < 0x198000 DT_SIZE_K(32) >; | ||
}; | ||
}; | ||
}; |