Browse Source

Allow EEPROM_DRIVER from info.json (#20313)

pull/20316/head
Joel Challis 1 year ago
committed by GitHub
parent
commit
1b8c7c39d7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions
  1. +1
    -0
      data/mappings/info_rules.hjson
  2. +5
    -0
      data/schemas/keyboard.jsonschema

+ 1
- 0
data/mappings/info_rules.hjson View File

@ -17,6 +17,7 @@
"BACKLIGHT_DRIVER": {"info_key": "backlight.driver"},
"CAPS_WORD_ENABLE": {"info_key": "caps_word.enabled", "value_type": "bool"},
"DEBOUNCE_TYPE": {"info_key": "build.debounce_type"},
"EEPROM_DRIVER": {"info_key": "eeprom.driver"},
"ENCODER_ENABLE": {"info_key": "encoder.enabled", "value_type": "bool"},
"FIRMWARE_FORMAT": {"info_key": "build.firmware_format"},
"KEYBOARD_SHARED_EP": {"info_key": "usb.shared_endpoint.keyboard", "value_type": "bool"},


+ 5
- 0
data/schemas/keyboard.jsonschema View File

@ -241,6 +241,11 @@
"type": "array",
"items": {"$ref": "qmk.definitions.v1#/filename"}
},
"eeprom": {
"properties": {
"driver": {"type": "string"}
}
},
"encoder": {
"$ref": "#/definitions/encoder_config",
"properties": {


Loading…
Cancel
Save