Keyboard firmwares for Atmel AVR and Cortex-M
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.

actionmap_common.h 337B

1234567891011121314151617
  1. #ifndef ACTIONMAP_COMMON_H
  2. #define ACTIONMAP_COMMON_H
  3. #define ACTIONMAP( \
  4. K00, K01, K02, \
  5. K10, K11, K12, \
  6. \
  7. K20, K21, K22, \
  8. K30, K31, K32 \
  9. ) { \
  10. { AC_##K00, AC_##K01, AC_##K02 }, \
  11. { AC_##K10, AC_##K11, AC_##K12 }, \
  12. \
  13. { AC_##K22, AC_##K21, AC_##K20 }, \
  14. { AC_##K32, AC_##K31, AC_##K30 } \
  15. }
  16. #endif