#[repr(u8)]
pub enum START_A {
    CONTINUOUS,
    RECEIVE,
    TF_LOW,
    TF_HIGH,
    TF_FALLING,
    TF_RISING,
    TF_LEVEL,
    TF_EDGE,
}
Expand description

Transmit Start Selection

Value on reset: 0

Variants

CONTINUOUS

0: Continuous, as soon as a word is written in the SSC_THR Register (if Transmit is enabled), and immediately after the end of transfer of the previous data

RECEIVE

1: Receive start

TF_LOW

2: Detection of a low level on TF signal

TF_HIGH

3: Detection of a high level on TF signal

TF_FALLING

4: Detection of a falling edge on TF signal

TF_RISING

5: Detection of a rising edge on TF signal

TF_LEVEL

6: Detection of any level change on TF signal

TF_EDGE

7: Detection of any edge on TF signal

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.