2017-04-19 12:27:49 +02:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
|
|
|
|
2019-10-24 22:50:13 +02:00
|
|
|
# Bootloader selection
|
2017-11-28 05:08:21 +01:00
|
|
|
BOOTLOADER = caterina
|
|
|
|
|
2017-04-19 12:27:49 +02:00
|
|
|
# Build Options
|
|
|
|
# comment out to disable the options.
|
|
|
|
#
|
2021-08-07 08:59:56 +02:00
|
|
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
2020-01-30 19:47:48 +01:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = yes # Console for debug
|
2017-06-30 22:09:52 +02:00
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
|
|
CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge
|
2017-04-19 12:27:49 +02:00
|
|
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
2017-06-30 22:09:52 +02:00
|
|
|
# SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
|
|
|
NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
|
|
|
|
# BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
2021-08-15 22:51:13 +02:00
|
|
|
MIDI_ENABLE = no # MIDI support
|
Enables unicode for Mitosis (#2668)
* fixed comment typo
* Fixes invalid capitalization
Uppercase yes is invalid, so make treats it as no, which is
confusing when it seems like it should have found the method
definition for unicode.
* Own keymap, comma in mitosis
Own keymap is qwerty, workman, numbers, punctuation, function/mouse
layers, gaming, unicode, numberpad.
2018-04-04 18:17:38 +02:00
|
|
|
UNICODE_ENABLE = yes # Unicode
|
2017-04-19 12:27:49 +02:00
|
|
|
|
2019-10-24 22:50:13 +02:00
|
|
|
# # project specific files
|
2021-02-05 23:20:48 +01:00
|
|
|
SRC += matrix.c serial_uart.c
|