capnp struct definitions and messaging used in comma ecosystem
Go to file
Willem Melching 68fdf28670
locationd 20hz (#52)
* locationd 20hz

* still 10hz in the qlog
2020-06-09 16:45:35 -07:00
.github/workflows add pre-commit static analysis (#48) 2020-05-28 16:04:53 -07:00
include initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
messaging fix dereferencing of full_path after free 2020-06-08 12:21:07 -07:00
.dockerignore Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
.gitignore add pre-commit static analysis (#48) 2020-05-28 16:04:53 -07:00
.pre-commit-config.yaml fix dereferencing of full_path after free 2020-06-08 12:21:07 -07:00
Dockerfile fix docker build 2020-06-04 20:23:49 -07:00
README.md Create and init message in one line with `new_message` in messaging (#35) 2020-03-05 16:51:33 -08:00
SConscript C++ implementation of SubMaster and PubMaster (#42) 2020-05-21 13:57:25 -07:00
SConstruct Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
__init__.py add pre-commit static analysis (#48) 2020-05-28 16:04:53 -07:00
car.capnp add belowEngageSpeed event 2020-06-02 16:41:54 -07:00
generate_javascript.sh initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
install_capnp.sh Library cleanup (#43) 2020-05-12 18:50:24 -07:00
log.capnp add validLen to PathData 2020-06-03 14:15:57 -07:00
maptile.capnp initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
service_list.yaml locationd 20hz (#52) 2020-06-09 16:45:35 -07:00
services.py enable almost all flake8 checks 2020-06-01 01:55:43 -07: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('sensorEvents', size=1)
dat.sensorEvents[0] = {"gyro": {"v": [0.1, -0.1, 0.1]}}
pm.send('sensorEvents', dat)