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.

60 lines
1.9 KiB

  1. #pragma once
  2. #include "lily58.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. #ifndef FLIP_HALF
  14. #define LAYOUT( \
  15. L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
  16. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
  17. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
  18. L30, L31, L32, L33, L34, L35, L45, R40, R30, R31, R32, R33, R34, R35, \
  19. L41, L42, L43, L44, R41, R42, R43, R44 \
  20. ) \
  21. { \
  22. { L00, L01, L02, L03, L04, L05 }, \
  23. { L10, L11, L12, L13, L14, L15 }, \
  24. { L20, L21, L22, L23, L24, L25 }, \
  25. { L30, L31, L32, L33, L34, L35 }, \
  26. { KC_NO, L41, L42, L43, L44, L45 }, \
  27. { R05, R04, R03, R02, R01, R00 }, \
  28. { R15, R14, R13, R12, R11, R10 }, \
  29. { R25, R24, R23, R22, R21, R20 }, \
  30. { R35, R34, R33, R32, R31, R30 }, \
  31. { KC_NO, R44, R43, R42, R41, R40 } \
  32. }
  33. #else
  34. // Keymap with right side flipped
  35. // (TRRS jack on both halves are to the right)
  36. #define LAYOUT( \
  37. L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
  38. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
  39. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
  40. L30, L31, L32, L33, L34, L35, L45, R30, R31, R32, R33, R34, R35, R45, \
  41. L41, L42, L43, L44, R41, R42, R43, R44 \
  42. ) \
  43. { \
  44. { L00, L01, L02, L03, L04, L05 }, \
  45. { L10, L11, L12, L13, L14, L15 }, \
  46. { L20, L21, L22, L23, L24, L25 }, \
  47. { L30, L31, L32, L33, L34, L35 }, \
  48. { KC_NO, L41, L42, L43, L44, L45 }, \
  49. { R00, R01, R02, R03, R04, R05 }, \
  50. { R10, R11, R12, R13, R14, R15 }, \
  51. { R20, R21, R22, R23, R24, R25 }, \
  52. { R30, R31, R32, R33, R34, R35 }, \
  53. { KC_NO, R41, R42, R43, R44, R45 } \
  54. }
  55. #endif