diff options
author | Daniel Shields <daniel.shields@bcs.org> | 2019-09-25 17:21:07 +0100 |
---|---|---|
committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-09-25 09:21:07 -0700 |
commit | 00abe5d8edf801cad351bf428a24532ed80f652c (patch) | |
tree | 5afe96081a573c79cd8c41aa58fed26372e0fa5a /users/dshields/rules.mk | |
parent | 0f9e2659c96370377e36ddab0508498e151bfc62 (diff) | |
download | qmk_firmware-00abe5d8edf801cad351bf428a24532ed80f652c.tar.gz |
[Keymap] Various enhancements for dshields user space and keymaps. (#6816)
- Add oneshot mod/layer unlocking
- Fix Planck rev 3 backlight breathing
- Fix Planck rev 6 build with arm gcc 9.2.0
- General code clean up
Diffstat (limited to 'users/dshields/rules.mk')
-rw-r--r-- | users/dshields/rules.mk | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/users/dshields/rules.mk b/users/dshields/rules.mk index a2bec4335..06f6e5e9f 100644 --- a/users/dshields/rules.mk +++ b/users/dshields/rules.mk @@ -1,9 +1,11 @@ -MOUSEKEY_ENABLE = yes # Mouse keys(+4700) -COMMAND_ENABLE = no # Commands for debug and configuration -CONSOLE_ENABLE = no # Console for debug(+400) -EXTRAKEY_ENABLE = no -SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend -API_SYSEX_ENABLE = no +SRC += dshields.c + +MOUSEKEY_ENABLE = yes # Mouse keys(+4700) +COMMAND_ENABLE = no # Commands for debug and configuration +CONSOLE_ENABLE = no # Console for debug(+400) +EXTRAKEY_ENABLE = no +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +API_SYSEX_ENABLE = no ifeq ($(strip $(KEYBOARD)), planck/rev3) AUDIO_ENABLE = no @@ -11,6 +13,7 @@ ifeq ($(strip $(KEYBOARD)), planck/rev3) RGB_MATRIX_ENABLE = no endif ifeq ($(strip $(KEYBOARD)), planck/rev6) + CFLAGS += -Wno-error=deprecated EXTRALDFLAGS = -Wl,--build-id=none AUDIO_ENABLE = no BACKLIGHT_ENABLE = no |