forked from mawei/dp
1
0
Fork 0
dp/cereal
dragonpilot c58f481a80 dragonpilot beta3
date: 2024-08-20T11:22:58
commit: dc76c1d6216e3766209a450c29dc9dafb696ef19
2024-08-20 11:23:01 +00:00
..
gen dragonpilot beta3 2024-08-20 11:23:01 +00:00
include dragonpilot v2023.07.05 2023-07-05 18:59:58 -07:00
messaging dragonpilot beta3 2024-08-20 11:23:01 +00:00
README.md dragonpilot beta3 2024-06-25 13:13:19 +08:00
__init__.py dragonpilot beta3 2024-06-25 13:13:19 +08:00
car.capnp dragonpilot beta3 2024-06-27 15:06:24 +08:00
custom.capnp dragonpilot beta3 2024-07-13 18:45:42 +08:00
legacy.capnp dragonpilot v2023.07.05 2023-07-05 18:59:58 -07:00
libcereal_shared.so dragonpilot beta3 2024-08-20 11:23:01 +00:00
log.capnp dragonpilot beta3 2024-08-20 11:23:01 +00:00
maptile.capnp dragonpilot beta3 2024-06-25 13:13:19 +08:00
services.h dragonpilot beta3 2024-08-20 11:23:01 +00:00
services.py dragonpilot beta3 2024-08-20 11:23:01 +00:00

README.md

What is cereal?

cereal is the messaging system for openpilot. It uses msgq as a pub/sub backend, and Cap'n proto for serialization of the structs.

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-compatibility, 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 openpilot and your fork.

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)