rillrate_protocol/live_data/mod.rs
1//! Live data streams tracks time automatically and used to provide live data.
2
3pub mod board;
4#[cfg(feature = "engine")]
5pub use board::BoardListTracer;
6
7pub mod counter;
8#[cfg(feature = "engine")]
9pub use counter::CounterStatTracer;
10
11pub mod pulse;
12#[cfg(feature = "engine")]
13pub use pulse::PulseFrameTracer;
14
15pub mod auto_path;