mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-07 00:33:43 +08:00
0932b367bd
old-commit-hash: 3f9059fea886f1fa3b0c19a62a981d891dcc84eb
10 lines
231 B
Python
10 lines
231 B
Python
# pylint: skip-file
|
|
import os
|
|
import subprocess
|
|
|
|
can_dir = os.path.dirname(os.path.abspath(__file__))
|
|
subprocess.check_call(["make", "packer_impl.so"], cwd=can_dir)
|
|
|
|
from selfdrive.can.packer_impl import CANPacker
|
|
assert CANPacker
|