Hi,
I try to erase 0x7F000 bootloader setting and reset MCU, then jump into bootloader,
let bootloader checked the bootloader setting CRC error, and force to execute OTA DFU.
Question:
I confirm that I have execute below function(sd_flash_page_erase).
Although erase flash function return success, some time the page of 0x7F000 did not erase success.
I insert debug message in bootloader, and J-Link Commander to read 0x7F000, it did not erase success some time.
do { err_code = 0xFFFFFFFF; SEGGER_RTT_WriteString(0, "\npE"); err_code = sd_flash_page_erase(0x7F); DebugShow4B(err_code); SEGGER_RTT_WriteString(0, "Eq\n"); } while(err_code != NRF_SUCCESS);
Thanks a lot