flashtool: remove UUID verification step

When multiple nodes are on the network the UUID query
can result in transmit errors, as multiple nodes with the
same ID will attempt to respond.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-08-28 06:23:38 -04:00
parent abd154526d
commit 13b61caf58
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B

View File

@ -468,12 +468,6 @@ class CanSocket:
return
await asyncio.sleep(.5)
self._reset_nodes()
await asyncio.sleep(.5)
id_list = await self._query_uuids()
if uuid not in id_list:
raise FlashCanError(
f"Unable to find node matching UUID: {uuid:012x}"
)
node = self._set_node_id(uuid)
flasher = CanFlasher(node, fw_path)
await asyncio.sleep(.5)