openpilot v0.8.11 release

This commit is contained in:
Vehicle Researcher
2021-11-19 15:24:51 -08:00
parent 93e8dbb8b5
commit bf338bf5e9
328 changed files with 9240 additions and 3951 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import importlib
import os
import signal
import struct
import time
import subprocess
from abc import ABC, abstractmethod
@@ -88,7 +89,7 @@ class ManagerProcess(ABC):
try:
fn = WATCHDOG_FN + str(self.proc.pid)
self.last_watchdog_time = int(open(fn).read())
self.last_watchdog_time = struct.unpack('Q', open(fn, "rb").read())[0]
except Exception:
pass