rev2.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #pragma once
  2. #include "lets_split.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. // Standard Keymap
  15. // (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left)
  16. #define LAYOUT( \
  17. L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
  18. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
  19. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
  20. L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35 \
  21. ) \
  22. { \
  23. { L00, L01, L02, L03, L04, L05 }, \
  24. { L10, L11, L12, L13, L14, L15 }, \
  25. { L20, L21, L22, L23, L24, L25 }, \
  26. { L30, L31, L32, L33, L34, L35 }, \
  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. }
  32. #else
  33. // Keymap with right side flipped
  34. // (TRRS jack on both halves are to the right)
  35. #define LAYOUT( \
  36. L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
  37. L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
  38. L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
  39. L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35 \
  40. ) \
  41. { \
  42. { L00, L01, L02, L03, L04, L05 }, \
  43. { L10, L11, L12, L13, L14, L15 }, \
  44. { L20, L21, L22, L23, L24, L25 }, \
  45. { L30, L31, L32, L33, L34, L35 }, \
  46. { R00, R01, R02, R03, R04, R05 }, \
  47. { R10, R11, R12, R13, R14, R15 }, \
  48. { R20, R21, R22, R23, R24, R25 }, \
  49. { R30, R31, R32, R33, R34, R35 } \
  50. }
  51. #endif
  52. #define LAYOUT_ortho_4x12 LAYOUT