diff options
author | Ryan <fauxpark@gmail.com> | 2022-08-15 19:15:22 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 10:15:22 +0100 |
commit | b297a347bb288069b2ee9386813047d2a96e44fe (patch) | |
tree | a5c4621bd2076b8b7cb6833ffad0ce410a2affe7 /keyboards/converter/adb_usb/rules.mk | |
parent | 51d5aad25b92a34bc051849616fcd93e3ae407fc (diff) | |
download | qmk_firmware-b297a347bb288069b2ee9386813047d2a96e44fe.tar.gz qmk_firmware-b297a347bb288069b2ee9386813047d2a96e44fe.zip |
ADB to USB converter: split into rev1 and rev2 (#18052)
Diffstat (limited to 'keyboards/converter/adb_usb/rules.mk')
-rw-r--r-- | keyboards/converter/adb_usb/rules.mk | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/keyboards/converter/adb_usb/rules.mk b/keyboards/converter/adb_usb/rules.mk index 93bdbf6abf..4e4d068a70 100644 --- a/keyboards/converter/adb_usb/rules.mk +++ b/keyboards/converter/adb_usb/rules.mk @@ -1,23 +1,19 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -BOOTLOADER = caterina - # Build Options # change yes to no to disable # -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -EXTRAKEY_ENABLE = yes -USB_HID_ENABLE = yes -BACKLIGHT_ENABLE = no -CUSTOM_MATRIX = yes +BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite +MOUSEKEY_ENABLE = no # Mouse keys +EXTRAKEY_ENABLE = yes # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = no # Commands for debug and configuration +NKRO_ENABLE = no # Enable N-Key Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +AUDIO_ENABLE = no # Audio output +CUSTOM_MATRIX = yes -SRC = matrix.c adb.c led.c +SRC += matrix.c adb.c led.c -# ADB_MOUSE_ENABLE # OPT_DEFS += -DADB_MOUSE_ENABLE -DMOUSE_ENABLE + +DEFAULT_FOLDER = converter/adb_usb/rev1 |