logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

retro_refit.c (316B)


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