2021-01-18 09:07 PM
Using previous post "STM32H7-bootloader-jump-from-application" and change bootloader memory to 0x1FFF6800. Currently running STM32CubeIDE I see it execute SysMemBootJump but with debugger going immediately (second goes pass) return to HAL_Init(); I was expect it to stay in bootloader waiting for STM32Flash commands.
2021-01-20 01:57 PM
My bad,
Bootloader is in System Memory 0x1FFF0000, not Securable Memory Area 0x1FFF6800.
In addition HAL give nice way switching to System Memory:
__HAL_SYSCFG_REMAPMEMORY_SYSTEMFLASH();
Colin.