//! Utility re-exports and helper macros for the Omni-Wheel Bot.
//!
//! This module re-exports core components, timing, kinematics, and connection
//! controllers, and provides helper macros and embedded web assets:
//!
//! - `connection`: WebSocket server and message handling
//! - `controllers`: I2C and LED controllers for robotics hardware
//! - `math`: kinematics calculations for omni-wheel motion
//! - `frontend`: compressed HTML/CSS/JS assets for the web UI
//!
//! The `mk_static!` macro simplifies static initialization in no-std contexts.
pub
pub use run as wss;
pub use SystemController;
pub use *;
pub use EmbodiedKinematics as ek;
/// Initialize a no-std static cell and write the given value into it.
///
/// This macro creates a `static_cell::StaticCell` for type `$t` and initializes
/// it with `$val`, returning a mutable reference to the stored value.