2019-10-05 18:09:35 +00:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
2018-10-11 22:26:56 +00:00
|
|
|
|
2019-10-05 18:09:35 +00:00
|
|
|
# Bootloader selection
|
|
|
|
# Teensy halfkay
|
|
|
|
# Pro Micro caterina
|
|
|
|
# Atmel DFU atmel-dfu
|
|
|
|
# LUFA DFU lufa-dfu
|
|
|
|
# QMK DFU qmk-dfu
|
|
|
|
# ATmega32A bootloadHID
|
|
|
|
# ATmega328P USBasp
|
2018-10-11 22:26:56 +00:00
|
|
|
BOOTLOADER = lufa-dfu
|
|
|
|
|
|
|
|
# Build Options
|
2019-02-04 23:10:11 +00:00
|
|
|
# change to "no" to disable the options, or define them in the Makefile in
|
2018-10-11 22:26:56 +00:00
|
|
|
# the appropriate keymap folder that will get included automatically
|
|
|
|
#
|
|
|
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
2019-02-04 23:10:11 +00:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
2018-10-11 22:26:56 +00:00
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
2019-02-04 23:10:11 +00:00
|
|
|
CONSOLE_ENABLE = yes # Console for debug(+400)
|
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
2018-10-11 22:26:56 +00:00
|
|
|
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 = no # Enable keyboard backlight functionality
|
|
|
|
MIDI_ENABLE = no # MIDI controls
|
|
|
|
AUDIO_ENABLE = no # Audio output on port C6
|
|
|
|
UNICODE_ENABLE = no # Unicode
|
|
|
|
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
2019-02-04 23:10:11 +00:00
|
|
|
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
|
2018-10-11 22:26:56 +00:00
|
|
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
2019-02-04 23:10:11 +00:00
|
|
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
2018-10-11 22:26:56 +00:00
|
|
|
#HARDWARE_SERIAL = yes
|
2019-02-04 23:10:11 +00:00
|
|
|
CUSTOM_MATRIX = yes
|
2018-10-11 22:26:56 +00:00
|
|
|
|
|
|
|
SRC += matrix.c led.c
|
|
|
|
ifdef HARDWARE_SERIAL
|
2019-02-04 23:10:11 +00:00
|
|
|
SRC += protocol/serial_uart.c
|
|
|
|
OPT_DEFS += -DHARDWARE_SERIAL
|
2018-10-11 22:26:56 +00:00
|
|
|
else
|
2019-02-04 23:10:11 +00:00
|
|
|
SRC += protocol/serial_soft.c
|
2018-10-11 22:26:56 +00:00
|
|
|
endif
|
2018-10-15 17:45:30 +00:00
|
|
|
|
|
|
|
DEFAULT_FOLDER = converter/sun_usb/type5
|