aic8800 0.3.0

OS-independent AIC8800 Wi-Fi driver core
1
2
3
4
5
6
7
8
9
10
11
12
13
//! OS-independent capability adapter from the AIC8800 core to RDIF Ethernet.
//!
//! The adapter owns no task, lock, sleep primitive, interrupt registration, or
//! platform discovery. It moves the physical SDIO host into a single owner
//! state machine, splits out a bounded hard-IRQ endpoint, and exchanges
//! move-only network buffers through bounded SPSC queues.

mod device;
mod error;
mod owner;

pub use device::{AicRdifDevice, AicRdifOptions};
pub use error::{AicRdifError, AicSdioIdentity};