diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-06-02 21:59:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 21:59:13 -0700 |
commit | be73820f7bc4f03e3d095b694f31092187583ac7 (patch) | |
tree | 00169335671348f97b4126a4c8165620e8c88ca5 /keyboards/duck/tcv3/rules.mk | |
parent | 81a2113cbd820151c1529bebd0bc71629d2de66e (diff) | |
download | qmk_firmware-be73820f7bc4f03e3d095b694f31092187583ac7.tar.gz qmk_firmware-be73820f7bc4f03e3d095b694f31092187583ac7.zip |
[Keyboard] New Keyboard: Duck TC-V3 (#8265)
Co-Authored-By: Ryan <fauxpark@gmail.com>
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-Authored-By: Drashna Jaelre <drashna@live.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/duck/tcv3/rules.mk')
-rw-r--r-- | keyboards/duck/tcv3/rules.mk | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/keyboards/duck/tcv3/rules.mk b/keyboards/duck/tcv3/rules.mk new file mode 100644 index 0000000000..a9d0012c02 --- /dev/null +++ b/keyboards/duck/tcv3/rules.mk @@ -0,0 +1,36 @@ +# 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 + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration +MOUSEKEY_ENABLE = no # Mouse keys +EXTRAKEY_ENABLE = no # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = yes # Commands for debug and configuration +# 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 = no # Enable keyboard backlight functionality +MIDI_ENABLE = no # MIDI support +UNICODE_ENABLE = no # Unicode +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 +RGBLIGHT_ENABLE = yes + +CUSTOM_MATRIX = yes +SRC += indicator_leds.c \ + matrix.c duck_led/duck_led.c |