mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-23 03:50:28 +08:00
9 lines
160 B
C
9 lines
160 B
C
#include "quantum.h"
|
|
|
|
void bootloader_jump(void) {
|
|
uint32_t *magic_address = (void*)0x20000FFC;
|
|
*magic_address = 0x626c6472;
|
|
|
|
NVIC_SystemReset();
|
|
}
|