stm32h745 IAP JumpToApplication Error
I'm implement IAP STM32h745ziq for cm7. then seen write Download image using ST-Link utility.

my board Programming Completed Successfully!
But, I'm trying Execute the loaded application. then stopped my board.

JumpAddress = *(__IO uint32_t*) (APPLICATION_ADDRESS + 4);
/* Jump to user application */
JumpToApplication = (pFunction) JumpAddress;
/* Initialize user application's Stack Pointer */
__set_MSP(*(__IO uint32_t*) APPLICATION_ADDRESS);
JumpToApplication();
How to solve my problem?
