diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-09-15 22:12:25 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-09-15 22:12:25 -0400 |
commit | 024f0455deefaa9d47cae255a9ba098650c3841f (patch) | |
tree | f28833537e751e980574ddf29c6a60274a4de0f1 | |
parent | 6198fed5664a05115fe2e02281de4cbd8052253c (diff) |
[core] fix rgb source include
-rw-r--r-- | common_features.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index 6f29c97c9a..117f84260b 100644 --- a/common_features.mk +++ b/common_features.mk @@ -93,12 +93,13 @@ endif ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) OPT_DEFS += -DRGBLIGHT_ENABLE + SRC += $(QUANTUM_DIR)/rgblight.c CIE1931_CURVE = yes LED_BREATHING_TABLE = yes ifeq ($(strip $(RGBLIGHT_CUSTOM_DRIVER)), yes) OPT_DEFS += -DRGBLIGHT_CUSTOM_DRIVER else - SRC += ws2812.c + SRC += ws2812.c endif endif |