diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2020-09-06 18:04:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 15:04:29 -0700 |
commit | 6c3e404839bec5f04e8f0d9eef4f0ac98b16e987 (patch) | |
tree | 05d19ae0db38079c61807710c0b8b48bf8b71525 /users/stanrc85/rules.mk | |
parent | f7ccbfcea88e127319a4665a6c8ca67883854030 (diff) |
[Keymap] Add indicator light bootup fanfare (#10158)
* Add indicator light bootup fanfare
* move fanfare code to new file
* fanfare code in new file and remove unused boards
* new startup fanfare code
* add lock/unlock indicator animation
* input key presses before changing lights
* remove old code
Diffstat (limited to 'users/stanrc85/rules.mk')
-rw-r--r-- | users/stanrc85/rules.mk | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/users/stanrc85/rules.mk b/users/stanrc85/rules.mk index 5c572c0af3..54f0f76260 100644 --- a/users/stanrc85/rules.mk +++ b/users/stanrc85/rules.mk @@ -10,24 +10,10 @@ NKRO_ENABLE = no SRC += stanrc85.c -ifeq ($(strip $(KEYBOARD)), 1upkeyboards/1up60hse) - SRC += layer_rgb.c - VIA_ENABLE = yes - LTO_ENABLE = yes -endif -ifeq ($(strip $(KEYBOARD)), dz60) - SRC += layer_rgb.c - VIA_ENABLE = yes - LTO_ENABLE = yes -endif -ifeq ($(strip $(KEYBOARD)), projectkb/alice/rev1) - SRC += rgblight_layers.c - VIA_ENABLE = yes - LTO_ENABLE = no - VELOCIKEY_ENABLE=yes -endif ifeq ($(strip $(KEYBOARD)), projectkb/alice/rev2) SRC += rgblight_layers.c + SRC += startup_fanfare.c + OPT_DEFS += -DHAS_INDICATORS VIA_ENABLE = yes LTO_ENABLE = no VELOCIKEY_ENABLE=yes |