capnp struct definitions and messaging used in comma ecosystem
Go to file
Willem Melching 8f9aa8fcc3 add fingerprintSource to carParams 2020-01-30 14:39:14 -08:00
include initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
messaging add TODO 2020-01-15 08:48:35 -08:00
.dockerignore Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
.gitignore build on mac 2019-12-14 19:34:01 -08:00
Dockerfile Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
README.md Fix indentation in readme.md 2020-01-12 14:32:47 -08:00
SConscript build on mac 2019-12-14 19:34:01 -08:00
SConstruct Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
__init__.py initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
azure-pipelines.yml Switch from polling on FIFOs to signal (#12) 2019-11-22 12:06:26 -08:00
car.capnp add fingerprintSource to carParams 2020-01-30 14:39:14 -08:00
generate_javascript.sh initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
install_capnp.sh Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
log.capnp better put 2020-01-27 18:21:36 -08:00
maptile.capnp initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
service_list.yaml standalone monitorstate (#23) 2020-01-27 16:48:11 -08:00
services.py now we shouldn't need that yaml crap everywhere 2019-11-20 16:47:01 +00:00

README.md

What is cereal?

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.

Pub Sub Backends

cereal supports two backends, one based on zmq, the other 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()
dat.init('sensorEvents', 1)
dat.sensorEvents[0] = {"gyro": {"v": [0.1, -0.1, 0.1]}}
pm.send('sensorEvents', dat)