forked from mirrors/qmk_firmware
Add support for planck/rev6 to dshields keymap. (#4304)
This commit is contained in:
parent
685cec47bb
commit
d147cf5ece
1 changed files with 16 additions and 8 deletions
|
@ -9,12 +9,20 @@ EXTRAKEY_ENABLE = no
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
API_SYSEX_ENABLE = no
|
API_SYSEX_ENABLE = no
|
||||||
|
|
||||||
ifneq (,$(findstring planck/light,$(KEYBOARD)))
|
ifeq ($(strip $(KEYBOARD)), planck/rev3)
|
||||||
AUDIO_ENABLE = yes
|
AUDIO_ENABLE = no
|
||||||
BACKLIGHT_ENABLE = no
|
BACKLIGHT_ENABLE = yes
|
||||||
RGB_MATRIX_ENABLE = yes
|
RGB_MATRIX_ENABLE = no
|
||||||
else
|
|
||||||
AUDIO_ENABLE = no
|
|
||||||
BACKLIGHT_ENABLE = yes
|
|
||||||
RGB_MATRIX_ENABLE = no
|
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(strip $(KEYBOARD)), planck/rev6)
|
||||||
|
EXTRALDFLAGS = -Wl,--build-id=none
|
||||||
|
AUDIO_ENABLE = yes
|
||||||
|
BACKLIGHT_ENABLE = no
|
||||||
|
RGB_MATRIX_ENABLE = no
|
||||||
|
endif
|
||||||
|
ifeq ($(strip $(KEYBOARD)), planck/light)
|
||||||
|
AUDIO_ENABLE = yes
|
||||||
|
BACKLIGHT_ENABLE = no
|
||||||
|
RGB_MATRIX_ENABLE = yes
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue