diff options
author | Ryan <fauxpark@gmail.com> | 2021-02-06 09:20:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 09:20:48 +1100 |
commit | 5ea92a9c1cbe3e20bf4830d550d797a8e9650da8 (patch) | |
tree | 75ea1413ae4fa23bd0b1230629b6a3b3e215c5eb /keyboards/mitosis/rules.mk | |
parent | 464eb7137d27e3a31e85032c85c9fda627a8b33f (diff) |
Serial refactor (#11521)
Diffstat (limited to 'keyboards/mitosis/rules.mk')
-rw-r--r-- | keyboards/mitosis/rules.mk | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/keyboards/mitosis/rules.mk b/keyboards/mitosis/rules.mk index 466987e8c1..4cb6d8c9b4 100644 --- a/keyboards/mitosis/rules.mk +++ b/keyboards/mitosis/rules.mk @@ -28,14 +28,5 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA UNICODE_ENABLE = yes # Unicode # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID -USB = /dev/ttyACM0 - -# upload: build -# $(MITOSIS_UPLOAD_COMMAND) - -OPT_DEFS += -DMITOSIS_PROMICRO -MITOSIS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \ - avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB) - # # project specific files -SRC = matrix.c +SRC += matrix.c serial_uart.c |