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§

Max attempts to send command.

Max attempts to read R1.

Max attempts to enter SPI mode.

Count of dummy cycles for delay.

Implementors§