[][src]Enum rp2040::dma::ch0_ctrl_trig::TREQ_SEL_A

#[repr(u8)]pub enum TREQ_SEL_A {
    TIMER0,
    TIMER1,
    TIMER2,
    TIMER3,
    PERMANENT,
}

Select a Transfer Request signal.\n The channel uses the transfer request signal to pace its data transfer rate. Sources for TREQ signals are internal (TIMERS) or external (DREQ, a Data Request from the system).\n 0x0 to 0x3a -> select DREQ n as TREQ

Value on reset: 0

Variants

TIMER0

59: Select Timer 0 as TREQ

TIMER1

60: Select Timer 1 as TREQ

TIMER2

61: Select Timer 2 as TREQ (Optional)

TIMER3

62: Select Timer 3 as TREQ (Optional)

PERMANENT

63: Permanent request, for unpaced transfers.

Trait Implementations

impl Clone for TREQ_SEL_A[src]

impl Copy for TREQ_SEL_A[src]

impl Debug for TREQ_SEL_A[src]

impl PartialEq<TREQ_SEL_A> for TREQ_SEL_A[src]

impl StructuralPartialEq for TREQ_SEL_A[src]

Auto Trait Implementations

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.