capnp struct definitions and messaging used in comma ecosystem
Go to file
ShaneSmiskol 127edd520f
Unbridge - for republishing msgs sent from your laptop to openpilot (#160)
* duplicate bridge

* unbridge!

* some fixes

* combine bridge

* one if

* rm unbridge

* add --unbridge arg

* ip and unbridge arg parsing. segfaults if not given any ip value

* this is better than a python cli interface for now

* where did those tabs come from?

* bridge --unbridge is a little cumbersome to type...

...and only republish test messages

* more clear

* update

* only check --ip

* assume reverse if anything specified as ip

* refactor

* better ordering

* order imports

* use a whitelist

* combine into get_services
2021-06-07 18:11:25 -07:00
.github/workflows Visionipc v2.0 (#101) 2021-01-08 14:54:41 +01:00
include initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
messaging Unbridge - for republishing msgs sent from your laptop to openpilot (#160) 2021-06-07 18:11:25 -07:00
site_scons/site_tools cython dependency scanner 2021-01-11 14:15:29 -08:00
visionipc fix cython visionipc for qcom 2021-05-28 20:34:11 -07:00
.dockerignore Run scons in CI (#14) 2019-11-20 16:32:42 -08:00
.gitignore Visionipc v2.0 (#101) 2021-01-08 14:54:41 +01:00
.pre-commit-config.yaml Visionipc v2.0 (#101) 2021-01-08 14:54:41 +01:00
Dockerfile bump pycapnp 2021-03-11 20:04:35 -08:00
LICENSE Add the same license on this repo as openpilot (#78) 2020-11-25 11:12:13 +01:00
README.md fix readme typo (#144) 2021-05-14 17:21:17 -07:00
SConscript fix cython visionipc for qcom 2021-05-28 20:34:11 -07:00
SConstruct remove QCOM_REPLAY 2021-05-28 19:43:58 -07:00
__init__.py add pre-commit static analysis (#48) 2020-05-28 16:04:53 -07:00
car.capnp add no fw startup event 2021-06-07 13:43:12 -07:00
codecov.yml Coverage analysis in CI (#75) 2020-07-29 00:33:42 -07:00
generate_javascript.sh initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
legacy.capnp deprecate UiLayoutState 2021-03-24 20:14:26 -07:00
log.capnp add heartbeatLost field to pandaState 2021-06-04 22:06:49 -07:00
maptile.capnp initial commit, internal from 6/13/19 2019-06-13 12:06:15 -07:00
services.py fix dm freqs on pc 2021-06-07 01:55:36 -07: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.

Message definition 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.

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)