diff options
author | scott-t-wilson <scott.t.wilson@gmail.com> | 2018-02-23 13:16:10 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-02-23 13:16:10 -0500 |
commit | 3f3d0551cd5f2ca0b72fc4b24d1d7955ffa8cb78 (patch) | |
tree | 0abed9c5a39693745060f75606f67771051f041c /keyboards/lfkeyboards/lfk78/keymaps/default | |
parent | f7461748744c1e3a5bae3b7a54d5b0d8439606e6 (diff) | |
download | qmk_firmware-3f3d0551cd5f2ca0b72fc4b24d1d7955ffa8cb78.tar.gz qmk_firmware-3f3d0551cd5f2ca0b72fc4b24d1d7955ffa8cb78.zip |
Lfkeyboards updates (#2421)
* Update smk65 fn layer, add iso
* Added Fn layer to ISO keymap
* Fix error when backlight is disabled but lighting isn't
* Remove broke mini1800 iso map
* Add keymaps
* Add LFKPad
* Add split delete to lfk78
* Typo
* Custom keymap
Diffstat (limited to 'keyboards/lfkeyboards/lfk78/keymaps/default')
-rw-r--r-- | keyboards/lfkeyboards/lfk78/keymaps/default/rules.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/keyboards/lfkeyboards/lfk78/keymaps/default/rules.mk b/keyboards/lfkeyboards/lfk78/keymaps/default/rules.mk index dd973eac3d..20030f17d0 100644 --- a/keyboards/lfkeyboards/lfk78/keymaps/default/rules.mk +++ b/keyboards/lfkeyboards/lfk78/keymaps/default/rules.mk @@ -19,8 +19,9 @@ RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not q SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend TAP_DANCE_ENABLE = no -ISSI_ENABLE = yes # If the I2C pullup resistors aren't install this must be disabled -WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms +ISSI_ENABLE = yes # If the I2C pullup resistors aren't install this must be disabled +WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms +CAPSLOCK_LED = no # Toggle back light LED of Caps Lock ifndef QUANTUM_DIR include ../../../../Makefile @@ -34,6 +35,10 @@ ifeq ($(strip $(WATCHDOG_ENABLE)), yes) TMK_COMMON_DEFS += -DWATCHDOG_ENABLE endif +ifeq ($(strip $(CAPSLOCK_LED)), yes) + TMK_COMMON_DEFS += -DCAPSLOCK_LED +endif + # Override the LFK78 hardware version: # # B - first public release, uses atmega32u4, has audio, ISSI matrix split between RGB and backlight |