* bump panda

* fix mypy

* bump panda
pull/27528/head
Adeeb Shihadeh 3 years ago committed by GitHub
parent f7c15c1708
commit 5326c14b43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      panda
  2. 6
      selfdrive/boardd/pandad.py

@ -1 +1 @@
Subproject commit e0e754de2c7fdbf943dd02db203b7bb40bf3e9b5 Subproject commit 79210e8c2b8dbddda474cafd68d7ee0c8d0e4a40

@ -84,9 +84,9 @@ def main() -> NoReturn:
params.remove("PandaSignatures") params.remove("PandaSignatures")
# Flash all Pandas in DFU mode # Flash all Pandas in DFU mode
for p in PandaDFU.list(): for serial in PandaDFU.list():
cloudlog.info(f"Panda in DFU mode found, flashing recovery {p}") cloudlog.info(f"Panda in DFU mode found, flashing recovery {serial}")
PandaDFU(p).recover() PandaDFU(serial).recover()
time.sleep(1) time.sleep(1)
panda_serials = Panda.list() panda_serials = Panda.list()

Loading…
Cancel
Save