* Refactor bastardkb/charybdis/4x6 - Update keyboard aliases accordingly - Migrate various configuration to data-driven - Use short SPDX license headers - Remove configuration that trends towards user-specific (CRC Table) - Migrate common configuration upwards - Migrate keymap to JSON - Remove likely unneeded v1 revision per #23811 - Remove revisions splinky_2, splinky_3, and stemcell where a converter should be used - Rename v2/elitec -> elitec. Specifically named elitec, as this board requires pin compatibility with an Elite-C (bottom 5 pins) * Add aliases * Replace unecessarily removed split hand pin configuration * Revert "Replace unecessarily removed split hand pin configuration" This reverts commit 0b98d1bc140a4b18c16d2b524cc8731f016372b1. After second thought, it is not necessary to configure this by default, as any user who wishes to set handedness by pin and is using an Elite-C pin compatible development board will need to manually set the pin anyway, which likely means referencing the readme.md file, which also contains the necessary SPLIT_HAND_PIN_LOW_IS_LEFT configuration.
23 lines
458 B
JSON
23 lines
458 B
JSON
{
|
|
"development_board": "blackpill_f411",
|
|
"eeprom": {
|
|
"driver": "spi"
|
|
},
|
|
"matrix_pins": {
|
|
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
|
|
"rows": ["B15", "A2", "B8", "A8", "B9"]
|
|
},
|
|
"split": {
|
|
"handedness": {
|
|
"pin": "A3"
|
|
},
|
|
"serial": {
|
|
"driver": "usart",
|
|
"pin": "A9"
|
|
}
|
|
},
|
|
"ws2812": {
|
|
"driver": "pwm",
|
|
"pin": "A1"
|
|
}
|
|
}
|