Hello, I use a stm32F469BG. I create a bootloader but the jump to the function doesn't work.
I have coded the function for the jump : void vd_srv_BOOT_JumpToUserApp(uint32_t u32_AppAddr){ uint32_t temp = 0UL; volatile uint32_t u32_JumpAddr = 0UL; void (*pJumpToUserApp)(void) = (void*)0; /* Disable MPU */ // HAL_MPU_Disable(); /* Disab...