Question
STM32L433 IAP
Hi,
I have 2 partitions on the STM32L433cct6 :
- IAP (to upgrade via USB) : 0x08000000 - 0x0800C000
- Application : 0x0800C000 - 0x08040000
I have a function to jump to the application :
/* Jump to user application */
JumpAddress = *(__IO uint32_t*) (USBD_DFU_APP_DEFAULT_ADD + 4);
Jump_To_Application = (pFunction) JumpAddress;
/* Initialize user application's Stack Pointer */
__set_MSP(*(__IO uint32_t*) USBD_DFU_APP_DEFAULT_ADD);
Jump_To_Application();But it doesn't work.
Do you have any ideas ?
Best regards
