1
0
Fork 0

Move matrix config to info.json, part 6 (#20019)

This commit is contained in:
Ryan 2023-03-11 00:32:05 +11:00 committed by GitHub
parent 9e64300e67
commit 76cc7fe109
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
702 changed files with 1779 additions and 5015 deletions

View file

@ -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))

View file

@ -1,4 +1,9 @@
{
"matrix_pins": {
"cols": ["B1"],
"rows": ["B10"]
},
"diode_direction": "COL2ROW",
"processor": "STM32F103",
"bootloader": "stm32duino"
}

View file

@ -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 */

View file

@ -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 */

View file

@ -1,4 +1,9 @@
{
"matrix_pins": {
"cols": ["B6"],
"rows": ["B3"]
},
"diode_direction": "COL2ROW",
"split": {
"soft_serial_pin": "D1"
},

View file

@ -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 */

View file

@ -1,4 +1,9 @@
{
"matrix_pins": {
"cols": ["F7"],
"rows": ["F5"]
},
"diode_direction": "COL2ROW",
"split": {
"soft_serial_pin": "D1"
},