Solved
BLUENRG-2 ST Bootloader
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
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
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();Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.