diff options
author | Joel Challis <git@zvecr.com> | 2020-01-30 23:44:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 10:44:40 +1100 |
commit | 4139de3cc9c56a157d78e1e418893d08e3f23bde (patch) | |
tree | c1822b9710b9bfeef43c10fc4a49d24050744558 | |
parent | 7514f5124ac81ce1db51eb07a287f82d6a9bf10c (diff) | |
download | qmk_firmware-4139de3cc9c56a157d78e1e418893d08e3f23bde.tar.gz qmk_firmware-4139de3cc9c56a157d78e1e418893d08e3f23bde.zip |
Fix AVR boards which were overriding backlight without setting… (#8044)
* Add backlight custom driver to all boards not declaring it but overriding backlight
* Apply suggestions from code review
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Apply suggestions from code review
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Remove old tmk references from show_options.mk
Co-authored-by: fauxpark <fauxpark@gmail.com>
-rw-r--r-- | keyboards/amj96/config.h | 16 | ||||
-rw-r--r-- | keyboards/amj96/rules.mk | 6 | ||||
-rw-r--r-- | keyboards/clueboard/17/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/clueboard/66/rev2/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/clueboard/66/rev3/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/clueboard/66_hotswap/prototype/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/clueboard/card/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/cu75/rules.mk | 5 | ||||
-rw-r--r-- | keyboards/duck/eagle_viper/v2/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/duck/jetfire/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/duck/lightsaver/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/duck/octagon/v1/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/duck/octagon/v2/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/duck/orion/v3/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/kmac/config.h | 2 | ||||
-rw-r--r-- | keyboards/kmac/rules.mk | 2 | ||||
-rwxr-xr-x | keyboards/kmini/config.h | 2 | ||||
-rwxr-xr-x | keyboards/kmini/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/lazydesigners/dimple/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/lfkeyboards/lfk78/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/lfkeyboards/lfk87/rules.mk | 3 | ||||
-rw-r--r-- | keyboards/lfkeyboards/mini1800/rules.mk | 5 | ||||
-rw-r--r-- | show_options.mk | 2 |
23 files changed, 39 insertions, 34 deletions
diff --git a/keyboards/amj96/config.h b/keyboards/amj96/config.h index 1f1be03ce..8b56aaf7f 100644 --- a/keyboards/amj96/config.h +++ b/keyboards/amj96/config.h | |||
@@ -47,22 +47,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
47 | /* COL2ROW, ROW2COL*/ | 47 | /* COL2ROW, ROW2COL*/ |
48 | #define DIODE_DIRECTION COL2ROW | 48 | #define DIODE_DIRECTION COL2ROW |
49 | 49 | ||
50 | // #define BACKLIGHT_PIN D4 | ||
51 | // #define BACKLIGHT_BREATHING | ||
52 | // #define BACKLIGHT_LEVELS 3 | ||
53 | |||
54 | /* number of backlight levels */ | ||
55 | #ifdef BREATHING_LED_ENABLE | ||
56 | #ifdef FADING_LED_ENABLE | ||
57 | #define BACKLIGHT_LEVELS 8 | ||
58 | #else | ||
59 | #define BACKLIGHT_LEVELS 6 | ||
60 | #endif | ||
61 | #else | ||
62 | #define BACKLIGHT_LEVELS 3 | ||
63 | #endif | ||
64 | #define BACKLIGHT_CUSTOM | ||
65 | |||
66 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | 50 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ |
67 | #define DEBOUNCE 5 | 51 | #define DEBOUNCE 5 |
68 | 52 | ||
diff --git a/keyboards/amj96/rules.mk b/keyboards/amj96/rules.mk index e6838d719..4fd858509 100644 --- a/keyboards/amj96/rules.mk +++ b/keyboards/amj96/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
@@ -22,8 +22,8 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE ?= yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes | 27 | RGBLIGHT_ENABLE = yes |
28 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
29 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/clueboard/17/rules.mk b/keyboards/clueboard/17/rules.mk index d70fd8f85..703bf3d2d 100644 --- a/keyboards/clueboard/17/rules.mk +++ b/keyboards/clueboard/17/rules.mk | |||
@@ -19,6 +19,7 @@ CONSOLE_ENABLE = yes # Console for debug | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | NKRO_ENABLE = yes # USB Nkey Rollover | 20 | NKRO_ENABLE = yes # USB Nkey Rollover |
21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
22 | BACKLIGHT_DRIVER = custom | ||
22 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
23 | MIDI_ENABLE = no # MIDI support | 24 | MIDI_ENABLE = no # MIDI support |
24 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/clueboard/66/rev2/rules.mk b/keyboards/clueboard/66/rev2/rules.mk index 6917c0f06..16d9251d6 100644 --- a/keyboards/clueboard/66/rev2/rules.mk +++ b/keyboards/clueboard/66/rev2/rules.mk | |||
@@ -13,6 +13,7 @@ BOOTLOADER = atmel-dfu | |||
13 | 13 | ||
14 | # Build Options | 14 | # Build Options |
15 | BACKLIGHT_ENABLE = yes | 15 | BACKLIGHT_ENABLE = yes |
16 | BACKLIGHT_DRIVER = custom | ||
16 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
17 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
18 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/clueboard/66/rev3/rules.mk b/keyboards/clueboard/66/rev3/rules.mk index 28f497ec3..55f3050e3 100644 --- a/keyboards/clueboard/66/rev3/rules.mk +++ b/keyboards/clueboard/66/rev3/rules.mk | |||
@@ -15,6 +15,7 @@ BOOTLOADER = atmel-dfu | |||
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BACKLIGHT_ENABLE = yes | 17 | BACKLIGHT_ENABLE = yes |
18 | BACKLIGHT_DRIVER = custom | ||
18 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 19 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
19 | MOUSEKEY_ENABLE = yes # Mouse keys | 20 | MOUSEKEY_ENABLE = yes # Mouse keys |
20 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/clueboard/66_hotswap/prototype/rules.mk b/keyboards/clueboard/66_hotswap/prototype/rules.mk index 0a2a734cf..7f5afcf73 100644 --- a/keyboards/clueboard/66_hotswap/prototype/rules.mk +++ b/keyboards/clueboard/66_hotswap/prototype/rules.mk | |||
@@ -15,6 +15,7 @@ BOOTLOADER = atmel-dfu | |||
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BACKLIGHT_ENABLE = yes | 17 | BACKLIGHT_ENABLE = yes |
18 | BACKLIGHT_DRIVER = custom | ||
18 | BOOTMAGIC_ENABLE = no | 19 | BOOTMAGIC_ENABLE = no |
19 | MOUSEKEY_ENABLE = no | 20 | MOUSEKEY_ENABLE = no |
20 | EXTRAKEY_ENABLE = yes | 21 | EXTRAKEY_ENABLE = yes |
diff --git a/keyboards/clueboard/card/rules.mk b/keyboards/clueboard/card/rules.mk index 65f2c8fa3..37d1d866e 100644 --- a/keyboards/clueboard/card/rules.mk +++ b/keyboards/clueboard/card/rules.mk | |||
@@ -19,7 +19,8 @@ CONSOLE_ENABLE = yes # Console for debug | |||
19 | COMMAND_ENABLE = yes # Commands for debug and configuration | 19 | COMMAND_ENABLE = yes # Commands for debug and configuration |
20 | NKRO_ENABLE = no # USB Nkey Rollover | 20 | NKRO_ENABLE = no # USB Nkey Rollover |
21 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 21 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
22 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality by default | 22 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
23 | BACKLIGHT_DRIVER = custom | ||
23 | MIDI_ENABLE = no # MIDI controls | 24 | MIDI_ENABLE = no # MIDI controls |
24 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/cu75/rules.mk b/keyboards/cu75/rules.mk index 697d8d18f..1eb9cf8f7 100644 --- a/keyboards/cu75/rules.mk +++ b/keyboards/cu75/rules.mk | |||
@@ -11,4 +11,9 @@ MCU = atmega32u4 | |||
11 | # ATmega328P USBasp | 11 | # ATmega328P USBasp |
12 | BOOTLOADER = atmel-dfu | 12 | BOOTLOADER = atmel-dfu |
13 | 13 | ||
14 | # Build Options | ||
15 | # change yes to no to disable | ||
16 | # | ||
17 | BACKLIGHT_DRIVER = custom | ||
18 | |||
14 | SRC = ../lfkeyboards/TWIlib.c ../lfkeyboards/issi.c ../lfkeyboards/lighting.c | 19 | SRC = ../lfkeyboards/TWIlib.c ../lfkeyboards/issi.c ../lfkeyboards/lighting.c |
diff --git a/keyboards/duck/eagle_viper/v2/rules.mk b/keyboards/duck/eagle_viper/v2/rules.mk index 71d318946..a8c804e52 100644 --- a/keyboards/duck/eagle_viper/v2/rules.mk +++ b/keyboards/duck/eagle_viper/v2/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/duck/jetfire/rules.mk b/keyboards/duck/jetfire/rules.mk index b51285bd4..09a5d1ecc 100644 --- a/keyboards/duck/jetfire/rules.mk +++ b/keyboards/duck/jetfire/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | 29 | MIDI_ENABLE = no # MIDI support |
29 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/duck/lightsaver/rules.mk b/keyboards/duck/lightsaver/rules.mk index 8f2589139..64e18c9b1 100644 --- a/keyboards/duck/lightsaver/rules.mk +++ b/keyboards/duck/lightsaver/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/duck/octagon/v1/rules.mk b/keyboards/duck/octagon/v1/rules.mk index a750a8f00..4a8191fa6 100644 --- a/keyboards/duck/octagon/v1/rules.mk +++ b/keyboards/duck/octagon/v1/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/duck/octagon/v2/rules.mk b/keyboards/duck/octagon/v2/rules.mk index 0b2b12444..49f3f12f5 100644 --- a/keyboards/duck/octagon/v2/rules.mk +++ b/keyboards/duck/octagon/v2/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/duck/orion/v3/rules.mk b/keyboards/duck/orion/v3/rules.mk index 7463d7da4..019dd7dd3 100644 --- a/keyboards/duck/orion/v3/rules.mk +++ b/keyboards/duck/orion/v3/rules.mk | |||
@@ -23,7 +23,8 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | ||
27 | MIDI_ENABLE = no # MIDI support | 28 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/kmac/config.h b/keyboards/kmac/config.h index 652263d2b..b2c7f4d44 100644 --- a/keyboards/kmac/config.h +++ b/keyboards/kmac/config.h | |||
@@ -46,7 +46,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
46 | //#define DIODE_DIRECTION | 46 | //#define DIODE_DIRECTION |
47 | 47 | ||
48 | /* number of backlight levels */ | 48 | /* number of backlight levels */ |
49 | #define BACKLIGHT_LEVELS 3 | 49 | //#define BACKLIGHT_LEVELS 3 |
50 | // #define BACKLIGHT_PIN B7 | 50 | // #define BACKLIGHT_PIN B7 |
51 | // #define BACKLIGHT_BREATHING | 51 | // #define BACKLIGHT_BREATHING |
52 | 52 | ||
diff --git a/keyboards/kmac/rules.mk b/keyboards/kmac/rules.mk index c36191eb6..beda52398 100644 --- a/keyboards/kmac/rules.mk +++ b/keyboards/kmac/rules.mk | |||
@@ -27,7 +27,7 @@ CUSTOM_MATRIX = yes # Custom matrix file | |||
27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | NKRO_ENABLE = yes # USB Nkey Rollover | 29 | NKRO_ENABLE = yes # USB Nkey Rollover |
30 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 30 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
31 | MIDI_ENABLE = no # MIDI support | 31 | MIDI_ENABLE = no # MIDI support |
32 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/kmini/config.h b/keyboards/kmini/config.h index b5460c9de..6224a739e 100755 --- a/keyboards/kmini/config.h +++ b/keyboards/kmini/config.h | |||
@@ -43,7 +43,7 @@ | |||
43 | //#define DIODE_DIRECTION | 43 | //#define DIODE_DIRECTION |
44 | 44 | ||
45 | /* number of backlight levels */ | 45 | /* number of backlight levels */ |
46 | #define BACKLIGHT_LEVELS 3 | 46 | //#define BACKLIGHT_LEVELS 3 |
47 | // #define BACKLIGHT_PIN B7 | 47 | // #define BACKLIGHT_PIN B7 |
48 | // #define BACKLIGHT_BREATHING | 48 | // #define BACKLIGHT_BREATHING |
49 | 49 | ||
diff --git a/keyboards/kmini/rules.mk b/keyboards/kmini/rules.mk index 740dae2d2..076770a0a 100755 --- a/keyboards/kmini/rules.mk +++ b/keyboards/kmini/rules.mk | |||
@@ -27,7 +27,7 @@ CUSTOM_MATRIX = yes # Custom matrix file | |||
27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | NKRO_ENABLE = yes # USB Nkey Rollover | 29 | NKRO_ENABLE = yes # USB Nkey Rollover |
30 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 30 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
31 | MIDI_ENABLE = no # MIDI support | 31 | MIDI_ENABLE = no # MIDI support |
32 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lazydesigners/dimple/rules.mk b/keyboards/lazydesigners/dimple/rules.mk index d369613ea..395cd8e9a 100644 --- a/keyboards/lazydesigners/dimple/rules.mk +++ b/keyboards/lazydesigners/dimple/rules.mk | |||
@@ -18,5 +18,5 @@ BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | |||
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | NKRO_ENABLE = yes # USB Nkey Rollover | 20 | NKRO_ENABLE = yes # USB Nkey Rollover |
21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
22 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 22 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
diff --git a/keyboards/lfkeyboards/lfk78/rules.mk b/keyboards/lfkeyboards/lfk78/rules.mk index 3af30211e..74a1f7989 100644 --- a/keyboards/lfkeyboards/lfk78/rules.mk +++ b/keyboards/lfkeyboards/lfk78/rules.mk | |||
@@ -26,6 +26,7 @@ CONSOLE_ENABLE = no # Console for debug | |||
26 | COMMAND_ENABLE = no # Commands for debug and configuration | 26 | COMMAND_ENABLE = no # Commands for debug and configuration |
27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
28 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 28 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
29 | BACKLIGHT_DRIVER = custom | ||
29 | MIDI_ENABLE = no # MIDI controls | 30 | MIDI_ENABLE = no # MIDI controls |
30 | AUDIO_ENABLE = yes # Audio output on port C6 | 31 | AUDIO_ENABLE = yes # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/lfkeyboards/lfk87/rules.mk b/keyboards/lfkeyboards/lfk87/rules.mk index b322bdf56..dc6fa376a 100644 --- a/keyboards/lfkeyboards/lfk87/rules.mk +++ b/keyboards/lfkeyboards/lfk87/rules.mk | |||
@@ -30,7 +30,8 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
30 | CONSOLE_ENABLE = no # Console for debug | 30 | CONSOLE_ENABLE = no # Console for debug |
31 | COMMAND_ENABLE = no # Commands for debug and configuration | 31 | COMMAND_ENABLE = no # Commands for debug and configuration |
32 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 32 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
33 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 33 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
34 | BACKLIGHT_DRIVER = custom | ||
34 | MIDI_ENABLE = no # MIDI controls | 35 | MIDI_ENABLE = no # MIDI controls |
35 | AUDIO_ENABLE = yes # Audio output on port C6 | 36 | AUDIO_ENABLE = yes # Audio output on port C6 |
36 | UNICODE_ENABLE = no # Unicode | 37 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/lfkeyboards/mini1800/rules.mk b/keyboards/lfkeyboards/mini1800/rules.mk index d3e6a2402..a9c29c4b9 100644 --- a/keyboards/lfkeyboards/mini1800/rules.mk +++ b/keyboards/lfkeyboards/mini1800/rules.mk | |||
@@ -21,3 +21,8 @@ SRC = TWIlib.c issi.c lighting.c | |||
21 | ifeq ($(strip $(ISSI_ENABLE)), yes) | 21 | ifeq ($(strip $(ISSI_ENABLE)), yes) |
22 | # TMK_COMMON_DEFS += -DISSI_ENABLE | 22 | # TMK_COMMON_DEFS += -DISSI_ENABLE |
23 | endif | 23 | endif |
24 | |||
25 | # Build Options | ||
26 | # change yes to no to disable | ||
27 | # | ||
28 | BACKLIGHT_DRIVER = custom | ||
diff --git a/show_options.mk b/show_options.mk index b79653d5c..63823adc7 100644 --- a/show_options.mk +++ b/show_options.mk | |||
@@ -58,10 +58,8 @@ OTHER_OPTION_NAMES = \ | |||
58 | HELIX ZINC \ | 58 | HELIX ZINC \ |
59 | ADAFRUIT_BLE_ENABLE \ | 59 | ADAFRUIT_BLE_ENABLE \ |
60 | AUTOLOG_ENABLE \ | 60 | AUTOLOG_ENABLE \ |
61 | BREATHING_LED_ENABLE \ | ||
62 | DEBUG_ENABLE \ | 61 | DEBUG_ENABLE \ |
63 | ENCODER_ENABLE_CUSTOM \ | 62 | ENCODER_ENABLE_CUSTOM \ |
64 | FADING_LED_ENABLE \ | ||
65 | GERMAN_ENABLE \ | 63 | GERMAN_ENABLE \ |
66 | HAPTIC_ENABLE \ | 64 | HAPTIC_ENABLE \ |
67 | HHKB_RN42_ENABLE \ | 65 | HHKB_RN42_ENABLE \ |