Migrate build target markers to keyboard.json - Misc (#23612)
parent
3d83b3e7c5
commit
e9b8929357
|
@ -8,6 +8,13 @@
|
||||||
"pid": "0x005B",
|
"pid": "0x005B",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"nkro": false,
|
||||||
|
"usb_hid": true
|
||||||
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"community_layouts": ["fullsize_ansi", "fullsize_iso", "fullsize_jis"],
|
"community_layouts": ["fullsize_ansi", "fullsize_iso", "fullsize_jis"],
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
// Intentionally left empty. This file must exist for this board to build.
|
|
|
@ -1,16 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
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
|
|
||||||
USB_HID_ENABLE = yes
|
|
||||||
CUSTOM_MATRIX = yes
|
CUSTOM_MATRIX = yes
|
||||||
|
|
||||||
SRC += custom_matrix.cpp
|
SRC += custom_matrix.cpp
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{
|
{
|
||||||
"processor": "atmega32u2",
|
"processor": "atmega32u2",
|
||||||
"bootloader": "atmel-dfu"
|
"bootloader": "atmel-dfu",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
|
@ -1,4 +1,12 @@
|
||||||
{
|
{
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "atmel-dfu"
|
"bootloader": "atmel-dfu",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"command": true,
|
||||||
|
"console": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,6 @@
|
||||||
# Build Options
|
CUSTOM_MATRIX = yes
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
CUSTOM_MATRIX = yes # Custom matrix file for the HHKB
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
|
|
||||||
# project specific files
|
# project specific files
|
||||||
SRC = matrix.c
|
SRC = matrix.c
|
||||||
|
|
||||||
# debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION
|
|
||||||
# debug-on: all
|
|
||||||
|
|
||||||
# debug-off: EXTRAFLAGS += -DNO_DEBUG -DNO_PRINT
|
|
||||||
# debug-off: OPT_DEFS := $(filter-out -DCONSOLE_ENABLE,$(OPT_DEFS))
|
|
||||||
# debug-off: all
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = hhkb/ansi/32u4
|
DEFAULT_FOLDER = hhkb/ansi/32u4
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
{
|
||||||
|
}
|
|
@ -1 +0,0 @@
|
||||||
# This file intentionally left blank
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
{
|
||||||
|
}
|
|
@ -1 +0,0 @@
|
||||||
# This file intentionally left blank
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
{
|
||||||
|
}
|
|
@ -1,3 +1,5 @@
|
||||||
|
UART_DEBUG ?= no
|
||||||
|
|
||||||
ifeq ($(strip $(UART_DEBUG)), yes)
|
ifeq ($(strip $(UART_DEBUG)), yes)
|
||||||
OPT_DEFS += -DUART_DEBUG
|
OPT_DEFS += -DUART_DEBUG
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
CUSTOM_MATRIX = lite
|
CUSTOM_MATRIX = lite
|
||||||
|
|
||||||
UART_DEBUG = no
|
|
||||||
|
|
||||||
SRC += matrix.c
|
SRC += matrix.c
|
||||||
UART_DRIVER_REQUIRED = yes
|
UART_DRIVER_REQUIRED = yes
|
||||||
SPI_DRIVER_REQUIRED = yes
|
SPI_DRIVER_REQUIRED = yes
|
||||||
|
|
|
@ -8,6 +8,14 @@
|
||||||
"pid": "0xEB5F",
|
"pid": "0xEB5F",
|
||||||
"device_version": "0.0.7"
|
"device_version": "0.0.7"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"command": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B5"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B5"],
|
||||||
"rows": ["D4", "C6", "D7", "E6", "B4"]
|
"rows": ["D4", "C6", "D7", "E6", "B4"]
|
||||||
|
|
|
@ -1,14 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/7skb/rev1
|
DEFAULT_FOLDER = salicylic_acid3/7skb/rev1
|
||||||
|
|
|
@ -8,6 +8,14 @@
|
||||||
"pid": "0x3060",
|
"pid": "0x3060",
|
||||||
"device_version": "0.1.3"
|
"device_version": "0.1.3"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"command": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"hue_steps": 10,
|
"hue_steps": 10,
|
||||||
"led_count": 9,
|
"led_count": 9,
|
||||||
|
|
|
@ -1,15 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
|
||||||
OLED_ENABLE = no
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/getta25/rev1
|
DEFAULT_FOLDER = salicylic_acid3/getta25/rev1
|
||||||
|
|
|
@ -8,6 +8,14 @@
|
||||||
"pid": "0xEB4F",
|
"pid": "0xEB4F",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"command": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B5"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B5"],
|
||||||
"rows": ["D1", "D0", "D4", "C6", "D7", "E6", "B4"]
|
"rows": ["D1", "D0", "D4", "C6", "D7", "E6", "B4"]
|
||||||
|
|
|
@ -1,14 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/jisplit89/rev1
|
DEFAULT_FOLDER = salicylic_acid3/jisplit89/rev1
|
||||||
|
|
|
@ -8,6 +8,13 @@
|
||||||
"pid": "0xE8BA",
|
"pid": "0xE8BA",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgb_matrix": {
|
"rgb_matrix": {
|
||||||
"driver": "ws2812"
|
"driver": "ws2812"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,15 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # 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 = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGB_MATRIX_ENABLE = no
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/naked48/rev1
|
DEFAULT_FOLDER = salicylic_acid3/naked48/rev1
|
||||||
|
|
|
@ -8,6 +8,12 @@
|
||||||
"pid": "0xEB5C",
|
"pid": "0xEB5C",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "D7", "E6", "B4", "B5", "D3"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "D7", "E6", "B4", "B5", "D3"],
|
||||||
"rows": ["B6", "D1", "D0", "D4", "C6"]
|
"rows": ["B6", "D1", "D0", "D4", "C6"]
|
||||||
|
|
|
@ -1,14 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # 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
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/naked60/rev1
|
DEFAULT_FOLDER = salicylic_acid3/naked60/rev1
|
||||||
|
|
|
@ -8,6 +8,14 @@
|
||||||
"pid": "0x3060",
|
"pid": "0x3060",
|
||||||
"device_version": "0.0.3"
|
"device_version": "0.0.3"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"command": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "D3"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "D3"],
|
||||||
"rows": ["D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5"]
|
"rows": ["D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5"]
|
||||||
|
|
|
@ -1,16 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
|
||||||
OLED_ENABLE = no
|
|
||||||
USE_I2C = no
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/naked64/rev1
|
DEFAULT_FOLDER = salicylic_acid3/naked64/rev1
|
||||||
|
|
|
@ -8,6 +8,13 @@
|
||||||
"pid": "0x3060",
|
"pid": "0x3060",
|
||||||
"device_version": "0.1.1"
|
"device_version": "0.1.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"extrakey": false,
|
||||||
|
"mousekey": false,
|
||||||
|
"nkro": false,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"hue_steps": 10,
|
"hue_steps": 10,
|
||||||
"led_count": 21,
|
"led_count": 21,
|
||||||
|
|
|
@ -1,17 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = no # 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
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
|
||||||
OLED_ENABLE = no
|
|
||||||
USE_I2C = no
|
|
||||||
RGB_MATRIX_ENABLE = no
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = salicylic_acid3/setta21/rev1
|
DEFAULT_FOLDER = salicylic_acid3/setta21/rev1
|
||||||
|
|
|
@ -80,13 +80,15 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"features": {
|
"features": {
|
||||||
|
"backlight": true,
|
||||||
"bootmagic": true,
|
"bootmagic": true,
|
||||||
"console": false,
|
"console": false,
|
||||||
"encoder": true,
|
"encoder": true,
|
||||||
"backlight": true,
|
|
||||||
"extrakey": true,
|
"extrakey": true,
|
||||||
"rgb_matrix": true,
|
"nkro": false,
|
||||||
"nkro": false
|
"pointing_device": true,
|
||||||
|
"quantum_painter": true,
|
||||||
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "GP14"
|
"pin": "GP14"
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
SERIAL_DRIVER = vendor
|
SERIAL_DRIVER = vendor
|
||||||
|
|
||||||
POINTING_DEVICE_ENABLE = yes
|
|
||||||
POINTING_DEVICE_DRIVER = cirque_pinnacle_spi
|
POINTING_DEVICE_DRIVER = cirque_pinnacle_spi
|
||||||
|
|
||||||
QUANTUM_PAINTER_ENABLE = yes
|
|
||||||
QUANTUM_PAINTER_DRIVERS += st7789_spi
|
QUANTUM_PAINTER_DRIVERS += st7789_spi
|
||||||
QUANTUM_PAINTER_LVGL_INTEGRATION = yes
|
QUANTUM_PAINTER_LVGL_INTEGRATION = yes
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,8 @@
|
||||||
"console": false,
|
"console": false,
|
||||||
"extrakey": true,
|
"extrakey": true,
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": true
|
"nkro": true,
|
||||||
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
"diode_direction": "ROW2COL",
|
"diode_direction": "ROW2COL",
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
RGB_MATRIX_ENABLE = yes
|
|
||||||
RGB_MATRIX_CUSTOM_KB = yes
|
RGB_MATRIX_CUSTOM_KB = yes
|
||||||
|
|
||||||
DEFAULT_FOLDER = teleport/native/iso
|
DEFAULT_FOLDER = teleport/native/iso
|
||||||
|
|
|
@ -15,5 +15,4 @@
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define SPLIT_HAND_PIN B3
|
|
||||||
#define EEPROM_I2C_24LC64
|
#define EEPROM_I2C_24LC64
|
||||||
|
|
|
@ -5,5 +5,13 @@
|
||||||
},
|
},
|
||||||
"eeprom": {
|
"eeprom": {
|
||||||
"driver": "i2c"
|
"driver": "i2c"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"split": {
|
||||||
|
"handedness": {
|
||||||
|
"pin": "B3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
POINTING_DEVICE_ENABLE = yes
|
|
||||||
POINTING_DEVICE_DRIVER = pimoroni_trackball
|
POINTING_DEVICE_DRIVER = pimoroni_trackball
|
||||||
|
|
|
@ -7,6 +7,15 @@
|
||||||
"vid": "0x574D",
|
"vid": "0x574D",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"command": true,
|
||||||
|
"console": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["B14", "B13", "B12", "B11", "B10", "B2", "B1", "B8", "B7", "B6", "B5", "B4", "B3", "A15", "A14"],
|
"cols": ["B14", "B13", "B12", "B11", "B10", "B2", "B1", "B8", "B7", "B6", "B5", "B4", "B3", "A15", "A14"],
|
||||||
"rows": ["A13", "B9", "F1", "A10", "A9"]
|
"rows": ["A13", "B9", "F1", "A10", "A9"]
|
||||||
|
|
|
@ -1,17 +1,4 @@
|
||||||
# Wildcard to allow APM32 MCU
|
# Wildcard to allow APM32 MCU
|
||||||
DFU_SUFFIX_ARGS = -v FFFF -p FFFF
|
DFU_SUFFIX_ARGS = -v FFFF -p FFFF
|
||||||
|
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = westm/westm68/rev2
|
DEFAULT_FOLDER = westm/westm68/rev2
|
||||||
|
|
|
@ -7,6 +7,14 @@
|
||||||
"vid": "0x574D",
|
"vid": "0x574D",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"oled": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["B8", "B5", "B4"],
|
"cols": ["B8", "B5", "B4"],
|
||||||
"rows": ["A14", "A15", "B3"]
|
"rows": ["A14", "A15", "B3"]
|
||||||
|
|
|
@ -1,19 +1,4 @@
|
||||||
# Wildcard to allow APM32 MCU
|
# Wildcard to allow APM32 MCU
|
||||||
DFU_SUFFIX_ARGS = -v FFFF -p FFFF
|
DFU_SUFFIX_ARGS = -v FFFF -p FFFF
|
||||||
|
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # 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 = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
OLED_ENABLE = yes # Enable the OLED feature
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = westm/westm9/rev2
|
DEFAULT_FOLDER = westm/westm9/rev2
|
||||||
|
|
|
@ -3,5 +3,8 @@
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"bluetooth": {
|
"bluetooth": {
|
||||||
"driver": "bluefruit_le"
|
"driver": "bluefruit_le"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bluetooth": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,2 @@
|
||||||
# Processor frequency
|
# Processor frequency
|
||||||
F_CPU = 8000000
|
F_CPU = 8000000
|
||||||
|
|
||||||
BLUETOOTH_ENABLE = yes
|
|
||||||
|
|
|
@ -8,6 +8,18 @@
|
||||||
"pid": "0x1DF9",
|
"pid": "0x1DF9",
|
||||||
"max_power": 100
|
"max_power": 100
|
||||||
},
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"encoder": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgb_matrix": {
|
"rgb_matrix": {
|
||||||
"animations": {
|
"animations": {
|
||||||
"alphas_mods": true,
|
"alphas_mods": true,
|
||||||
|
|
|
@ -1,21 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # 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 = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
ENCODER_ENABLE = yes
|
|
||||||
LTO_ENABLE = yes
|
|
||||||
|
|
||||||
RGB_MATRIX_ENABLE = yes
|
|
||||||
LTO_ENABLE = yes
|
|
||||||
|
|
||||||
SRC += rgb_functions.c
|
SRC += rgb_functions.c
|
||||||
|
|
||||||
DEFAULT_FOLDER = work_louder/loop/rev3
|
DEFAULT_FOLDER = work_louder/loop/rev3
|
||||||
|
|
|
@ -8,6 +8,16 @@
|
||||||
"pid": "0x0204",
|
"pid": "0x0204",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"audio": true,
|
||||||
|
"bootmagic": false,
|
||||||
|
"encoder": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"oled": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"led_count": 8,
|
"led_count": 8,
|
||||||
"animations": {
|
"animations": {
|
||||||
|
|
|
@ -1,20 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # 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 = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = yes # Audio output
|
|
||||||
ENCODER_ENABLE = yes
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
|
|
||||||
AUDIO_DRIVER = pwm_hardware
|
AUDIO_DRIVER = pwm_hardware
|
||||||
|
|
||||||
RGB_MATRIX_ENABLE = no # Do not enable with RGBLIGHT
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = yanghu/unicorne/f411
|
DEFAULT_FOLDER = yanghu/unicorne/f411
|
||||||
|
|
Loading…
Reference in New Issue