mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 08:14:00 +08:00
FW query: catch asserts from uds.py (#22456)
old-commit-hash: 95957bc188504e0c8d97071178d820a1222ababd
This commit is contained in:
@@ -108,7 +108,12 @@ class IsoTpParallelQuery:
|
||||
break
|
||||
|
||||
for tx_addr, msg in msgs.items():
|
||||
dat: Optional[bytes] = msg.recv()
|
||||
try:
|
||||
dat: Optional[bytes] = msg.recv()
|
||||
except Exception:
|
||||
cloudlog.exception("Error processing UDS response")
|
||||
request_done[tx_addr] = True
|
||||
continue
|
||||
|
||||
if not dat:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user