open source driving agent
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.
 
 
 
 
 
 
Vehicle Researcher 9504037aa7 Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
include Squashed 'cereal/' content from commit 9f2076eef 6 years ago
messaging Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
.dockerignore Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago
.gitignore Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
Dockerfile Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago
README.md Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
SConscript Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
SConstruct Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago
__init__.py Squashed 'cereal/' content from commit 9f2076eef 6 years ago
azure-pipelines.yml Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago
car.capnp Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
generate_javascript.sh Squashed 'cereal/' content from commit 9f2076eef 6 years ago
install_capnp.sh Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago
log.capnp Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
maptile.capnp Squashed 'cereal/' content from commit 9f2076eef 6 years ago
service_list.yaml Squashed 'cereal/' changes from b8382bbb..01942b89 5 years ago
services.py Squashed 'cereal/' changes from 90e48c54..b8382bbb 6 years ago

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)