sdio_host/lib.rs
1//! SD Card Registers
2//!
3//! Register representations can be created from an array of little endian
4//! words. Note that the SDMMC protocol transfers the registers in big endian
5//! byte order.
6//!
7//! ```
8//! # use sdio_host::sd::SCR;
9//! let scr: SCR = [0, 1].into();
10//! ```
11//!
12//! ## Reference documents:
13//!
14//! PLSS_v7_10: Physical Layer Specification Simplified Specification Version
15//! 7.10. March 25, 2020. (C) SD Card Association
16
17#![no_std]
18
19pub mod common_cmd;
20#[doc(inline)]
21pub use common_cmd::Cmd;
22pub mod sd_cmd;
23pub mod emmc_cmd;
24
25mod common;
26
27pub mod sd;
28pub mod emmc;