The swap algorithm is executed every time the device is powered on, and the swap type is "perm".

Hello, 

We use nrf54l15dk + MX25R8035F external flash to do the matter development on NCS2.9.0, and we meet some problems:

1. when the matter.ota is 1003KB, takes about 10min30s to get the new fw, and 3min18s to do the swap algorithm, is it a normal speed?

2. The swap algorithm is executed every time the device is powered on, and the swap type is "perm". Following is my log:

Parents Reply Children
  • here is my pm_static.yml:

    mcuboot:
      address: 0x0
      region: flash_primary
      size: 0xD000
    mcuboot_pad:
      address: 0xD000
      region: flash_primary
      size: 0x800
    app:
      address: 0xD800
      region: flash_primary
      size: 0xFA000
    mcuboot_primary:
      orig_span: &id001
      - mcuboot_pad
      - app
      span: *id001
      address: 0xD000
      region: flash_primary
      size: 0xFA800
    mcuboot_primary_app:
      orig_span: &id002
      - app
      span: *id002
      address: 0xD800
      region: flash_primary
      size: 0xFA000
    factory_data:
      address: 0x107800
      region: flash_primary
      size: 0x1000
    settings_storage:
      address: 0x108800
      region: flash_primary
      size: 0xA000
    fillter_storage:
      address: 0x112800
      region: flash_primary
      size: 0x6A800
    mcuboot_secondary:
      address: 0x0
      orig_span: &id003
      - mcuboot_secondary_pad
      - mcuboot_secondary_app
      region: external_flash
      size: 0xFA800
      span: *id003
    mcuboot_secondary_pad:
      region: external_flash
      address: 0x0
      size: 0x800
    mcuboot_secondary_app:
      region: external_flash
      address: 0x800
      size: 0xFA000
    external_flash:
      address: 0xFA800
      size: 0x5800
      device: MX25R80
      region: external_flash
Related