mirror of
https://github.com/Cian-H/qmk_firmware.git
synced 2026-08-13 09:23:22 +01:00
Migrate SPLIT_HAND_PIN to json (#23924)
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
/*
|
||||
Copyright 2019 Mike Hix
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
// Pro Micro Pins RX1
|
||||
#define SPLIT_HAND_PIN D2
|
||||
@@ -41,6 +41,9 @@
|
||||
},
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"handedness": {
|
||||
"pin": "D2"
|
||||
},
|
||||
"soft_serial_pin": "D0"
|
||||
},
|
||||
"processor": "atmega32u4",
|
||||
|
||||
@@ -19,7 +19,6 @@
|
||||
// in col2row col is input, and row is output
|
||||
// #define SPLIT_HAND_MATRIX_GRID A10, A4
|
||||
// 68kohm
|
||||
#define SPLIT_HAND_PIN B10
|
||||
|
||||
/* connection */
|
||||
#define SERIAL_USART_FULL_DUPLEX // Enable full duplex operation mode.
|
||||
|
||||
@@ -11,6 +11,9 @@
|
||||
},
|
||||
"serial": {
|
||||
"driver": "usart"
|
||||
},
|
||||
"handedness": {
|
||||
"pin": "B10"
|
||||
}
|
||||
},
|
||||
"development_board": "blackpill_f411",
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
/*
|
||||
Copyright 2020 jtallbean
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define SPLIT_HAND_PIN D5
|
||||
|
||||
/*
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
*/
|
||||
|
||||
/* disable debug print */
|
||||
//#define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
//#define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
//#define NO_ACTION_LAYER
|
||||
//#define NO_ACTION_TAPPING
|
||||
//#define NO_ACTION_ONESHOT
|
||||
@@ -32,6 +32,9 @@
|
||||
},
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"handedness": {
|
||||
"pin": "D5"
|
||||
},
|
||||
"soft_serial_pin": "D0",
|
||||
"matrix_pins": {
|
||||
"right": {
|
||||
|
||||
@@ -3,9 +3,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
// If the pin is high, then the controller assumes it is the left hand, and if it’s low, it’s assumed to be the right side.
|
||||
#define SPLIT_HAND_PIN C15
|
||||
|
||||
#define SERIAL_USART_FULL_DUPLEX
|
||||
#define SERIAL_USART_TX_PIN B6
|
||||
#define SERIAL_USART_RX_PIN B7
|
||||
|
||||
@@ -25,6 +25,9 @@
|
||||
},
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"handedness": {
|
||||
"pin": "C15"
|
||||
},
|
||||
"serial": {
|
||||
"driver": "usart"
|
||||
},
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
/* Copyright 2021 jurassic73
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/* this will be tied to high (VCC with a 2k to 10k resistor) on the left keyboard half and tied to low (GND using a wire jumper only) on the right keyboard half. This allows a user to plug in a USB cable to either side and function correctly with or without a TRS/TRRS cable with a single hex file. */
|
||||
#define SPLIT_HAND_PIN D1
|
||||
|
||||
/*
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
*/
|
||||
|
||||
/* disable debug print */
|
||||
//#define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
//#define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
//#define NO_ACTION_LAYER
|
||||
//#define NO_ACTION_TAPPING
|
||||
//#define NO_ACTION_ONESHOT
|
||||
@@ -29,6 +29,9 @@
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"handedness": {
|
||||
"pin": "D1"
|
||||
},
|
||||
"soft_serial_pin": "D0",
|
||||
"matrix_pins": {
|
||||
"right": {
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#define SPLIT_HAND_PIN A7
|
||||
|
||||
#if !(defined(USE_SDI1_ON_STANDARD_ROLE_PINS) || defined(USE_SDI1_ON_ALTERNATE_ROLE_PINS) || defined(USE_SDI2))
|
||||
#define USE_SDI1_ON_STANDARD_ROLE_PINS
|
||||
#endif
|
||||
|
||||
@@ -3,6 +3,11 @@
|
||||
"cols": ["B1"],
|
||||
"rows": ["B10"]
|
||||
},
|
||||
"split": {
|
||||
"handedness": {
|
||||
"pin": "A7"
|
||||
}
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"development_board": "bluepill",
|
||||
"features": {
|
||||
|
||||
@@ -16,8 +16,5 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
// use I2C on AVR
|
||||
#define USE_I2C
|
||||
|
||||
#define SPLIT_HAND_PIN F6
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"handedness": {
|
||||
"pin": "F6"
|
||||
},
|
||||
"soft_serial_pin": "D1"
|
||||
},
|
||||
"ws2812": {
|
||||
|
||||
@@ -16,11 +16,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
// use I2C on AVR
|
||||
#define USE_I2C
|
||||
|
||||
#define SPLIT_HAND_PIN F0
|
||||
|
||||
// teensy has vbus detection issues - use usb detection instead
|
||||
#define SPLIT_USB_DETECT
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"handedness": {
|
||||
"pin": "F0"
|
||||
},
|
||||
"soft_serial_pin": "D1"
|
||||
},
|
||||
"ws2812": {
|
||||
|
||||
@@ -19,7 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#pragma once
|
||||
|
||||
#define SPLIT_TRANSPORT_MIRROR
|
||||
#define SPLIT_HAND_PIN A6
|
||||
|
||||
// #define DEBUG_LED_PIN D6
|
||||
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
"diode_direction": "COL2ROW",
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"handedness": {
|
||||
"pin": "A6"
|
||||
},
|
||||
"soft_serial_pin": "D3",
|
||||
"bootmagic": {
|
||||
"matrix": [4, 5]
|
||||
|
||||
@@ -19,7 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#pragma once
|
||||
|
||||
// #define USB_VBUS_PIN B10
|
||||
#define SPLIT_HAND_PIN C14 // high = left, low = right
|
||||
|
||||
// WS2812 RGB LED strip input and number of LEDs
|
||||
#define WS2812_PWM_DRIVER PWMD3 // default: PWMD2
|
||||
|
||||
@@ -16,6 +16,9 @@
|
||||
"driver": "dac_additive"
|
||||
},
|
||||
"split": {
|
||||
"handedness": {
|
||||
"pin": "C14"
|
||||
},
|
||||
"serial": {
|
||||
"driver": "usart"
|
||||
}
|
||||
|
||||
@@ -19,7 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#pragma once
|
||||
|
||||
// #define USB_VBUS_PIN B10 // doesn't seem to work for me on one of my controllers... */
|
||||
#define SPLIT_HAND_PIN C14 // high = left, low = right
|
||||
|
||||
// WS2812 RGB LED strip input and number of LEDs
|
||||
#define WS2812_PWM_DRIVER PWMD2 // default: PWMD2
|
||||
|
||||
@@ -19,9 +19,12 @@
|
||||
"driver": "pwm_hardware"
|
||||
},
|
||||
"split": {
|
||||
"handedness": {
|
||||
"pin": "C14"
|
||||
},
|
||||
"serial": {
|
||||
"driver": "usart"
|
||||
}
|
||||
},
|
||||
},
|
||||
"ws2812": {
|
||||
"pin": "A1",
|
||||
|
||||
Reference in New Issue
Block a user