Hello.
I am attempting to run the Matter Template app sample on the Adafruit Feather nRF52840 Express board.
I created a pm_static.yml
file with the following configuration
mcuboot: address: 0x0 size: 0x7000 region: flash_primary mcuboot_pad: address: 0x7000 size: 0x200 app: address: 0x7200 size: 0xefe00 mcuboot_primary: orig_span: &id001 - mcuboot_pad - app span: *id001 address: 0x7000 size: 0xf0000 region: flash_primary mcuboot_primary_app: orig_span: &id002 - app span: *id002 address: 0x7200 size: 0xefe00 factory_data: address: 0xf7000 size: 0x1000 region: flash_primary settings_storage: address: 0xf8000 size: 0x8000 region: flash_primary mcuboot_secondary: address: 0x0 size: 0xf0000 device: GD25Q16 region: external_flash external_flash: address: 0xf0000 size: 0x110000 device: GD25Q16 region: external_flash
I also created .overlay
file with the following content:
/ {
chosen {
nordic,pm-ext-flash = &gd25q16;
};
};
I built the application using a configuration for the adafruit_feather_nrf52840
target with sysbuild enabled, and the build process completed successfully. After flashing the firmware to the board, it does not show any logs via UART or RTT, and the device does not advertise itself. I suspect the application is not running correctly.
Could you help me identify what might be causing this issue or guide me on how to proceed with debugging?
Thank you.