After Flashing via nrfConnect via desktop , application does not restart

Hello team,

I have the issue in some samples of nrf5340, after I successful erase and flash, the controller seem to be stuck at bootloader.

I observed the below image on nrfConnect Programmer app after flashing and reading back the firmware.

Can you please explain to me what this means as this does not seem to be usual?

In usual flashing the regions read from the controller is almost the same as the files flashed.

And why is the controller stuck at Bootloader

Parents Reply
    1. is it a dk baord or custom board.
    2. Use west flash instead of manual hex flashing, as it handles multi-image flashing correctly.

      Using nrfutil manually (flash both cores separately):

      1. Flash the network core:
      nrfutil device program --firmware zephyr.hex --options chip_erase_mode=ERASE_ALL --core Network
          
      1. Flash the application core:
      nrfutil device program --firmware zephyr.hex --options chip_erase_mode=ERASE_ALL
          
      1. Reset the board:
      nrfutil device reset --reset-kind=RESET_PIN
          
Children
Related