diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-14 17:31:17 -0800 |
---|---|---|
committer | Joel Challis <git@zvecr.com> | 2020-01-15 01:31:17 +0000 |
commit | 537b8713e5bc9690dca3c1ad8733132892d48ea2 (patch) | |
tree | cff7405e3db9c6b2c1c7341713be8aa5e595176b /keyboards/xd68/rules.mk | |
parent | 61cd180163cbe1324bde25abcc95d0c380459b70 (diff) | |
download | qmk_firmware-537b8713e5bc9690dca3c1ad8733132892d48ea2.tar.gz qmk_firmware-537b8713e5bc9690dca3c1ad8733132892d48ea2.zip |
XD68 Configurator Layout Support and Minor Refactor (#7904)
* XD68: QMK Configurator layout support
* elevate backlight breathing settings to keyboard level
* remove empty keymap config.h files
* rules.mk templating
* keymap polishing
- four-space indent
- keycode alignment
Diffstat (limited to 'keyboards/xd68/rules.mk')
-rw-r--r-- | keyboards/xd68/rules.mk | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/keyboards/xd68/rules.mk b/keyboards/xd68/rules.mk index 91f9a48f3d..c8b7950c91 100644 --- a/keyboards/xd68/rules.mk +++ b/keyboards/xd68/rules.mk @@ -12,21 +12,24 @@ MCU = atmega32u4 BOOTLOADER = atmel-dfu # QMK Build Options -# change to "no" to disable the options, or define them in the Makefile in -# the appropriate keymap folder that will get included automatically +# change yes to no to disable # -BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration MOUSEKEY_ENABLE = yes # Mouse keys EXTRAKEY_ENABLE = yes # Audio control and System control CONSOLE_ENABLE = no # Console for debug COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE = yes # USB Nkey Rollover +BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow MIDI_ENABLE = no # MIDI support +BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID AUDIO_ENABLE = no # Audio output on port C6 +FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches +HD44780_ENABLE = no # Enable support for HD44780 based LCDs UNICODE_ENABLE = no # Unicode -BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID -RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. -SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend LAYOUTS = 65_ansi 65_iso
\ No newline at end of file |