atomic.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef ATOMIC_H
  2. #define ATOMIC_H
  3. #include "matrix.h"
  4. #include "keymap_common.h"
  5. #ifdef BACKLIGHT_ENABLE
  6. #include "backlight.h"
  7. #endif
  8. #include <stddef.h>
  9. #include <avr/io.h>
  10. // This a shortcut to help you visually see your layout.
  11. // The following is an example using the Planck MIT layout
  12. // The first section contains all of the arguements
  13. // The second converts the arguments into a two-dimensional array
  14. #define KEYMAP_SEMI_STANDARD( \
  15. K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0E, \
  16. K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \
  17. K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \
  18. K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3C, K3D, K3E, \
  19. K40, K41, K43, K46, K4A, K4B, K4C, K4D, K4E \
  20. ) { \
  21. { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, KC_NO, K0E }, \
  22. { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \
  23. { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, K2E }, \
  24. { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, KC_NO, K3C, K3D, K3E }, \
  25. { K40, K41, KC_NO, K43, KC_NO, KC_NO, K46, KC_NO, KC_NO, KC_NO, K4A, K4B, K4C, K4D, K4E } \
  26. }
  27. void matrix_init_user(void);
  28. void matrix_scan_user(void);
  29. void process_action_user(keyrecord_t *record);
  30. void led_set_user(uint8_t usb_led);
  31. void backlight_init_ports(void);
  32. #endif