logo

qmk_firmware

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

main.cpp (202B)


  1. #include <Arduino.h>
  2. int main(void)
  3. {
  4. init();
  5. #if defined(USBCON)
  6. USBDevice.attach();
  7. #endif
  8. setup();
  9. for (;;) {
  10. loop();
  11. if (serialEventRun) serialEventRun();
  12. }
  13. return 0;
  14. }