Struct nucleo_h7xx::pac::mdma::CH[]

#[repr(C)]pub struct CH {
    pub isr: Reg<u32, _ISR>,
    pub ifcr: Reg<u32, _IFCR>,
    pub esr: Reg<u32, _ESR>,
    pub cr: Reg<u32, _CR>,
    pub tcr: Reg<u32, _TCR>,
    pub bndtr: Reg<u32, _BNDTR>,
    pub sar: Reg<u32, _SAR>,
    pub dar: Reg<u32, _DAR>,
    pub brur: Reg<u32, _BRUR>,
    pub lar: Reg<u32, _LAR>,
    pub tbr: Reg<u32, _TBR>,
    pub mar: Reg<u32, _MAR>,
    pub mdr: Reg<u32, _MDR>,
    // some fields omitted
}

Register block

Fields

isr: Reg<u32, _ISR>

0x00 - MDMA channel x interrupt/status register

ifcr: Reg<u32, _IFCR>

0x04 - MDMA channel x interrupt flag clear register

esr: Reg<u32, _ESR>

0x08 - MDMA Channel x error status register

cr: Reg<u32, _CR>

0x0c - This register is used to control the concerned channel.

tcr: Reg<u32, _TCR>

0x10 - This register is used to configure the concerned channel.

bndtr: Reg<u32, _BNDTR>

0x14 - MDMA Channel x block number of data register

sar: Reg<u32, _SAR>

0x18 - MDMA channel x source address register

dar: Reg<u32, _DAR>

0x1c - MDMA channel x destination address register

brur: Reg<u32, _BRUR>

0x20 - MDMA channel x Block Repeat address Update register

lar: Reg<u32, _LAR>

0x24 - MDMA channel x Link Address register

tbr: Reg<u32, _TBR>

0x28 - MDMA channel x Trigger and Bus selection Register

mar: Reg<u32, _MAR>

0x30 - MDMA channel x Mask address register

mdr: Reg<u32, _MDR>

0x34 - MDMA channel x Mask Data register

Auto Trait Implementations

impl Send for CH

impl !Sync for CH

impl Unpin for CH

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.