openpilot v0.8.3 release

This commit is contained in:
Vehicle Researcher
2021-03-29 23:54:22 +00:00
parent aed724beda
commit 55c44bf34e
264 changed files with 5148 additions and 6431 deletions
+2 -10
View File
@@ -92,16 +92,8 @@ class PandaDFU(object):
self.reset()
def recover(self):
from panda import BASEDIR, build_st
if self.legacy:
fn = "obj/bootstub.comma.bin"
print("building legacy bootstub")
build_st(fn, "Makefile.legacy")
else:
fn = "obj/bootstub.panda.bin"
print("building panda bootstub")
build_st(fn)
fn = os.path.join(BASEDIR, "board", fn)
from panda import BASEDIR
fn = os.path.join(BASEDIR, "board", "obj", "bootstub.panda.bin")
with open(fn, "rb") as f:
code = f.read()