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.

21 lines
242 B

  1. #ifndef REV1_H
  2. #define REV1_H
  3. #include "../launchpad.h"
  4. #include "quantum.h"
  5. #define LAYOUT( \
  6. K00, K01, \
  7. K10, K11, \
  8. K20, K21, \
  9. K30, K31 \
  10. ) \
  11. { \
  12. { K00, K01 }, \
  13. { K10, K11 }, \
  14. { K20, K21 }, \
  15. { K30, K31 } \
  16. }
  17. #endif