Convert config.h to data-driven

This commit is contained in:
James Young 2024-06-03 23:26:38 -07:00
parent 6c3540fb4e
commit 8e92cd27cf
No known key found for this signature in database
GPG Key ID: 87CBD151019773A8
2 changed files with 20 additions and 11 deletions

View File

@ -19,18 +19,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
// Key matrix parameters
#define MATRIX_ROWS (4 * 2) // split keyboard
#define MATRIX_COLS 6
#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
#define MATRIX_COL_PINS { D4, C6, D7, E6, B4, B5 }
#define MATRIX_MASKED
#define DEBOUNCE 5
#define DIODE_DIRECTION COL2ROW
// Split parameters
#define SOFT_SERIAL_PIN D2
#define SPLIT_HAND_MATRIX_GRID F6, B5
#define SPLIT_USB_DETECT
#ifdef OLED_ENABLE
# define SPLIT_OLED_ENABLE
#endif
@ -43,7 +34,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define SPLIT_TRANSACTION_IDS_KB KEYBALL_GET_INFO, KEYBALL_GET_MOTION, KEYBALL_SET_CPI
// RGB LED settings
#define WS2812_DI_PIN D3
#ifdef RGBLIGHT_ENABLE
# define RGBLED_NUM 48
# define RGBLED_SPLIT { 24, 24 } // (24 + 22)

View File

@ -7,6 +7,12 @@
"device_version": "1.0.0"
},
"development_board": "promicro",
"matrix_pins": {
"rows": ["F4", "F5", "F6", "F7"],
"cols": ["D4", "C6", "D7", "E6", "B4", "B5"]
},
"diode_direction": "COL2ROW",
"debounce": 5,
"features": {
"bootmagic": false,
"mousekey": false,
@ -29,14 +35,27 @@
"lto": true
},
"split": {
"enabled": true,
"soft_serial_pin": "D2",
"transport": {
"protocol": "serial"
},
"usb_detect": {
"enabled": true
},
"handedness": {
"matrix_grid": ["F6", "B5"]
}
},
"rgblight": {
"driver": "ws2812"
},
"rgb_matrix": {
"driver": "ws2812"
},
"ws2812": {
"pin": "D3"
},
"layout_aliases": {
"LAYOUT": "LAYOUT_right_ball",
"LAYOUT_universal": "LAYOUT_no_ball"