diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-04-29 22:19:40 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-29 22:19:40 -0400 |
commit | 0656f2fa10e25e160617c3e5d14cfbae35dd9c8d (patch) | |
tree | d93e122e84313a89b84ea2a1011093398cf75ab3 /keyboard/atomic/atomic.h | |
parent | 9ab7098c834ffe601ad5c39759acfddabbd6373f (diff) | |
download | firmware-0656f2fa10e25e160617c3e5d14cfbae35dd9c8d.tar.gz firmware-0656f2fa10e25e160617c3e5d14cfbae35dd9c8d.tar.bz2 firmware-0656f2fa10e25e160617c3e5d14cfbae35dd9c8d.zip |
moves backlight functionality to keyboard files and updates template makefile
previously there were two backlight.c files (bad)
Diffstat (limited to 'keyboard/atomic/atomic.h')
-rw-r--r-- | keyboard/atomic/atomic.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboard/atomic/atomic.h b/keyboard/atomic/atomic.h index d5461e424..0c7aeb1cc 100644 --- a/keyboard/atomic/atomic.h +++ b/keyboard/atomic/atomic.h @@ -3,8 +3,11 @@ #include "matrix.h" #include "keymap_common.h" -#include "backlight.h" +#ifdef BACKLIGHT_ENABLE + #include "backlight.h" +#endif #include <stddef.h> +#include <avr/io.h> // This a shortcut to help you visually see your layout. // The following is an example using the Planck MIT layout |