Move `SPLIT_KEYBOARD` to data driven (#21410)

master
Duncan Sutherland 2024-04-12 04:22:15 +01:00 committed by GitHub
parent cb81913d18
commit 8caa8674d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
445 changed files with 412 additions and 355 deletions

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"matrix_pins": { "matrix_pins": {
"right": { "right": {

View File

@ -16,10 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
# Charybdis nano is a split 3x5 keyboard with a maximum of 3 thumb keys (2 on
# the trackball side).
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -16,10 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
# Charybdis nano is a split 3x5 keyboard with a maximum of 3 thumb keys (2 on
# the trackball side).
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"matrix_pins": { "matrix_pins": {
"right": { "right": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default.
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default. RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default.
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"matrix_pins": { "matrix_pins": {
"right": { "right": {

View File

@ -16,10 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default.
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default. RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default.
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
# Charybdis is a split 4x6 keyboard with a maximum of 5 thumb keys (3 on the
# trackball side).
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -16,10 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default.
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default. RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default.
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
# Charybdis is a split 4x6 keyboard with a maximum of 5 thumb keys (3 on the
# trackball side).
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
POINTING_DEVICE_ENABLE = yes # Enable trackball POINTING_DEVICE_ENABLE = yes # Enable trackball
POINTING_DEVICE_DRIVER = pmw3360 POINTING_DEVICE_DRIVER = pmw3360
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint

View File

@ -6,6 +6,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"processor": "RP2040", "processor": "RP2040",

View File

@ -20,5 +20,3 @@ SERIAL_DRIVER = vendor
POINTING_DEVICE_ENABLE = yes POINTING_DEVICE_ENABLE = yes
POINTING_DEVICE_DRIVER = cirque_pinnacle_spi # Assembled version uses SPI. POINTING_DEVICE_DRIVER = cirque_pinnacle_spi # Assembled version uses SPI.
SPLIT_KEYBOARD = yes

View File

@ -6,6 +6,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"processor": "RP2040", "processor": "RP2040",

View File

@ -20,5 +20,3 @@ SERIAL_DRIVER = vendor
POINTING_DEVICE_ENABLE = yes POINTING_DEVICE_ENABLE = yes
POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c # DIY version uses I2C. POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c # DIY version uses I2C.
SPLIT_KEYBOARD = yes

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
KEYBOARD_SHARED_EP = yes KEYBOARD_SHARED_EP = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D0" "soft_serial_pin": "D0"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart SERIAL_DRIVER = usart

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
KEYBOARD_SHARED_EP = yes KEYBOARD_SHARED_EP = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D0" "soft_serial_pin": "D0"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart SERIAL_DRIVER = usart

View File

@ -30,6 +30,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D0" "soft_serial_pin": "D0"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -10,4 +10,3 @@ NKRO_ENABLE = no # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes

View File

@ -6,6 +6,9 @@
"eeprom": { "eeprom": {
"driver": "spi" "driver": "spi"
}, },
"split": {
"enabled": true
},
"rgb_matrix": { "rgb_matrix": {
"driver": "ws2812" "driver": "ws2812"
}, },

View File

@ -16,8 +16,6 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
KEYBOARD_SHARED_EP = yes KEYBOARD_SHARED_EP = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D0" "soft_serial_pin": "D0"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -15,6 +15,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -15,5 +15,3 @@ AUDIO_SUPPORTED = no # Audio is not supported
RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE) RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
SPLIT_KEYBOARD = yes

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -12,6 +12,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "GP1" "soft_serial_pin": "GP1"
}, },
"ws2812": { "ws2812": {

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = vendor SERIAL_DRIVER = vendor

View File

@ -19,6 +19,7 @@
}, },
"diode_direction": "ROW2COL", "diode_direction": "ROW2COL",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "A3" "soft_serial_pin": "A3"
}, },
"development_board": "stemcell" "development_board": "stemcell"

View File

@ -16,6 +16,4 @@ RGB_MATRIX_SUPPORTED = yes # RGB matrix is supported and enabled by default
RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default RGBLIGHT_SUPPORTED = yes # RGB underglow is supported, but not enabled by default
RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix functionality
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart SERIAL_DRIVER = usart

View File

@ -0,0 +1,5 @@
{
"split": {
"enabled": true
}
}

View File

@ -0,0 +1,5 @@
{
"split":{
"enabled": true
}
}

View File

@ -28,6 +28,7 @@
] ]
}, },
"split": { "split": {
"enabled": true,
"bootmagic": { "bootmagic": {
"matrix": [4, 5] "matrix": [4, 5]
}, },

View File

@ -1,2 +1 @@
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart SERIAL_DRIVER = usart

View File

@ -14,6 +14,7 @@
}, },
"diode_direction": "COL2ROW", "diode_direction": "COL2ROW",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -11,4 +11,3 @@ RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
SWAP_HANDS_ENABLE = no # Enable one-hand typing SWAP_HANDS_ENABLE = no # Enable one-hand typing
OLED_ENABLE = no # Add OLED displays support OLED_ENABLE = no # Add OLED displays support
SPLIT_KEYBOARD = yes

View File

@ -14,6 +14,7 @@
}, },
"diode_direction": "COL2ROW", "diode_direction": "COL2ROW",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"processor": "atmega32u4", "processor": "atmega32u4",

View File

@ -1 +1 @@
SPLIT_KEYBOARD = yes # File intentionally blank

View File

@ -0,0 +1,5 @@
{
"split": {
"enabled": true
}
}

View File

@ -11,6 +11,4 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes
DEFAULT_FOLDER = dailycraft/wings42/rev2 DEFAULT_FOLDER = dailycraft/wings42/rev2

View File

@ -0,0 +1,5 @@
{
"split": {
"enabled": true
}
}

View File

@ -11,6 +11,4 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes
DEFAULT_FOLDER = deltasplit75/v2 DEFAULT_FOLDER = deltasplit75/v2

View File

@ -14,6 +14,7 @@
}, },
"diode_direction": "COL2ROW", "diode_direction": "COL2ROW",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2" "soft_serial_pin": "D2"
}, },
"rgblight": { "rgblight": {

View File

@ -10,5 +10,3 @@ NKRO_ENABLE = no # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes

View File

@ -14,6 +14,7 @@
}, },
"diode_direction": "COL2ROW", "diode_direction": "COL2ROW",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D1", "soft_serial_pin": "D1",
"matrix_pins": { "matrix_pins": {
"right": { "right": {

View File

@ -10,4 +10,3 @@ NKRO_ENABLE = no # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes

View File

@ -36,6 +36,7 @@
] ]
}, },
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"encoder": { "encoder": {
"right": { "right": {

View File

@ -10,7 +10,6 @@ NKRO_ENABLE = yes # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes
OLED_ENABLE = yes OLED_ENABLE = yes
WPM_ENABLE = yes WPM_ENABLE = yes
ENCODER_ENABLE = yes ENCODER_ENABLE = yes

View File

@ -20,6 +20,7 @@
] ]
}, },
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"encoder": { "encoder": {
"right": { "right": {

View File

@ -9,5 +9,4 @@ COMMAND_ENABLE = no # Commands for debug and configuration
NKRO_ENABLE = no # Enable N-Key Rollover NKRO_ENABLE = no # Enable N-Key Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes
LTO_ENABLE = yes LTO_ENABLE = yes

View File

@ -41,6 +41,7 @@
}, },
"diode_direction": "COL2ROW", "diode_direction": "COL2ROW",
"split": { "split": {
"enabled": true,
"soft_serial_pin": "D2", "soft_serial_pin": "D2",
"transport": { "transport": {
"sync": { "sync": {

View File

@ -11,6 +11,5 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
RGB_MATRIX_ENABLE = yes RGB_MATRIX_ENABLE = yes
AUDIO_ENABLE = no # Audio output AUDIO_ENABLE = no # Audio output
SPLIT_KEYBOARD = yes
OLED_ENABLE = yes OLED_ENABLE = yes
LTO_ENABLE = yes LTO_ENABLE = yes

Some files were not shown because too many files have changed in this diff Show More