-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: matter: Align nRF54L15 internal pm_static
We need to reach 35% of the compression rate, so we need to align the nRF54L15 internal partition map in the pm_static file. Signed-off-by: Arkadiusz Balys <[email protected]>
- Loading branch information
1 parent
e2cfdfd
commit 90bc8bd
Showing
2 changed files
with
19 additions
and
18 deletions.
There are no files selected for viewing
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
33 changes: 17 additions & 16 deletions
33
samples/matter/template/pm_static_nrf54l15dk_nrf54l15_cpuapp_internal.yml
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 |
---|---|---|
@@ -1,51 +1,52 @@ | ||
mcuboot: | ||
address: 0x0 | ||
region: flash_primary | ||
size: 0xa000 | ||
size: 0xD000 | ||
mcuboot_pad: | ||
address: 0xa000 | ||
address: 0xD000 | ||
region: flash_primary | ||
size: 0x800 | ||
app: | ||
address: 0xa800 | ||
address: 0xD800 | ||
region: flash_primary | ||
size: 0xd6800 | ||
size: 0xD8800 | ||
mcuboot_primary: | ||
address: 0xa000 | ||
address: 0xD000 | ||
orig_span: &id001 | ||
- app | ||
- mcuboot_pad | ||
region: flash_primary | ||
size: 0xd7000 | ||
size: 0xD9000 | ||
span: *id001 | ||
mcuboot_primary_app: | ||
address: 0xa800 | ||
address: 0xD800 | ||
orig_span: &id002 | ||
- app | ||
region: flash_primary | ||
size: 0xd6800 | ||
size: 0xD8800 | ||
span: *id002 | ||
mcuboot_secondary: | ||
address: 0xe1000 | ||
address: 0xE6000 | ||
orig_span: &id003 | ||
- mcuboot_secondary_pad | ||
- mcuboot_secondary_app | ||
region: flash_primary | ||
size: 0x90000 | ||
size: 0x8C000 | ||
span: *id003 | ||
mcuboot_secondary_pad: | ||
region: flash_primary | ||
address: 0xe1000 | ||
address: 0xE6000 | ||
size: 0x800 | ||
# Compression rate 35.10% | ||
mcuboot_secondary_app: | ||
region: flash_primary | ||
address: 0xe1800 | ||
size: 0x8f800 | ||
address: 0xE6800 | ||
size: 0x8B800 | ||
factory_data: | ||
address: 0x171000 | ||
address: 0x172000 | ||
region: flash_primary | ||
size: 0x1000 | ||
settings_storage: | ||
address: 0x172000 | ||
address: 0x173000 | ||
region: flash_primary | ||
size: 0xb000 | ||
size: 0xA000 |