Fix fuzz_fw_fingerprint.py script

old-commit-hash: 7090a88419
beeps
Shane Smiskol 2 years ago
parent bf31067e92
commit 5bb9a667b8
  1. 2
      selfdrive/debug/internal/fuzz_fw_fingerprint.py

@ -28,7 +28,7 @@ if __name__ == "__main__":
for candidate, fws in FWS.items():
fw_dict = {}
for (tp, addr, subaddr), fw_list in fws.items():
fw_dict[(addr, subaddr)] = random.choice(fw_list)
fw_dict[(addr, subaddr)] = [random.choice(fw_list)]
matches = match_fw_to_car_fuzzy(fw_dict, log=False, exclude=candidate)

Loading…
Cancel
Save