[][src]Struct stm32f3::stm32f303::dma1::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub isr: ISR,
    pub ifcr: IFCR,
    pub ch1: CH,
    pub ch2: CH,
    pub ch3: CH,
    pub ch4: CH,
    pub ch5: CH,
    pub ch6: CH,
    pub ch7: CH,
    // some fields omitted
}

Register block

Fields

isr: ISR

0x00 - DMA interrupt status register (DMA_ISR)

ifcr: IFCR

0x04 - DMA interrupt flag clear register (DMA_IFCR)

ch1: CH

0x08 - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch2: CH

0x1c - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch3: CH

0x30 - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch4: CH

0x44 - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch5: CH

0x58 - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch6: CH

0x6c - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

ch7: CH

0x80 - Channel cluster: CCR?, CNDTR?, CPAR?, and CMAR? registers

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> 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.