Resolved! Custom bootloader jump to application in STM32H7A3
hello, I use STM32CubeIDE 1.16.0 and working on a custom bootloader to jump to application at address 0x08100000, here're the jump code below: void jump_to_application(uint32_t flash_address) { void (*app_reset_handler)(void); uint32_t main_st...