rev1.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef REV1_H
  2. #define REV1_H
  3. #include "qwertyydox.h"
  4. //void promicro_bootloader_jmp(bool program);
  5. #include "quantum.h"
  6. #ifdef USE_I2C
  7. #include <stddef.h>
  8. #ifdef __AVR__
  9. #include <avr/io.h>
  10. #include <avr/interrupt.h>
  11. #endif
  12. #endif
  13. //void promicro_bootloader_jmp(bool program);
  14. #define LAYOUT( \
  15. L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
  16. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, R16, \
  17. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, R26, \
  18. L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36 \
  19. ) \
  20. { \
  21. { L00, L01, L02, L03, L04, L05, L06 }, \
  22. { L10, L11, L12, L13, L14, L15, KC_NO }, \
  23. { L20, L21, L22, L23, L24, L25, KC_NO }, \
  24. { L30, L31, L32, L33, L34, L35, L36 }, \
  25. { R06, R05, R04, R03, R02, R01, R00 }, \
  26. { R16, R15, R14, R13, R12, R11, R10 }, \
  27. { R26, R25, R24, R23, R22, R21, R20, }, \
  28. { R36, R35, R34, R33, R32, R31, R30 } \
  29. }
  30. #endif