Move matrix config to info.json, part 4 (#20001)

This commit is contained in:
Ryan
2023-03-11 00:00:24 +11:00
committed by GitHub
parent dd086a51d8
commit 9e64300e67
584 changed files with 1484 additions and 3703 deletions

View File

@@ -19,12 +19,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B1", "B10", "B3", "B4", "B5"],
"rows": ["A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,8 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* Trackball angle adjustment. */
#define ROTATIONAL_TRANSFORM_ANGLE -25

View File

@@ -18,17 +18,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ C7, F0, D7, E6, B4 }
#define MATRIX_ROW_PINS_RIGHT \
{ F0, C6, D4, B5 }
#define MATRIX_COL_PINS_RIGHT \
{ C7, B7, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,8 +3,19 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["C7", "F0", "D7", "E6", "B4"],
"rows": ["B7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
"soft_serial_pin": "D2",
"matrix_pins": {
"right": {
"cols": ["C7", "B7", "D7", "E6", "B4"],
"rows": ["F0", "C6", "D4", "B5"]
}
}
},
"processor": "atmega32u4",
"bootloader": "atmel-dfu"

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B0, B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
"rows": ["A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,8 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* Trackball angle adjustment. */
#define ROTATIONAL_TRANSFORM_ANGLE -25

View File

@@ -17,17 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ D5, C7, F0, D7, E6, B4 }
#define MATRIX_ROW_PINS_RIGHT \
{ F0, C6, D4, B5 }
#define MATRIX_COL_PINS_RIGHT \
{ F1, C7, B7, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,8 +3,19 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["D5", "C7", "F0", "D7", "E6", "B4"],
"rows": ["B7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
"soft_serial_pin": "D2",
"matrix_pins": {
"right": {
"cols": ["F1", "C7", "B7", "D7", "E6", "B4"],
"rows": ["F0", "C6", "D4", "B5"]
}
}
},
"processor": "atmega32u4",
"bootloader": "atmel-dfu"

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -19,12 +19,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B15, A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B0, B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
"rows": ["B15", "A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,8 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* Trackball angle adjustment. */
#define ROTATIONAL_TRANSFORM_ANGLE -25

View File

@@ -18,17 +18,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F1, B7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ D5, C7, F0, D7, E6, B4 }
#define MATRIX_ROW_PINS_RIGHT \
{ D5, F0, C6, D4, B5 }
#define MATRIX_COL_PINS_RIGHT \
{ F1, C7, B7, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,8 +3,19 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["D5", "C7", "F0", "D7", "E6", "B4"],
"rows": ["F1", "B7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
"soft_serial_pin": "D2",
"matrix_pins": {
"right": {
"cols": ["F1", "C7", "B7", "D7", "E6", "B4"],
"rows": ["D5", "F0", "C6", "D4", "B5"]
}
}
},
"processor": "atmega32u4",
"bootloader": "atmel-dfu"

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F4, F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F4", "F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP29, GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP29, GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F4, F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F4", "F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP4, GP5, GP28, GP26 }
#define MATRIX_COL_PINS \
{ GP8, GP9, GP7, GP6, GP27 }
/* Handedness. */
#define SPLIT_HAND_PIN GP29
#define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.

View File

@@ -1,5 +1,10 @@
{
"keyboard_name": "Dilemma (3x5+2) Assembled",
"matrix_pins": {
"cols": ["GP8", "GP9", "GP7", "GP6", "GP27"],
"rows": ["GP4", "GP5", "GP28", "GP26"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP4, GP5, GP28, GP26 }
#define MATRIX_COL_PINS \
{ GP8, GP9, GP7, GP6, GP27 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -1,5 +1,10 @@
{
"keyboard_name": "Dilemma (3x5+2) Splinky",
"matrix_pins": {
"cols": ["GP8", "GP9", "GP7", "GP6", "GP27"],
"rows": ["GP4", "GP5", "GP28", "GP26"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP4, GP5, GP27, GP26 }
#define MATRIX_COL_PINS \
{ GP8, GP9, GP7, GP6, GP28 }
/* Handedness. */
#define SPLIT_HAND_PIN GP29
#define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.

View File

@@ -4,6 +4,11 @@
"device_version": "2.0.0",
"pid": "0x1835"
},
"matrix_pins": {
"cols": ["GP8", "GP9", "GP7", "GP6", "GP28"],
"rows": ["GP4", "GP5", "GP27", "GP26"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -18,9 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* Pointing device configuration. */
// Enable use of pointing device on slave split.

View File

@@ -19,12 +19,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B15, A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B0, B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
"rows": ["B15", "A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,9 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* RGB settings. */
#define RGBLED_NUM 58
#define RGBLED_SPLIT \

View File

@@ -18,12 +18,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ D7, B5, F7, F6, B6 }
#define MATRIX_COL_PINS \
{ B4, E6, C6, B1, B3, B2 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B4", "E6", "C6", "B1", "B3", "B2"],
"rows": ["D7", "B5", "F7", "F6", "B6"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D0"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F4, F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F4", "F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP29, GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP29, GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F4, F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F4", "F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -19,12 +19,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B1", "B10", "B3", "B4", "B5"],
"rows": ["A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,9 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* RGB settings. */
#define RGBLED_NUM 36
#define RGBLED_SPLIT \

View File

@@ -18,12 +18,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B5, F7, F6, B6 }
#define MATRIX_COL_PINS \
{ E6, C6, B1, B3, B2 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["E6", "C6", "B1", "B3", "B2"],
"rows": ["B5", "F7", "F6", "B6"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D0"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,10 +17,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
#define MATRIX_ROW_PINS { D7, B5, F7, F6, B6 }
#define MATRIX_COL_PINS { B4, E6, C6, B1, B3, B2 }
#define RGB_DI_PIN D2
#define RGBLED_NUM 38
#define RGBLED_SPLIT { 19, 19 }

View File

@@ -5,6 +5,11 @@
"device_version": "0.0.1",
"pid": "0x1828"
},
"matrix_pins": {
"cols": ["B4", "E6", "C6", "B1", "B3", "B2"],
"rows": ["D7", "B5", "F7", "F6", "B6"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D0"
},

View File

@@ -19,12 +19,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ A2, B8, A8, B9 }
#define MATRIX_COL_PINS \
{ B0, B1, B10, B3, B4, B5 }
/* Handedness. */
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
"rows": ["A2", "B8", "A8", "B9"]
},
"diode_direction": "ROW2COL",
"processor": "STM32F411",
"bootloader": "stm32-dfu",
"board": "BLACKPILL_STM32_F411"

View File

@@ -18,9 +18,6 @@
#pragma once
#define DIODE_DIRECTION ROW2COL
/* RGB settings. */
#define RGBLED_NUM 42
#define RGBLED_SPLIT \

View File

@@ -18,12 +18,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ B5, F7, F6, B6 }
#define MATRIX_COL_PINS \
{ B4, E6, C6, B1, B3, B2 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "1.0.0"
},
"matrix_pins": {
"cols": ["B4", "E6", "C6", "B1", "B3", "B2"],
"rows": ["B5", "F7", "F6", "B6"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D0"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP15, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ GP26, GP5, GP4, GP9 }
#define MATRIX_COL_PINS \
{ GP27, GP28, GP21, GP6, GP7, GP8 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
"rows": ["GP26", "GP5", "GP4", "GP9"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "GP1"
},

View File

@@ -17,12 +17,6 @@
#pragma once
/* Key matrix configuration. */
#define MATRIX_ROW_PINS \
{ F7, C6, D4, B5 }
#define MATRIX_COL_PINS \
{ F6, F5, B6, D7, E6, B4 }
/* Handedness. */
#define MASTER_RIGHT

View File

@@ -3,6 +3,11 @@
"usb": {
"device_version": "2.0.0"
},
"matrix_pins": {
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
"rows": ["F7", "C6", "D4", "B5"]
},
"diode_direction": "ROW2COL",
"split": {
"soft_serial_pin": "D2"
},