Skip to content

Commit

Permalink
Update parser schema of zapper_iot to support genio_flash tool (#380)
Browse files Browse the repository at this point in the history
Update the TPLAN_SCHEMA in parser.py of zapper_iot to support
genio_flash tool.

Ref:
  - canonical/iot-auto-sanity#42
  • Loading branch information
baconYao authored Nov 7, 2024
1 parent a508842 commit d83de20
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"port": {"type": "string"},
"baud_rate": {
"type": "integer",
"enum": [115200, 9600],
"enum": [115200, 9600, 921600],
"default": 115200,
},
},
Expand Down Expand Up @@ -61,6 +61,7 @@
"utility": {
"type": "string",
"enum": [
"genio_flash",
"utp_com",
"uuu",
"uuu_bootloader",
Expand All @@ -69,6 +70,9 @@
],
},
"method": {"$ref": "#/$defs/method"},
"extra_provision_tool_args": {
"type": "string"
},
"timeout": {
"type": "integer",
"default": 600,
Expand Down

0 comments on commit d83de20

Please sign in to comment.