Move matrix config to info.json, part 2 (#19987)

This commit is contained in:
Ryan
2023-03-10 22:16:56 +11:00
committed by GitHub
parent 80661e5f19
commit dd086a51d8
494 changed files with 1235 additions and 3287 deletions

View File

@@ -19,22 +19,6 @@
/* select keyboard master board - I2C or Serial communication master */
#define MASTER_RIGHT
// wiring of each half
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2}
#define MATRIX_ROW_PINS { D4, C6, D7, E6, B4, B5}
#define MATRIX_COL_PINS_RIGHT {F7, F6, F5, F4, B5, B4, E6}
#define MATRIX_ROW_PINS_RIGHT { D1, D0, D4, C6, D7, D3} // TX
/* COL2ROW, ROW2COL*/
#define DIODE_DIRECTION COL2ROW
/*************************************/
/** public parameter **/
/*************************************/

View File

@@ -8,8 +8,19 @@
"pid": "0x1233",
"device_version": "0.0.1"
},
"matrix_pins": {
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2"],
"rows": ["D4", "C6", "D7", "E6", "B4", "B5"]
},
"diode_direction": "COL2ROW",
"split": {
"soft_serial_pin": "D3"
"soft_serial_pin": "D3",
"matrix_pins": {
"right": {
"cols": ["F7", "F6", "F5", "F4", "B5", "B4", "E6"],
"rows": ["D1", "D0", "D4", "C6", "D7", "D3"]
}
}
},
"processor": "atmega32u4",
"bootloader": "caterina",