SdMmcSpiConfig

Trait SdMmcSpiConfig 

Source
pub trait SdMmcSpiConfig {
    const CMD_MAX_ATTEMPTS: usize;
    const READ_R1_ATTEMPTS: usize;
    const ENTER_SPI_MODE_ATTEMPTS: usize;
    const DELAY_DUMMY_CYCLES: usize;
}
Expand description

Represents config for SdMmcSpi.

Required Associated Constants§

Source

const CMD_MAX_ATTEMPTS: usize

Max attempts to send command.

Source

const READ_R1_ATTEMPTS: usize

Max attempts to read R1.

Source

const ENTER_SPI_MODE_ATTEMPTS: usize

Max attempts to enter SPI mode.

Source

const DELAY_DUMMY_CYCLES: usize

Count of dummy cycles for delay.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§