diff options
author | fauxpark <fauxpark@gmail.com> | 2019-09-21 15:06:32 +1000 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-09-20 22:06:32 -0700 |
commit | de4a47f1cc28c4ef66e7560eac2a50f717070ae2 (patch) | |
tree | 541f612a0b7175f7f7b13311e1e28149a6142d4f /keyboards/mechmini | |
parent | beb4a12c9d06d30cc0f544ca52e618898fbb5302 (diff) | |
download | qmk_firmware-de4a47f1cc28c4ef66e7560eac2a50f717070ae2.tar.gz qmk_firmware-de4a47f1cc28c4ef66e7560eac2a50f717070ae2.zip |
Cleanup rules.mk for 32A and 328P keyboards (#6767)
Diffstat (limited to 'keyboards/mechmini')
-rw-r--r-- | keyboards/mechmini/v1/rules.mk | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/keyboards/mechmini/v1/rules.mk b/keyboards/mechmini/v1/rules.mk index 11bd8955f..3510ca6f3 100644 --- a/keyboards/mechmini/v1/rules.mk +++ b/keyboards/mechmini/v1/rules.mk | |||
@@ -15,19 +15,15 @@ | |||
15 | 15 | ||
16 | # MCU name | 16 | # MCU name |
17 | MCU = atmega32a | 17 | MCU = atmega32a |
18 | PROTOCOL = VUSB | ||
19 | 18 | ||
20 | # unsupported features for now | 19 | # Bootloader selection |
21 | NO_UART = yes | 20 | # Teensy halfkay |
22 | NO_SUSPEND_POWER_DOWN = yes | 21 | # Pro Micro caterina |
23 | 22 | # Atmel DFU atmel-dfu | |
24 | # processor frequency | 23 | # LUFA DFU lufa-dfu |
25 | F_CPU = 12000000 | 24 | # QMK DFU qmk-dfu |
26 | 25 | # ATmega32A bootloadHID | |
27 | # Bootloader | 26 | # ATmega328P USBasp |
28 | # This definition is optional, and if your keyboard supports multiple bootloaders of | ||
29 | # different sizes, comment this out, and the correct address will be loaded | ||
30 | # automatically (+60). See bootloader.mk for all options. | ||
31 | BOOTLOADER = atmel-dfu | 27 | BOOTLOADER = atmel-dfu |
32 | 28 | ||
33 | # build options | 29 | # build options |
@@ -45,6 +41,3 @@ OPT_DEFS = -DDEBUG_LEVEL=0 | |||
45 | # custom matrix setup | 41 | # custom matrix setup |
46 | CUSTOM_MATRIX = yes | 42 | CUSTOM_MATRIX = yes |
47 | SRC = matrix.c i2c.c | 43 | SRC = matrix.c i2c.c |
48 | |||
49 | # programming options | ||
50 | PROGRAM_CMD = ./util/atmega32a_program.py $(TARGET).hex | ||