mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 00:16:41 +06:00
7 lines
246 B
C
7 lines
246 B
C
#include "quantum.h"
|
|
|
|
void bootloader_jump(void) {
|
|
// 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.
|
|
NVIC_SystemReset();
|
|
}
|