qmk_firmware

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

retro_refit.c (316B)


      1 #include "quantum.h"
      2 
      3 void matrix_init_kb(void) {
      4     // put your keyboard start-up code here
      5     // runs once when the firmware starts up
      6 
      7     // Disable status LED on KB, enable status LED on Teensy (KB_STATUS = !TEENSY_STATUS)
      8     gpio_set_pin_output(D6);
      9     gpio_write_pin_high(D6);
     10 
     11     matrix_init_user();
     12 };