aic8800 0.1.1

AIC8800 Wi-Fi driver core (SDIO, firmware, WPA2, SoftAP). OS-independent; runtime capabilities are injected via aic8800::WifiRuntime.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 核心功能模块
//!
//! 包含 FDRV 初始化和总线抽象

pub mod bus;
pub mod init;
pub mod pollset;
pub mod sdio_transport;

pub use bus::{
    BusState, CmdState, ConnectionState, RxState, STATUS_CONNECTED, STATUS_CONNECTING,
    STATUS_DISCONNECTED, STATUS_FAILED, TxState, WifiBus, sdio1_irq_handler, set_global_bus,
};
pub use init::*;
pub use sdio_transport::SdioTransport;