diff options
Diffstat (limited to 'quantum/template/template.h')
| -rw-r--r-- | quantum/template/template.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h index ba91abac3..22742105a 100644 --- a/quantum/template/template.h +++ b/quantum/template/template.h @@ -3,7 +3,10 @@ #include "matrix.h" #include "keymap_common.h" -#include "backlight.h" +#ifdef BACKLIGHT_ENABLE + #include "backlight.h" +#endif +#include <avr/io.h> #include <stddef.h> // This a shortcut to help you visually see your layout. @@ -17,10 +20,11 @@ { \ { k00, k01, k02 }, \ { k10, KC_NO, k11 }, \ -} +} void matrix_init_user(void); void matrix_scan_user(void); +void process_action_user(keyrecord_t *record); void led_set_user(uint8_t usb_led); -#endif
\ No newline at end of file +#endif |
