2019-10-24 22:50:13 +02:00
|
|
|
# MCU name
|
2018-02-23 19:16:10 +01:00
|
|
|
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
|
|
|
|
BOOTLOADER = atmel-dfu
|
2018-07-19 05:03:40 +02:00
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
# Build Options
|
|
|
|
# change yes to no to disable
|
|
|
|
#
|
2021-01-08 23:16:21 +01:00
|
|
|
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
|
2020-02-05 03:41:19 +01:00
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
|
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
|
|
|
SLEEP_LED_ENABLE = yes # 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 = no # USB Nkey Rollover
|
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
|
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
|
|
RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not qmk base
|
|
|
|
MIDI_ENABLE = no # MIDI support
|
|
|
|
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
|
2021-01-08 23:16:21 +01:00
|
|
|
UNICODE_ENABLE = no # Unicode
|
|
|
|
TAP_DANCE_ENABLE = no
|
2018-12-10 20:38:57 +01:00
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
ISSI_ENABLE = yes # If the I2C pullup resistors aren't installed this must be disabled
|
|
|
|
WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan() isn't run every 250ms
|
2018-12-10 20:38:57 +01:00
|
|
|
|
2019-10-24 22:50:13 +02:00
|
|
|
SRC = TWIlib.c issi.c lighting.c
|
2018-12-10 20:38:57 +01:00
|
|
|
|
|
|
|
ifeq ($(strip $(ISSI_ENABLE)), yes)
|
|
|
|
TMK_COMMON_DEFS += -DISSI_ENABLE
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
|
|
|
|
TMK_COMMON_DEFS += -DWATCHDOG_ENABLE
|
|
|
|
endif
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
LAYOUTS = numpad_6x4
|