Vendor HID for upgrades (#529)

* vendor-hid for upgrades

* empty argument fix

* same vendor-hid usage in both deploys

* forgot one board

* aaand also forgot the quotes
This commit is contained in:
kaczmarczyck
2022-08-17 10:29:26 +02:00
committed by GitHub
parent 87839af572
commit 4442998b64
4 changed files with 30 additions and 5 deletions

View File

@@ -212,10 +212,10 @@ if __name__ == "__main__":
"haven't been both programmed yet."),
)
parser.add_argument(
"--use-vendor-hid",
"--vendor-hid",
default=False,
action="store_true",
dest="use_vendor_hid",
help=("Whether to configure the device using the Vendor HID interface"),
help=("Whether to configure the device using the Vendor HID interface."),
)
main(parser.parse_args())