diff options
author | randlor <57689764+randlor@users.noreply.github.com> | 2019-12-16 05:33:04 +0000 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2019-12-15 21:33:04 -0800 |
commit | 74dc65ab2efd315eaf1b954b782289d5be3c0721 (patch) | |
tree | 241240b54743cbb4515b1aef65251254cbc43ae1 /keyboards/xd68/rules.mk | |
parent | 3eb82e047079230e55d3aeff901c4d0dce69fb3a (diff) | |
download | qmk_firmware-74dc65ab2efd315eaf1b954b782289d5be3c0721.tar.gz |
[Keyboard] XD68 65% ATMega32U4 based (#7395)
* First working draft
* Updated readme.md
* Fixed url
* Typo fix
* RGB + Backlight working
* Fixed matrix for ISO NUHS
* ISO matrix working
* Adding ANSI default layout
* First release commit
* Removed reference to deprecated layout
* Changes from PR #7395 review
* Additional changes as requested for PR #7395
* Additional changes from @noroadsleft review
* Replaced ifndef/endif with pragma
* Adding yanfali's recommended changes
Diffstat (limited to 'keyboards/xd68/rules.mk')
-rw-r--r-- | keyboards/xd68/rules.mk | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/xd68/rules.mk b/keyboards/xd68/rules.mk new file mode 100644 index 000000000..91f9a48f3 --- /dev/null +++ b/keyboards/xd68/rules.mk @@ -0,0 +1,32 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +# Teensy halfkay +# Pro Micro caterina +# Atmel DFU atmel-dfu +# LUFA DFU lufa-dfu +# QMK DFU qmk-dfu +# ATmega32A bootloadHID +# ATmega328P USBasp +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 +# +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 +MIDI_ENABLE = no # MIDI support +AUDIO_ENABLE = no # Audio output on port C6 +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 |