indexbus_kit/embedded/
mod.rs

1//! Embedded-oriented helpers (static memory, no-heap algorithms).
2//!
3//! These are written to be friendly to `no_std` targets. Platform runtime integration
4//! (e.g. Embassy) will live alongside these helpers later.
5
6mod static_spsc;
7
8pub use static_spsc::*;