mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-17 02:42:10 +08:00
60d3364233122c48ca5c71ff4d854254f1b09562
ab32956a Merge pull request #27 from commaai/ublox-hw-status 2e7f4b90 Added ublox hw status 23abef4f add networkType to thermal 3f01dcf0 fix bad naming 4999e620 unconfusing and accessible to all 8f9aa8fc add fingerprintSource to carParams 57940309 better put 06f8d15c standalone monitorstate (#23) 6eb1e368 qlog at model rate c38fb572 LateralParams 0c45f20d add uncertainty event name git-subtree-dir: cereal git-subtree-split: ab32956aaf927ee6318bcf639e3a25eea72027a9
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)
Languages
Python
70%
C
16.2%
C++
5.7%
Cuda
4.2%
Metal
1.2%
Other
2.4%