Struct stm32f2::stm32f217::cryp::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub cr: CR,
    pub sr: SR,
    pub din: DIN,
    pub dout: DOUT,
    pub dmacr: DMACR,
    pub imscr: IMSCR,
    pub risr: RISR,
    pub misr: MISR,
    pub key: [KEY; 4],
    pub init: [INIT; 2],
}

Register block

Fields

cr: CR

0x00 - control register

sr: SR

0x04 - status register

din: DIN

0x08 - data input register

dout: DOUT

0x0c - data output register

dmacr: DMACR

0x10 - DMA control register

imscr: IMSCR

0x14 - interrupt mask set/clear register

risr: RISR

0x18 - raw interrupt status register

misr: MISR

0x1c - masked interrupt status register

key: [KEY; 4]

0x20 - Cluster KEY%s, containing K?LR, K?RR

init: [INIT; 2]

0x40 - Cluster INIT%s, containing IV?LR, IV?RR

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