qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

mk02.c (160B)


      1 #include "quantum.h"
      2 
      3 void bootloader_jump(void) {
      4     uint32_t *magic_address = (void*)0x20000FFC;
      5     *magic_address = 0x626c6472;
      6 
      7     NVIC_SystemReset();
      8 }