controlsd: increase initializing timeout

old-commit-hash: b218abcaa3015e6c9202550eddbbc0eff7482729
This commit is contained in:
Adeeb Shihadeh
2024-02-16 13:35:45 -08:00
parent df6154b591
commit b8b4210a68
+1 -1
View File
@@ -434,7 +434,7 @@ class Controls:
if not self.initialized:
all_valid = CS.canValid and self.sm.all_checks()
timed_out = self.sm.frame * DT_CTRL > (6. if REPLAY else 3.5)
timed_out = self.sm.frame * DT_CTRL > (6. if REPLAY else 4.0)
if all_valid or timed_out or (SIMULATION and not REPLAY):
available_streams = VisionIpcClient.available_streams("camerad", block=False)
if VisionStreamType.VISION_STREAM_ROAD not in available_streams: