diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-02-05 00:10:11 +0100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-04 15:10:11 -0800 |
commit | e4ff07aff06dcdc45859bfc1e5106069fb65020b (patch) | |
tree | aa581e791f4aab83ed25d76d93268e5ba2600e65 /keyboards/converter/xt_usb | |
parent | 80d427a2035afdc57b850381a36e4dd9d2c179ea (diff) | |
download | qmk_firmware-e4ff07aff06dcdc45859bfc1e5106069fb65020b.tar.gz qmk_firmware-e4ff07aff06dcdc45859bfc1e5106069fb65020b.zip |
Fix mixed tabs/spaces and typos in keyboards/converter makefiles (#5041)
* Fix mixed tabs and spaces in adb_usb and m0110_usb makefiles
* Fix typos in converter build options
* Tweak ordering and spacing in converter makefiles
Diffstat (limited to 'keyboards/converter/xt_usb')
-rw-r--r-- | keyboards/converter/xt_usb/rules.mk | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/keyboards/converter/xt_usb/rules.mk b/keyboards/converter/xt_usb/rules.mk index 0b8731f326..1f96251830 100644 --- a/keyboards/converter/xt_usb/rules.mk +++ b/keyboards/converter/xt_usb/rules.mk @@ -14,7 +14,6 @@ MCU = atmega32u4 # software delays. F_CPU = 16000000 - # # LUFA specific # @@ -42,21 +41,19 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT # BOOTLOADER = caterina # Pro Micro BOOTLOADER = halfkay # Teensy - # Build Options # comment out to disable the options. # -BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) -MOUSEKEY_ENABLE = yes # Mouse keys(+4700) -EXTRAKEY_ENABLE = yes # Audio control and System control(+450) -CONSOLE_ENABLE = yes # Console for debug(+400) -COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = yes # USB Nkey Rollover -XT_ENABLE = yes -CUSTOM_MATRIX = yes +BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE = yes # Mouse keys(+4700) +EXTRAKEY_ENABLE = yes # Audio control and System control(+450) +CONSOLE_ENABLE = yes # Console for debug(+400) +COMMAND_ENABLE = yes # Commands for debug and configuration +NKRO_ENABLE = yes # USB Nkey Rollover +XT_ENABLE = yes +CUSTOM_MATRIX = yes +SRC = matrix.c led.c # Optimize size but this may cause error "relocation truncated to fit" #EXTRALDFLAGS = -Wl,--relax - -SRC = matrix.c led.c |