33 lines
700 B
YAML
33 lines
700 B
YAML
mcuboot:
|
|
address: 0x0
|
|
size: 0xC000
|
|
region: flash_primary
|
|
|
|
# Primary Slot: Start bleibt 0xC000, Größe jetzt 200KB (0x32000)
|
|
mcuboot_primary:
|
|
address: 0xC000
|
|
size: 0x32000
|
|
region: flash_primary
|
|
|
|
mcuboot_pad:
|
|
address: 0xC000
|
|
size: 0x200
|
|
region: flash_primary
|
|
|
|
# Die App startet nach dem Padding des Primary Slots
|
|
app:
|
|
address: 0xC200
|
|
size: 0x31E00 # (0x32000 - 0x200)
|
|
region: flash_primary
|
|
|
|
# Secondary Slot: Startet jetzt bei 0xC000 + 0x32000 = 0x3E000
|
|
mcuboot_secondary:
|
|
address: 0x3E000
|
|
size: 0x32000
|
|
region: flash_primary
|
|
|
|
# External Flash bleibt unverändert
|
|
littlefs_storage:
|
|
address: 0x0
|
|
size: 0x800000
|
|
region: external_flash |