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 01ceb82789..09d01debd3 100644 --- a/common_features.mk +++ b/common_features.mk @@ -278,6 +278,8 @@ ifeq ($(strip $(WS2812_DRIVER_REQUIRED)), yes) $(error WS2812_DRIVER="$(WS2812_DRIVER)" is not a valid WS2812 driver) endif + OPT_DEFS += -DWS2812_DRIVER_$(strip $(shell echo $(WS2812_DRIVER) | tr '[:lower:]' '[:upper:]')) + ifeq ($(strip $(WS2812_DRIVER)), bitbang) SRC += ws2812.c else |