2020-11-18 12:15 AM
What is ST system bootloader address. I want to jump the application code to system uart bootloader as the boot pin is not available as of now.
Thanks
@Winfred LU @Eleon BORLINI
Solved! Go to Solution.
2020-11-22 09:36 PM
UART bootloader is embedded in ROM, located at 0x10000020.
It shall be possible to jump to the bootloader with something like below code:
void (*bootloader)(void);
bootloader = (void(*)(void))(*(volatile uint32_t*)0x10000020);
bootloader();
2020-11-22 09:36 PM
UART bootloader is embedded in ROM, located at 0x10000020.
It shall be possible to jump to the bootloader with something like below code:
void (*bootloader)(void);
bootloader = (void(*)(void))(*(volatile uint32_t*)0x10000020);
bootloader();
2020-11-22 11:04 PM
I will check it and get back to you.
Thanks Winfred.