Skip to content
Snippets Groups Projects
Commit 5fc42a6c authored by Damien George's avatar Damien George
Browse files

tools, pydfu: Some fixes to support Python 3.

parent 842210f5
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ def consume(fmt, data, names):
def cstring(string):
"""Extracts a null-terminated string from a byte array."""
return string.split('\0', 1)[0]
return string.split(b'\0', 1)[0]
def compute_crc(data):
......@@ -361,8 +361,8 @@ def get_dfu_devices(*args, **kwargs):
refine the search.
"""
return usb.core.find(*args, find_all=True,
custom_match=FilterDFU(), **kwargs)
return list(usb.core.find(*args, find_all=True,
custom_match=FilterDFU(), **kwargs))
def get_memory_layout(device):
......@@ -504,7 +504,11 @@ def main():
list_dfu_devices(idVendor=__VID, idProduct=__PID)
return
try:
init()
except ValueError as er:
print(str(er))
sys.exit(1)
if args.mass_erase:
print ("Mass erase...")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment