fix not going onroad on clean dashcam install (#2280)

pull/2282/head
Adeeb Shihadeh 5 years ago committed by GitHub
parent 176c06499d
commit 81763a18b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      selfdrive/thermald/thermald.py

@ -363,7 +363,8 @@ def thermald_thread():
should_start = should_start and msg.thermal.freeSpace > 0.02
# confirm we have completed training and aren't uninstalling
should_start = should_start and accepted_terms and completed_training and (not do_uninstall)
should_start = should_start and accepted_terms and (not do_uninstall) and \
(completed_training or current_branch in ['dashcam', 'dashcam-staging'])
# check for firmware mismatch
should_start = should_start and fw_version_match

Loading…
Cancel
Save