wm1.c (246B)
1 #include "quantum.h" 2 3 void bootloader_jump(void) { 4 // This board doesn't use the "standard" stm32duino bootloader, and no information is available regarding how to enter bootloader mode. All we can do here is reset. 5 NVIC_SystemReset(); 6 }