mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-18 12:53:53 +08:00
======================== * Based on latest openpilot 0.7.6.1 devel. * Optimized and integrated several dp services. (Settings have been renamed, please re-config all settings) * Completely disabled steer ratio learner. * Removed Accel Profile. * Added Honda Breeze Hybrid FPv1. (Thanks to @劉駿) * Added Taiwan Toyota Prius 4.5 FPv1. (Thanks to @jeekid)
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)