mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 11:30:30 +08:00
Allow EEPROM_DRIVER from info.json (#20313)
This commit is contained in:
parent
5b0bd553b3
commit
1b8c7c39d7
|
@ -17,6 +17,7 @@
|
||||||
"BACKLIGHT_DRIVER": {"info_key": "backlight.driver"},
|
"BACKLIGHT_DRIVER": {"info_key": "backlight.driver"},
|
||||||
"CAPS_WORD_ENABLE": {"info_key": "caps_word.enabled", "value_type": "bool"},
|
"CAPS_WORD_ENABLE": {"info_key": "caps_word.enabled", "value_type": "bool"},
|
||||||
"DEBOUNCE_TYPE": {"info_key": "build.debounce_type"},
|
"DEBOUNCE_TYPE": {"info_key": "build.debounce_type"},
|
||||||
|
"EEPROM_DRIVER": {"info_key": "eeprom.driver"},
|
||||||
"ENCODER_ENABLE": {"info_key": "encoder.enabled", "value_type": "bool"},
|
"ENCODER_ENABLE": {"info_key": "encoder.enabled", "value_type": "bool"},
|
||||||
"FIRMWARE_FORMAT": {"info_key": "build.firmware_format"},
|
"FIRMWARE_FORMAT": {"info_key": "build.firmware_format"},
|
||||||
"KEYBOARD_SHARED_EP": {"info_key": "usb.shared_endpoint.keyboard", "value_type": "bool"},
|
"KEYBOARD_SHARED_EP": {"info_key": "usb.shared_endpoint.keyboard", "value_type": "bool"},
|
||||||
|
|
|
@ -241,6 +241,11 @@
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {"$ref": "qmk.definitions.v1#/filename"}
|
"items": {"$ref": "qmk.definitions.v1#/filename"}
|
||||||
},
|
},
|
||||||
|
"eeprom": {
|
||||||
|
"properties": {
|
||||||
|
"driver": {"type": "string"}
|
||||||
|
}
|
||||||
|
},
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"$ref": "#/definitions/encoder_config",
|
"$ref": "#/definitions/encoder_config",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
Loading…
Reference in a new issue