2017-04-19 20:27:49 +10:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
|
|
|
|
2019-10-25 07:50:13 +11:00
|
|
|
# Bootloader selection
|
2017-11-27 23:08:21 -05:00
|
|
|
BOOTLOADER = caterina
|
|
|
|
|
2017-04-19 20:27:49 +10:00
|
|
|
# Build Options
|
|
|
|
# comment out to disable the options.
|
|
|
|
#
|
2021-08-06 23:59:56 -07:00
|
|
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
2020-01-30 13:47:48 -05:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = yes # Console for debug
|
2017-06-30 16:09:52 -04:00
|
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
|
|
CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge
|
2017-04-19 20:27:49 +10:00
|
|
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
2017-06-30 16:09:52 -04: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
|
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 11:17:38 -05:00
|
|
|
UNICODE_ENABLE = yes # Unicode
|
2017-04-19 20:27:49 +10:00
|
|
|
|
2019-10-25 07:50:13 +11:00
|
|
|
# # project specific files
|
2021-02-06 09:20:48 +11:00
|
|
|
SRC += matrix.c serial_uart.c
|