forked from mawei/dp
1
0
Fork 0
dp/cereal
Vehicle Researcher c1024d1d00 lp-dp 2024-02-06T11:12:13 for EON/C2
version: lp-dp v0.9.5 for EON/C2
date: 2024-02-06T11:12:13
commit: 43b185d0bd3e741c3e1db85f7dc50d9b828c5472
2024-02-06 11:12:22 +00:00
..
include dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
logger dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
messaging lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00
site_scons/site_tools dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
visionipc lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00
.gitignore dragonpilot 2023-03-27T06:11:06 for EON/C2 2023-03-27 06:27:07 +00:00
Dockerfile lp-dp 2023-09-13T13:36:48 for EON/C2 2023-09-13 13:36:57 +08:00
LICENSE dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
README.md lp-dp 2023-06-12T05:58:26 for EON/C2 2023-06-12 05:58:29 +00:00
__init__.py lp-dp 2023-06-12T05:58:26 for EON/C2 2023-06-12 05:58:29 +00:00
car.capnp lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00
codecov.yml dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
custom.capnp lp-dp 2023-09-19T10:02:18 for EON/C2 2023-09-19 10:02:28 +00:00
generate_javascript.sh dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
legacy.capnp dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
libcereal_shared.so lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00
log.capnp lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00
maptile.capnp dragonpilot 2022-08-11T09:38:43 for EON/C2 2022-08-11 09:48:37 +00:00
pyproject.toml lp-dp 2023-09-13T13:36:48 for EON/C2 2023-09-13 13:36:57 +08:00
services.h lp-dp 2023-09-13T13:36:48 for EON/C2 2023-09-13 13:36:57 +08:00
services.py lp-dp 2024-02-06T11:12:13 for EON/C2 2024-02-06 11:12:22 +00:00

README.md

What is cereal? cereal tests codecov

cereal is both a messaging spec for robotics systems as well as generic high performance IPC pub sub messaging with a single publisher and multiple subscribers.

Imagine this use case:

  • A sensor process reads gyro measurements directly from an IMU and publishes a sensorEvents packet
  • A calibration process subscribes to the sensorEvents packet to use the IMU
  • A localization process subscribes to the sensorEvents packet to use the IMU also

Messaging Spec

You'll find the message types in log.capnp. It uses Cap'n proto and defines one struct called Event.

All Events have a logMonoTime and a valid. Then a big union defines the packet type.

Best Practices

  • All fields must describe quantities in SI units, unless otherwise specified in the field name.
  • In the context of the message they are in, field names should be completely unambiguous.
  • All values should be easy to plot and be human-readable with minimal parsing.

Maintaining backwards-compatibility

When making changes to the messaging spec you want to maintain backwards-compatability, such that old logs can be parsed with a new version of cereal. Adding structs and adding members to structs is generally safe, most other things are not. Read more details here.

Custom forks

Forks of openpilot might want to add things to the messaging spec, however this could conflict with future changes made in mainline cereal/openpilot. Rebasing against mainline openpilot then means breaking backwards-compatibility with all old logs of your fork. So we added reserved events in custom.capnp that we will leave empty in mainline cereal/openpilot. If you only modify those, you can ensure your fork will remain backwards-compatible with all versions of mainline cereal/openpilot and your fork.

Pub Sub Backends

cereal supports two backends, one based on zmq and another called msgq, a custom pub sub based on shared memory that doesn't require the bytes to pass through the kernel.

Example

import cereal.messaging as messaging

# in subscriber
sm = messaging.SubMaster(['sensorEvents'])
while 1:
  sm.update()
  print(sm['sensorEvents'])

# in publisher
pm = messaging.PubMaster(['sensorEvents'])
dat = messaging.new_message('sensorEvents', size=1)
dat.sensorEvents[0] = {"gyro": {"v": [0.1, -0.1, 0.1]}}
pm.send('sensorEvents', dat)