[][src]Enum lpc54606_pac::dma0::channel::xfercfg::DSTINC_A

#[repr(u8)]pub enum DSTINC_A {
    NO_INCREMENT,
    WIDTH_X_1,
    WIDTH_X_2,
    WIDTH_X_4,
}

Determines whether the destination address is incremented for each DMA transfer.

Value on reset: 0

Variants

NO_INCREMENT

0: No increment. The destination address is not incremented for each transfer. This is the usual case when the destination is a peripheral device.

WIDTH_X_1

1: 1 x width. The destination address is incremented by the amount specified by Width for each transfer. This is the usual case when the destination is memory.

WIDTH_X_2

2: 2 x width. The destination address is incremented by 2 times the amount specified by Width for each transfer.

WIDTH_X_4

3: 4 x width. The destination address is incremented by 4 times the amount specified by Width for each transfer.

Trait Implementations

impl Clone for DSTINC_A[src]

impl Copy for DSTINC_A[src]

impl Debug for DSTINC_A[src]

impl From<DSTINC_A> for u8[src]

impl PartialEq<DSTINC_A> for DSTINC_A[src]

impl StructuralPartialEq for DSTINC_A[src]

Auto Trait Implementations

impl Send for DSTINC_A

impl Sync for DSTINC_A

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