STM32F103C8T6 Cannot jump to boot from application
I'd like to do a jump to bootloader from application on STM32 Blue Pill STM32F103C8T6. My approach looks that: - Write to BKP->DR1 any value; - Do a reset (NVIC_SystemReset());- A the beginning of main, check if BKP->DR1 != 0, than set it to 0 and ju...