leodos_protocols/utils/mod.rs
1//! Shared utilities: bitfield helpers, checksums, formatting, time.
2
3/// Bitfield extraction, checksums, and header trait.
4pub mod bits;
5/// Interior-mutable cell that only allows access through sync closures.
6pub mod cell;
7/// Monotonic clock abstraction.
8pub mod clock;
9/// `no_std` formatting utilities.
10pub mod fmt;
11/// Fixed-capacity byte ring buffer for variable-length packets.
12pub mod ringbuf;
13
14pub use bits::*;
15pub use fmt::*;