openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Maxime Desroches b3ad7ef24b
add touch events to qlogs (#34236)
4 months ago
..
include Split cereal into cereal/msgq (#32631) 11 months ago
messaging macos: use /tmp instead of /dev/shm (#34097) 5 months ago
README.md Update cereal README.md 11 months ago
SConscript bridge: implement MSGQ to ZMQ bridge with subscriber-based publishing (#32862) 8 months ago
__init__.py Split cereal into cereal/msgq (#32631) 11 months ago
car.capnp Reapply "move car.capnp to opendbc (#33722)" (#33728) 7 months ago
custom.capnp Split cereal into cereal/msgq (#32631) 11 months ago
legacy.capnp Split cereal into cereal/msgq (#32631) 11 months ago
log.capnp hardwared: log touch events (#34225) 4 months ago
maptile.capnp Split cereal into cereal/msgq (#32631) 11 months ago
services.py add touch events to qlogs (#34236) 4 months ago

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)