DD bootmagic config (#19201)

* DD bootmagic config

* Also enable

* docs
This commit is contained in:
Joel Challis 2022-11-30 04:27:21 +00:00 committed by GitHub
parent 20b901366a
commit c952458c78
Failed to generate hash of commit
4 changed files with 57 additions and 0 deletions

View file

@ -131,6 +131,22 @@
}
}
},
"bootmagic":{
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {"type": "boolean"},
"matrix": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "integer",
"minimum": 0
}
}
}
},
"board": {
"type": "string",
"minLength": 2,
@ -510,6 +526,21 @@
"additionalProperties": false,
"properties": {
"enabled": {"type": "boolean"},
"bootmagic":{
"type": "object",
"additionalProperties": false,
"properties": {
"matrix": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "integer",
"minimum": 0
}
}
}
},
"matrix_grid": {
"type": "array",
"items": {"$ref": "qmk.definitions.v1#/mcu_pin"}