diff options
author | skullY <skullydazed@gmail.com> | 2019-01-26 14:33:55 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-02-10 15:37:12 -0800 |
commit | bf2670601d29551896bab6811b9bb64de2d0ee0e (patch) | |
tree | 459467a986f6ce0fa3ef2accbfd0d43a3afffad8 /quantum/quantum.h | |
parent | 159191a8747891920aea7de2324507daa8a661fb (diff) | |
download | qmk_firmware-bf2670601d29551896bab6811b9bb64de2d0ee0e.tar.gz |
compiles, but long delay on startup and problems
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 56a6a1a99..169883609 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -28,7 +28,11 @@ #include "matrix.h" #include "keymap.h" #ifdef BACKLIGHT_ENABLE - #include "backlight.h" + #ifdef LED_MATRIX_ENABLE + #include "led_matrix.h" + #else + #include "backlight.h" + #endif #endif #ifdef RGBLIGHT_ENABLE #include "rgblight.h" |