Move matrix config to info.json, part 6 (#20019)
This commit is contained in:
parent
9e64300e67
commit
76cc7fe109
702 changed files with 1779 additions and 5015 deletions
|
@ -3,11 +3,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
|
||||
// wiring of each half
|
||||
#define MATRIX_ROW_PINS { B10 }
|
||||
#define MATRIX_COL_PINS { B1 }
|
||||
|
||||
#define SPLIT_HAND_PIN A7
|
||||
|
||||
#if !(defined(USE_SDI1_ON_STANDARD_ROLE_PINS) || defined(USE_SDI1_ON_ALTERNATE_ROLE_PINS) || defined(USE_SDI2))
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
"matrix_pins": {
|
||||
"cols": ["B1"],
|
||||
"rows": ["B10"]
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"processor": "STM32F103",
|
||||
"bootloader": "stm32duino"
|
||||
}
|
||||
|
|
|
@ -18,9 +18,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#pragma once
|
||||
|
||||
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||
#define LOCKING_SUPPORT_ENABLE
|
||||
/* Locking resynchronize hack */
|
||||
|
|
|
@ -20,9 +20,6 @@
|
|||
// use I2C on AVR
|
||||
#define USE_I2C
|
||||
|
||||
// wiring of each half
|
||||
#define MATRIX_ROW_PINS { B3 }
|
||||
#define MATRIX_COL_PINS { B6 }
|
||||
#define SPLIT_HAND_PIN F6
|
||||
|
||||
/* ws2812 RGB LED */
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
"matrix_pins": {
|
||||
"cols": ["B6"],
|
||||
"rows": ["B3"]
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"soft_serial_pin": "D1"
|
||||
},
|
||||
|
|
|
@ -20,9 +20,6 @@
|
|||
// use I2C on AVR
|
||||
#define USE_I2C
|
||||
|
||||
// wiring of each half
|
||||
#define MATRIX_ROW_PINS { F5 }
|
||||
#define MATRIX_COL_PINS { F7 }
|
||||
#define SPLIT_HAND_PIN F0
|
||||
|
||||
/* ws2812 RGB LED */
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
"matrix_pins": {
|
||||
"cols": ["F7"],
|
||||
"rows": ["F5"]
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"soft_serial_pin": "D1"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue