This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

SES Debugging the bootloader

I need to know how to set up the SES debugger to continue debugging when the program jumps from application into the bootloader.

nRF52832 SDK v15.3

Using the following code to jump to the bootloader:

    // Write to the register and reset the device
    NRF_POWER->GPREGRET = BOOTLOADER_DFU_START;
    nrf_delay_ms(500);
    NVIC_SystemReset();

Currently once it reaches the reset, the debugger crashes.

Related