diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2021-07-11 16:51:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 16:51:45 +0900 |
commit | 877e81f9633d1a1f73e741a04f08cf2fb9522974 (patch) | |
tree | ecf4a533613525537600cb5c929a637b07e9c47b /keyboards/helix | |
parent | 0a8accae063460f20ca83c559afdfce0fa2d00f3 (diff) | |
download | qmk_firmware-877e81f9633d1a1f73e741a04f08cf2fb9522974.tar.gz qmk_firmware-877e81f9633d1a1f73e741a04f08cf2fb9522974.zip |
Fixed the Helix keymap 'fraanrosi' compile issues (#13514)
According to `helix/rev2/keymaps/fraanrosi/readme.md`, this keymap should be compiled with the following command:
```
make helix/rev2/under:fraanrosi
```
Therefore, when compiling all helix keymaps with the following command, an error occurs when compiling `fraanrosi`.
```
make helix:all
```
Therefore, add `LED_UNDERGLOW_ENABLE = yes` to `keymaps/fraanrosi/rules.mk` to suppress the error.
Diffstat (limited to 'keyboards/helix')
-rw-r--r-- | keyboards/helix/rev2/keymaps/fraanrosi/rules.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/keyboards/helix/rev2/keymaps/fraanrosi/rules.mk b/keyboards/helix/rev2/keymaps/fraanrosi/rules.mk index d657133e6..462a83f6e 100644 --- a/keyboards/helix/rev2/keymaps/fraanrosi/rules.mk +++ b/keyboards/helix/rev2/keymaps/fraanrosi/rules.mk | |||
@@ -20,6 +20,9 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
20 | LED_ANIMATIONS = yes # LED animations | 20 | LED_ANIMATIONS = yes # LED animations |
21 | # IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone) | 21 | # IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone) |
22 | 22 | ||
23 | LED_BACK_ENABLE = no | ||
24 | LED_UNDERGLOW_ENABLE = yes | ||
25 | |||
23 | # convert Helix-specific options (that represent combinations of standard options) | 26 | # convert Helix-specific options (that represent combinations of standard options) |
24 | # into QMK standard options. | 27 | # into QMK standard options. |
25 | include $(strip $(KEYBOARD_LOCAL_FEATURES_MK)) | 28 | include $(strip $(KEYBOARD_LOCAL_FEATURES_MK)) |