diff options
| author | Joel Challis | 2024-07-18 01:02:53 +0200 |
|---|---|---|
| committer | GitHub | 2024-07-18 01:02:53 +0200 |
| commit | 4ab36df48fba751ca88beaf1a7a5dd84ba34a370 (patch) | |
| tree | ab44efbe8cb23798a177143d0c1ebc1a68bc26ac /data/schemas/keyboard.jsonschema | |
| parent | daa777d6fb655c5fe16df4b3f1e89a37ab35dc57 (diff) | |
Move split.soft_serial_pin to split.serial.pin (#24127)
Diffstat (limited to 'data/schemas/keyboard.jsonschema')
| -rw-r--r-- | data/schemas/keyboard.jsonschema | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index e758c325c7..7649a8e31b 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -823,7 +823,10 @@ } } }, - "soft_serial_pin": {"$ref": "qmk.definitions.v1#/mcu_pin"}, + "soft_serial_pin": { + "$ref": "qmk.definitions.v1#/mcu_pin", + "$comment": "Deprecated: use split.serial.pin instead" + }, "soft_serial_speed": { "type": "integer", "minimum": 0, @@ -836,7 +839,8 @@ "driver": { "type": "string", "enum": ["bitbang", "usart", "vendor"] - } + }, + "pin": {"$ref": "qmk.definitions.v1#/mcu_pin"} } }, "transport": { |