sdmmc-core 0.5.0

SD/MMC core data structures and algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::lib_bool_enum;

lib_bool_enum! {
    /// Represents the `HPI_IMPLEMENTATION` sub-field of the `HPI_FEATURES` field.
    HpiImplementation {
        /// Indicates the HPI mechanism is based on `CMD13`.
        Cmd13 = false,
        /// Indicates the HPI mechanism is based on `CMD12`.
        Cmd12 = true,
    }
}