rillrate-protocol 0.36.0

Top level protocol for the RillRate protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Live data streams tracks time automatically and used to provide live data.

pub mod board;
#[cfg(feature = "engine")]
pub use board::BoardListTracer;

pub mod counter;
#[cfg(feature = "engine")]
pub use counter::CounterStatTracer;

pub mod pulse;
#[cfg(feature = "engine")]
pub use pulse::PulseFrameTracer;

pub mod auto_path;