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