Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
1ccfed483d
|
@ -51,16 +51,8 @@ Keymap
|
||||||
------
|
------
|
||||||
To build the default keymap run this command:
|
To build the default keymap run this command:
|
||||||
|
|
||||||
$ make converter/adb_usb:default
|
$ make converter/adb_usb/rev1:default # Pro Micro-based
|
||||||
|
$ make converter/adb_usb/rev2:default # Hasu 32U2 PCB
|
||||||
You may add your own keymap to the converter/adb_usb/keymaps directory, as you would with any other QMK-powered keyboard.
|
|
||||||
|
|
||||||
To build your custom keymap, change the build command to:
|
|
||||||
|
|
||||||
$ make converter/adb_usb:my_keymap
|
|
||||||
|
|
||||||
Where 'my_keymap' is the name of your custom keymap directory.
|
|
||||||
|
|
||||||
|
|
||||||
Locking Caps Lock
|
Locking Caps Lock
|
||||||
----------------
|
----------------
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
# MCU name
|
||||||
|
MCU = atmega32u4
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
BOOTLOADER = caterina
|
|
@ -0,0 +1,5 @@
|
||||||
|
# MCU name
|
||||||
|
MCU = atmega32u2
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
BOOTLOADER = atmel-dfu
|
|
@ -1,23 +1,19 @@
|
||||||
# MCU name
|
|
||||||
MCU = atmega32u4
|
|
||||||
|
|
||||||
# Bootloader selection
|
|
||||||
BOOTLOADER = caterina
|
|
||||||
|
|
||||||
# Build Options
|
# Build Options
|
||||||
# change yes to no to disable
|
# change yes to no to disable
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
MOUSEKEY_ENABLE = no # Mouse keys
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
EXTRAKEY_ENABLE = yes
|
NKRO_ENABLE = no # Enable N-Key Rollover
|
||||||
USB_HID_ENABLE = yes
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
BACKLIGHT_ENABLE = no
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||||
CUSTOM_MATRIX = yes
|
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
|
# OPT_DEFS += -DADB_MOUSE_ENABLE -DMOUSE_ENABLE
|
||||||
|
|
||||||
|
DEFAULT_FOLDER = converter/adb_usb/rev1
|
||||||
|
|
Loading…
Reference in New Issue