Files
dragonpilot/selfdrive/can/packer.py

10 lines
231 B
Python
Raw Normal View History

2019-05-16 13:20:29 -07:00
# pylint: skip-file
import os
import subprocess
2017-09-30 03:07:27 -07:00
2019-05-16 13:20:29 -07:00
can_dir = os.path.dirname(os.path.abspath(__file__))
subprocess.check_call(["make", "packer_impl.so"], cwd=can_dir)
2018-03-17 00:01:50 -07:00
2019-05-16 13:20:29 -07:00
from selfdrive.can.packer_impl import CANPacker
assert CANPacker