Enum atsam4s16b_pac::hsmci::cmdr::SPCMD_AW[][src]

#[repr(u8)]pub enum SPCMD_AW {
    STD,
    INIT,
    SYNC,
    CE_ATA,
    IT_CMD,
    IT_RESP,
    BOR,
    EBO,
}

Special Command

Variants

STD

0: Not a special CMD.

INIT

1: Initialization CMD: 74 clock cycles for initialization sequence.

SYNC

2: Synchronized CMD: Wait for the end of the current data block transfer before sending the pending command.

CE_ATA

3: CE-ATA Completion Signal disable Command. The host cancels the ability for the device to return a command completion signal on the command line.

IT_CMD

4: Interrupt command: Corresponds to the Interrupt Mode (CMD40).

IT_RESP

5: Interrupt response: Corresponds to the Interrupt Mode (CMD40).

BOR

6: Boot Operation Request. Start a boot operation mode, the host processor can read boot data from the MMC device directly.

EBO

7: End Boot Operation. This command allows the host processor to terminate the boot operation mode.

Trait Implementations

impl Clone for SPCMD_AW[src]

impl Copy for SPCMD_AW[src]

impl Debug for SPCMD_AW[src]

impl PartialEq<SPCMD_AW> for SPCMD_AW[src]

impl StructuralPartialEq for SPCMD_AW[src]

Auto Trait Implementations

impl Send for SPCMD_AW

impl Sync for SPCMD_AW

impl Unpin for SPCMD_AW

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.