summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2019-02-22 21:10:16 +0000
committerskullydazed <skullydazed@users.noreply.github.com>2019-04-12 14:04:40 -0700
commit6832a067ef8966993319f07f34a4a08b39c2ded4 (patch)
treed73e59a920aa0170e179f9d79c17b38fb2fae217
parent0e88d756f92d1254c58e66f9538c07b68ded489c (diff)
Add vendor and product arguments to atmega32a_program.py - fix hex print0.6.332
-rwxr-xr-xutil/atmega32a_program.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/atmega32a_program.py b/util/atmega32a_program.py
index 324614aff6..9438c7e779 100755
--- a/util/atmega32a_program.py
+++ b/util/atmega32a_program.py
@@ -42,8 +42,8 @@ def flash_keyboard(firmware_file):
def print_device_info(dev):
"""Prints all infos for a given USB device"""
print('Device Information:')
- print(' idVendor: %d (0x%02x)' % (dev.idVendor, dev.idVendor))
- print(' idProduct: %d (0x%02x)' % (dev.idProduct, dev.idProduct))
+ print(' idVendor: %d (0x%04x)' % (dev.idVendor, dev.idVendor))
+ print(' idProduct: %d (0x%04x)' % (dev.idProduct, dev.idProduct))
print('Manufacturer: %s' % (dev.iManufacturer))
print('Serial: %s' % (dev.iSerialNumber))
print('Product: %s' % (dev.iProduct), end='\n\n')
@@ -71,8 +71,8 @@ def auto_int(value):
return int(value, 0)
parser = argparse.ArgumentParser(description='Flash bootloadHID device')
-parser.add_argument('--vendor', type=auto_int, default=0x20A0, help='Non bootloader idVendor to search for (default: 0x%(default)02x)')
-parser.add_argument('--product', type=auto_int, default=0x422D, help='Non bootloader idProduct to search for (default: 0x%(default)02x)')
+parser.add_argument('--vendor', type=auto_int, default=0x20A0, help='Non bootloader idVendor to search for (default: 0x%(default)04x)')
+parser.add_argument('--product', type=auto_int, default=0x422D, help='Non bootloader idProduct to search for (default: 0x%(default)04x)')
parser.add_argument('firmware_hex', type=argparse.FileType('r'), help='Firmware hex file to flash')
args = parser.parse_args()