diff options
author | Yang Liu <i@yangliu.name> | 2016-01-24 17:05:47 -0800 |
---|---|---|
committer | Yang Liu <i@yangliu.name> | 2016-01-24 17:05:47 -0800 |
commit | ba9ac457b2159097ecfd9848c5171c52e3a68260 (patch) | |
tree | 3e24c67dcac80ea1628caf9f1791f8296fa89c2e /keyboard/planck/Makefile | |
parent | 0a40654b82520849fcc587e8fb76c823378649a6 (diff) | |
download | qmk_firmware-ba9ac457b2159097ecfd9848c5171c52e3a68260.tar.gz |
Integrate WS2812 code into quantum core
Diffstat (limited to 'keyboard/planck/Makefile')
-rw-r--r-- | keyboard/planck/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/keyboard/planck/Makefile b/keyboard/planck/Makefile index d37005260..7619399b9 100644 --- a/keyboard/planck/Makefile +++ b/keyboard/planck/Makefile @@ -143,18 +143,12 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality # AUDIO_ENABLE = YES # Audio output on port C6 # UNICODE_ENABLE = YES # Unicode # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID -RGBLIGHT_ENABLE = yes # Enable WS2812 bottom RGB light +RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with MIDI at the same time. ifdef BACKLIGHT_ENABLE SRC += backlight.c endif -ifdef RGBLIGHT_ENABLE - SRC += light_ws2812.c - SRC += rgblight.c - OPT_DEFS += -DRGBLIGHT_ENABLE -endif - # Optimize size but this may cause error "relocation truncated to fit" #EXTRALDFLAGS = -Wl,--relax |