You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

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