mirror of
https://github.com/commaai/msgq.git
synced 2026-06-08 22:15:55 +08:00
* Custom events reserved for forks * Fixes * Custom updates * Update README.md * little more * add identifiers * Language * little more * rm that --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
11 lines
306 B
Python
11 lines
306 B
Python
# pylint: skip-file
|
|
import os
|
|
import capnp
|
|
|
|
CEREAL_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
capnp.remove_import_hook()
|
|
|
|
log = capnp.load(os.path.join(CEREAL_PATH, "log.capnp"))
|
|
car = capnp.load(os.path.join(CEREAL_PATH, "car.capnp"))
|
|
custom = capnp.load(os.path.join(CEREAL_PATH, "custom.capnp"))
|