"After system reset, the bootloader cannot find the app."
Hi everyone,
My bootloader is located at address 0x08000000,
MEMORY
{
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 8K
ROM (rx) : ORIGIN = 0x08000000, LENGTH = 32K
}
#define VECT_TAB_OFFSET 0x00000000U
and the app is at 0x08008000.
MEMORY
{
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 256K
FLASH (rx) : ORIGIN = 0x08008000, LENGTH = 480K
}
#define VECT_TAB_OFFSET 0x00008000U
After using HAL_NVIC_SystemReset(), the system restarts, runs the bootloader, and jumps to address 0x08008000 to begin executing the app. However, it shows that the app cannot be found at address 0x08008000. Is my app deleted from flash memory, or is there another reason?
