mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-13 15:04:11 +00:00
48 lines
1.5 KiB
Makefile
48 lines
1.5 KiB
Makefile
# MCU name
|
|
MCU = atmega32u4
|
|
|
|
# Allow flashing with usbasp
|
|
AVRDUDE_MCU = $(MCU)
|
|
|
|
# CPU frequency divided by two since AVR is at 3.3V
|
|
F_CPU = 8000000
|
|
# External oscillator is 16Mhz
|
|
F_USB = 16000000
|
|
|
|
# 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
|
|
|
|
# Build Options
|
|
# comment out to disable the options.
|
|
#
|
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
|
|
MOUSEKEY_ENABLE = no # Mouse keys(+4700)
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
DYNAMIC_KEYMAP_ENABLE = yes # Reconfigurable keyboard without flashing firmware
|
|
NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
|
RAW_ENABLE = yes # Enable RAW HID commands (used by keyboard configurator)
|
|
RGBLIGHT_ENABLE = no # Support for RGB backlight (conflicts with RGB_MATRIX)
|
|
RGB_MATRIX_ENABLE = yes # Support for RGB matrix
|
|
RGB_MATRIX_DRIVER = WS2812
|
|
RGB_MATRIX_CUSTOM_KB = yes # Allow custom keyboard effect
|
|
USB_6KRO_ENABLE = no # 6key Rollover
|
|
LTO_ENABLE = yes # Link-time optimization for smaller binary
|
|
|
|
# Add System76 EC command interface
|
|
SRC+=../system76_ec.c
|
|
|
|
# Add I2C driver
|
|
SRC+=i2c.c
|
|
|
|
# Add USB mux driver
|
|
SRC+=usb_mux.c
|