uni_core/hardware/mod.rs
1//! Hardware-specific primitives for embedded targets
2//!
3//! Each hardware platform provides primitives for direct hardware access
4//! (buttons, LEDs, GPIO, etc.). These are feature-gated and only compiled
5//! when the corresponding hardware feature is enabled.
6//!
7//! Hardware features are optional - you can build uni-core without any
8//! hardware support for use in desktop/server environments.
9
10#[cfg(feature = "hardware-microbit")]
11pub mod microbit;
12
13#[cfg(feature = "hardware-pico")]
14pub mod pico;