[][src]Enum lpc54606_pac::adc0::seq_ctrl::LOWPRIO_A

pub enum LOWPRIO_A {
    LOW_PRIORITY,
    HIGH_PRIORITY,
}

Set priority for sequence A.

Value on reset: 0

Variants

LOW_PRIORITY

0: Low priority. Any B trigger which occurs while an A conversion sequence is active will be ignored and lost.

HIGH_PRIORITY

1: High priority. Setting this bit to a 1 will permit any enabled B sequence trigger (including a B sequence software start) to immediately interrupt sequence A and launch a B sequence in it's place. The conversion currently in progress will be terminated. The A sequence that was interrupted will automatically resume after the B sequence completes. The channel whose conversion was terminated will be re-sampled and the conversion sequence will resume from that point.

Trait Implementations

impl Clone for LOWPRIO_A[src]

impl Copy for LOWPRIO_A[src]

impl Debug for LOWPRIO_A[src]

impl From<LOWPRIO_A> for bool[src]

impl PartialEq<LOWPRIO_A> for LOWPRIO_A[src]

impl StructuralPartialEq for LOWPRIO_A[src]

Auto Trait Implementations

impl Send for LOWPRIO_A

impl Sync for LOWPRIO_A

impl Unpin for LOWPRIO_A

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.