diff options
author | Joel Challis <git@zvecr.com> | 2020-01-14 22:03:48 +0000 |
---|---|---|
committer | fauxpark <fauxpark@gmail.com> | 2020-01-15 09:03:48 +1100 |
commit | 61cd180163cbe1324bde25abcc95d0c380459b70 (patch) | |
tree | 04451c8e5d9ab28439f842a00ce1e9a09b1447ef | |
parent | b69b1ad4fcd9f011153973f2ccec004ea004ecb6 (diff) | |
download | qmk_firmware-61cd180163cbe1324bde25abcc95d0c380459b70.tar.gz qmk_firmware-61cd180163cbe1324bde25abcc95d0c380459b70.zip |
Add ws2812 driver type define (#7888)
-rw-r--r-- | common_features.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 01ceb8278..09d01debd 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -278,6 +278,8 @@ ifeq ($(strip $(WS2812_DRIVER_REQUIRED)), yes) | |||
278 | $(error WS2812_DRIVER="$(WS2812_DRIVER)" is not a valid WS2812 driver) | 278 | $(error WS2812_DRIVER="$(WS2812_DRIVER)" is not a valid WS2812 driver) |
279 | endif | 279 | endif |
280 | 280 | ||
281 | OPT_DEFS += -DWS2812_DRIVER_$(strip $(shell echo $(WS2812_DRIVER) | tr '[:lower:]' '[:upper:]')) | ||
282 | |||
281 | ifeq ($(strip $(WS2812_DRIVER)), bitbang) | 283 | ifeq ($(strip $(WS2812_DRIVER)), bitbang) |
282 | SRC += ws2812.c | 284 | SRC += ws2812.c |
283 | else | 285 | else |