How to jump to bootloader from application on STM32F103
Hi there,I'm trying to jump from my application to the bootloader on a STM32F103.The bootloader address is 0x1FFFF000This is my code, but unfortunately, it doesn't work:void (*f_boot_jump)();f_boot_jump = (void (*)(void)) (*((uint32_t *)(0x1FFFF000 +...