[][src]Enum imxrt1062_lpi2c1::mtdr::CMD_AW

#[repr(u8)]pub enum CMD_AW {
    CMD_0,
    CMD_1,
    CMD_2,
    CMD_3,
    CMD_4,
    CMD_5,
    CMD_6,
    CMD_7,
}

Command Data

Value on reset: 0

Variants

CMD_0

0: Transmit DATA[7:0]

CMD_1

1: Receive (DATA[7:0] + 1) bytes

CMD_2

2: Generate STOP condition

CMD_3

3: Receive and discard (DATA[7:0] + 1) bytes

CMD_4

4: Generate (repeated) START and transmit address in DATA[7:0]

CMD_5

5: Generate (repeated) START and transmit address in DATA[7:0]. This transfer expects a NACK to be returned.

CMD_6

6: Generate (repeated) START and transmit address in DATA[7:0] using high speed mode

CMD_7

7: Generate (repeated) START and transmit address in DATA[7:0] using high speed mode. This transfer expects a NACK to be returned.

Trait Implementations

impl Clone for CMD_AW[src]

impl Copy for CMD_AW[src]

impl Debug for CMD_AW[src]

impl From<CMD_AW> for u8[src]

impl PartialEq<CMD_AW> for CMD_AW[src]

impl StructuralPartialEq for CMD_AW[src]

Auto Trait Implementations

impl Send for CMD_AW

impl Sync for CMD_AW

impl Unpin for CMD_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, 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.