Skip to main content

xpanse_api/interfaces/
mod.rs

1//! App- and driver-facing hardware capabilities.
2//!
3//! These interfaces hide board-specific implementations behind stable resource
4//! types that can be registered by drivers and leased by apps.
5
6/// Shared RP235x ADC service.
7pub mod adc;
8/// Active-low button capabilities and role markers.
9pub mod buttons;
10/// USB peripheral resources.
11pub mod usb;
12/// Direct RGB565 framebuffer resources.
13pub mod video;