Enum msp432p401r::dma::dma_enaclr::CLR_AW[][src]

#[repr(u32)]pub enum CLR_AW {
    CLR_0,
    CLR_1,
}

Set the appropriate bit to disable the corresponding DMA channel. Note: The controller disables a channel, by setting the appropriate bit, when: a) it completes the DMA cycle b) it reads a channel_cfg memory location which has cycle_ctrl = b000 c) an ERROR occurs on the AHB-Lite bus.

Value on reset: 0

Variants

CLR_0

0: No effect. Use the DMA_ENASET Register to enable DMA channels.

CLR_1

1: Disables channel C. Writing to a bit where a DMA channel is not implemented has no effect.

Trait Implementations

impl Clone for CLR_AW[src]

impl Copy for CLR_AW[src]

impl Debug for CLR_AW[src]

impl PartialEq<CLR_AW> for CLR_AW[src]

impl StructuralPartialEq for CLR_AW[src]

Auto Trait Implementations

impl Send for CLR_AW

impl Sync for CLR_AW

impl Unpin for CLR_AW

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.