From 6832a067ef8966993319f07f34a4a08b39c2ded4 Mon Sep 17 00:00:00 2001 From: zvecr Date: Fri, 22 Feb 2019 21:10:16 +0000 Subject: [PATCH] Add vendor and product arguments to atmega32a_program.py - fix hex print --- util/atmega32a_program.py | 8 ++++---- 1 file 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()