Struct lpc55_pac::dma0::channel::xfercfg::R[][src]

pub struct R(_);

Register XFERCFG reader

Implementations

impl R[src]

pub fn cfgvalid(&self) -> CFGVALID_R[src]

Bit 0 - Configuration Valid flag. This bit indicates whether the current channel descriptor is valid and can potentially be acted upon, if all other activation criteria are fulfilled.

pub fn reload(&self) -> RELOAD_R[src]

Bit 1 - Indicates whether the channel’s control structure will be reloaded when the current descriptor is exhausted. Reloading allows ping-pong and linked transfers.

pub fn swtrig(&self) -> SWTRIG_R[src]

Bit 2 - Software Trigger.

pub fn clrtrig(&self) -> CLRTRIG_R[src]

Bit 3 - Clear Trigger.

pub fn setinta(&self) -> SETINTA_R[src]

Bit 4 - Set Interrupt flag A for this channel. There is no hardware distinction between interrupt A and B. They can be used by software to assist with more complex descriptor usage. By convention, interrupt A may be used when only one interrupt flag is needed.

pub fn setintb(&self) -> SETINTB_R[src]

Bit 5 - Set Interrupt flag B for this channel. There is no hardware distinction between interrupt A and B. They can be used by software to assist with more complex descriptor usage. By convention, interrupt A may be used when only one interrupt flag is needed.

pub fn width(&self) -> WIDTH_R[src]

Bits 8:9 - Transfer width used for this DMA channel.

pub fn srcinc(&self) -> SRCINC_R[src]

Bits 12:13 - Determines whether the source address is incremented for each DMA transfer.

pub fn dstinc(&self) -> DSTINC_R[src]

Bits 14:15 - Determines whether the destination address is incremented for each DMA transfer.

pub fn xfercount(&self) -> XFERCOUNT_R[src]

Bits 16:25 - Total number of transfers to be performed, minus 1 encoded. The number of bytes transferred is: (XFERCOUNT + 1) x data width (as defined by the WIDTH field). The DMA controller uses this bit field during transfer to count down. Hence, it cannot be used by software to read back the size of the transfer, for instance, in an interrupt handler. 0x0 = a total of 1 transfer will be performed. 0x1 = a total of 2 transfers will be performed. 0x3FF = a total of 1,024 transfers will be performed.

Methods from Deref<Target = R<XFERCFG_SPEC>>

pub fn bits(&self) -> REG::Ux[src]

Reads raw bits from register.

Trait Implementations

impl Deref for R[src]

type Target = R<XFERCFG_SPEC>

The resulting type after dereferencing.

impl From<R<XFERCFG_SPEC>> for R[src]

Auto Trait Implementations

impl Send for R

impl Sync for R

impl Unpin for R

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.