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/winkeyless/bmini/rules.mk | |
parent | beb4a12c9d06d30cc0f544ca52e618898fbb5302 (diff) |
Cleanup rules.mk for 32A and 328P keyboards (#6767)
Diffstat (limited to 'keyboards/winkeyless/bmini/rules.mk')
-rw-r--r-- | keyboards/winkeyless/bmini/rules.mk | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/keyboards/winkeyless/bmini/rules.mk b/keyboards/winkeyless/bmini/rules.mk index 3d7bc0215d..8cfc810566 100644 --- a/keyboards/winkeyless/bmini/rules.mk +++ b/keyboards/winkeyless/bmini/rules.mk @@ -15,19 +15,15 @@ # MCU name MCU = atmega32a -PROTOCOL = VUSB -# unsupported features for now -NO_UART = yes -NO_SUSPEND_POWER_DOWN = yes - -# processor frequency -F_CPU = 12000000 - -# 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 BOOTLOADER = bootloadHID # build options @@ -45,6 +41,3 @@ OPT_DEFS = -DDEBUG_LEVEL=0 # custom matrix setup CUSTOM_MATRIX = yes SRC = matrix.c i2c.c - -# programming options -PROGRAM_CMD = ./util/atmega32a_program.py $(TARGET).hex |