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 `CLASS_6_CTRL` field of the [ExtCsd](super::ExtCsd) register.
    Class6Ctrl {
        /// Indicates that `Class6` commands are used for write-protect configuration.
        WriteProtect = false,
        /// Indicates that `Class6` commands are used for dynamic capacity configuration.
        DynamicCapacity = true,
    }
}