mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-05 00:05:57 +08:00
Panda signature needs to be bytes
old-commit-hash: 21572ce67b324c6aa4eb2796ee8b57af279d1ce9
This commit is contained in:
+1
-1
@@ -58,7 +58,7 @@ def update_panda():
|
||||
serial = None
|
||||
|
||||
panda_version = "bootstub" if panda.bootstub else panda.get_version()
|
||||
panda_signature = "bootstub" if panda.bootstub else panda.get_signature()
|
||||
panda_signature = b"" if panda.bootstub else panda.get_signature()
|
||||
cloudlog.warning("Panda %s connected, version: %s, signature %s, expected %s" % (
|
||||
serial,
|
||||
panda_version,
|
||||
|
||||
Reference in New Issue
Block a user