2017-04-19 12:27:49 +02:00
|
|
|
# MCU name
|
|
|
|
MCU = atmega32u4
|
|
|
|
|
2019-10-24 22:50:13 +02:00
|
|
|
# Bootloader selection
|
|
|
|
# Teensy halfkay
|
|
|
|
# Pro Micro caterina
|
|
|
|
# Atmel DFU atmel-dfu
|
|
|
|
# LUFA DFU lufa-dfu
|
|
|
|
# QMK DFU qmk-dfu
|
|
|
|
# ATmega32A bootloadHID
|
|
|
|
# ATmega328P USBasp
|
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.
|
|
|
|
#
|
2020-01-30 19:47:48 +01:00
|
|
|
#BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
|
|
|
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
|
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
|
|
|
# MIDI_ENABLE = yes # MIDI controls
|
|
|
|
UNICODE_ENABLE = yes # Unicode
|
2017-06-30 22:09:52 +02:00
|
|
|
# BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID
|
2017-04-19 12:27:49 +02:00
|
|
|
|
2017-06-30 22:09:52 +02:00
|
|
|
USB = /dev/ttyACM0
|
2017-04-19 12:27:49 +02:00
|
|
|
|
2017-08-24 04:29:07 +02:00
|
|
|
# upload: build
|
|
|
|
# $(MITOSIS_UPLOAD_COMMAND)
|
2019-10-24 22:50:13 +02:00
|
|
|
|
|
|
|
OPT_DEFS += -DMITOSIS_PROMICRO
|
|
|
|
MITOSIS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
|
|
|
|
avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
|
|
|
|
|
|
|
|
# # project specific files
|
|
|
|
SRC = matrix.c
|