20 lines
280 B
Makefile
20 lines
280 B
Makefile
|
# MCU name
|
||
|
MCU = atmega32a
|
||
|
|
||
|
# Processor frequency
|
||
|
F_CPU = 16000000
|
||
|
|
||
|
# Bootloader selection
|
||
|
BOOTLOADER = USBasp
|
||
|
|
||
|
# Build Options
|
||
|
# change yes to no to disable
|
||
|
#
|
||
|
CONSOLE_ENABLE = no
|
||
|
COMMAND_ENABLE = no
|
||
|
NKRO_ENABLE = no
|
||
|
BACKLIGHT_ENABLE = yes
|
||
|
CUSTOM_MATRIX = lite
|
||
|
|
||
|
SRC += matrix.c
|