diff options
author | fauxpark <fauxpark@gmail.com> | 2019-10-26 12:32:18 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-10-25 18:32:18 -0700 |
commit | 5d34e70cf773531536dda363fc43c60146e3d97c (patch) | |
tree | aa8a7117dc5d46c4a43fb99fcc2c4f2ff93382ec /keyboards/nek_type_a | |
parent | 006ec86786da874938f54e9b1d0f4a5f049de546 (diff) |
Cleanup rules.mk for 32U4 keyboards, N-Q (#7147)
Diffstat (limited to 'keyboards/nek_type_a')
-rw-r--r-- | keyboards/nek_type_a/rules.mk | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/keyboards/nek_type_a/rules.mk b/keyboards/nek_type_a/rules.mk index 6f172a9cea..db5b1642c8 100644 --- a/keyboards/nek_type_a/rules.mk +++ b/keyboards/nek_type_a/rules.mk @@ -1,14 +1,17 @@ -SRC = matrix.c mcp23017.c - +# MCU name MCU = atmega32u4 -F_CPU = 8000000 - -ARCH = AVR8 -F_USB = $(F_CPU) -# Interrupt driven control endpoint task(+60) -OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT +# Processor frequency +F_CPU = 8000000 +# Bootloader selection +# Teensy halfkay +# Pro Micro caterina +# Atmel DFU atmel-dfu +# LUFA DFU lufa-dfu +# QMK DFU qmk-dfu +# ATmega32A bootloadHID +# ATmega328P USBasp BOOTLOADER = caterina BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) @@ -30,4 +33,6 @@ FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) CUSTOM_MATRIX = yes DEBUG_ENABLE = yes -BLUETOOTH = AdafruitBLE
\ No newline at end of file +BLUETOOTH = AdafruitBLE + +SRC += matrix.c mcp23017.c |