diff options
author | Ryan <fauxpark@gmail.com> | 2021-09-10 13:35:46 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-10 13:35:46 +1000 |
commit | 7eea780a7da2d9197b78b62b7294a6b2bc2fa572 (patch) | |
tree | 672fb14cfa865792c1147feabf8d0e63c416d513 /keyboards/handwired/reddot | |
parent | 2cb9219a3e655218f5380a41cf5bc5e3135caaa1 (diff) | |
download | qmk_firmware-7eea780a7da2d9197b78b62b7294a6b2bc2fa572.tar.gz qmk_firmware-7eea780a7da2d9197b78b62b7294a6b2bc2fa572.zip |
Remove bootloader listings from rules.mk (#14330)
Diffstat (limited to 'keyboards/handwired/reddot')
-rwxr-xr-x | keyboards/handwired/reddot/rules.mk | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/keyboards/handwired/reddot/rules.mk b/keyboards/handwired/reddot/rules.mk index a722495235..dfe1c71749 100755 --- a/keyboards/handwired/reddot/rules.mk +++ b/keyboards/handwired/reddot/rules.mk @@ -2,23 +2,7 @@ MCU = atmega32u4 # Bootloader selection -# Teensy halfkay -# Pro Micro caterina -# Atmel DFU atmel-dfu -# LUFA DFU lufa-dfu -# QMK DFU qmk-dfu -# ATmega32A bootloadHID -# ATmega328P USBasp -ifdef TEENSY2 - BOOTLOADER = halfkay - OPT_DEFS += -DATREUS_TEENSY2 - ATREUS_UPLOAD_COMMAND = teensy_loader_cli -w -mmcu=$(MCU) $(TARGET).hex -else - BOOTLOADER = caterina - OPT_DEFS += -DATREUS_ASTAR - ATREUS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \ - avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB) -endif +BOOTLOADER = caterina # Build Options # change yes to no to disable @@ -36,9 +20,3 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by d UNICODE_ENABLE = no # Unicode BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID AUDIO_ENABLE = no # Audio output on port C6 - -# upload: build -# $(ATREUS_UPLOAD_COMMAND) - -# for avr upload -USB = /dev/cu.usbmodem1421 |