2022-03-18 02:05 AM
Hi,
I have 2 partitions on the STM32L433cct6 :
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
2022-03-18 04:18 AM
Use a debugger, follow the transfer of control.
Make sure SCB->VTOR gets set to the new address on the otherside.
Be aware of what interrupts are active, and what memory structures are used and there state.
Perhaps avoid reinitializing PLLs and clocks already in functional state.
2022-03-18 05:34 AM
Hi,
Thank you for your reply.
I forgot to relocate the vector table... So I uncommented the following line :
#define USER_VECT_TAB_ADDRESS
I have another problem : when I place "Start_Application" function before "HAL_Init", it works fine. But, when I put the "Start_Application" function after "HAL_Init", it doesn't work.
Do you know why ?
Best regards
2022-03-21 01:26 AM
Hi,
Any ideas ?
2022-03-23 04:32 AM
Hello @MMerc.1,
Make sure to define the right offset of the vector table.
M Aymen