xpanse-api 0.1.0

Shared API for xpanse apps, module drivers, and platform firmware for the hackxpansion console
1
2
3
4
5
6
7
8
9
10
11
12
13
//! App- and driver-facing hardware capabilities.
//!
//! These interfaces hide board-specific implementations behind stable resource
//! types that can be registered by drivers and leased by apps.

/// Shared RP235x ADC service.
pub mod adc;
/// Active-low button capabilities and role markers.
pub mod buttons;
/// USB peripheral resources.
pub mod usb;
/// Direct RGB565 framebuffer resources.
pub mod video;