1
0
Fork 0

Cleanup rules.mk for 32U4 keyboards, I-K (#7097)

* Cleanup rules.mk for 32U4 keyboards, I-K

* Clean up ivy rules.mk
This commit is contained in:
fauxpark 2019-10-22 15:43:18 +11:00 committed by noroadsleft
parent c44aff5f18
commit 2ee961c9e8
65 changed files with 317 additions and 1672 deletions

View file

@ -1,12 +1,14 @@
# MCU name
MCU = atmega32u4
F_CPU = 16000000
ARCH = AVR8
F_USB = $(F_CPU)
# Bootloader
# This definition is optional, and if your keyboard supports multiple bootloaders of
# different sizes, comment this out, and the correct address will be loaded
# automatically (+60). See bootloader.mk for all options.
# Bootloader selection
# Teensy halfkay
# Pro Micro caterina
# Atmel DFU atmel-dfu
# LUFA DFU lufa-dfu
# QMK DFU qmk-dfu
# ATmega32A bootloadHID
# ATmega328P USBasp
ifneq (, $(findstring rev3, $(KEYBOARD)))
BOOTLOADER = qmk-dfu
else ifneq (, $(findstring rev4, $(KEYBOARD)))
@ -15,9 +17,6 @@ else
BOOTLOADER = caterina
endif
# Interrupt driven control endpoint task(+60)
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
# Build Options
# change to "no" to disable the options, or define them in the Makefile in
# the appropriate keymap folder that will get included automatically