Struct atsam4lc8a_pac::aesa::RegisterBlock[][src]

#[repr(C)]pub struct RegisterBlock {
    pub ctrl: CTRL,
    pub mode: MODE,
    pub databufptr: DATABUFPTR,
    pub sr: SR,
    pub ier: IER,
    pub idr: IDR,
    pub imr: IMR,
    pub key: [KEY; 8],
    pub initvect: [INITVECT; 4],
    pub idata: IDATA,
    pub odata: ODATA,
    pub drngseed: DRNGSEED,
    pub parameter: PARAMETER,
    pub version: VERSION,
    // some fields omitted
}

Register block

Fields

ctrl: CTRL

0x00 - Control Register

mode: MODE

0x04 - Mode Register

databufptr: DATABUFPTR

0x08 - Data Buffer Pointer Register

sr: SR

0x0c - Status Register

ier: IER

0x10 - Interrupt Enable Register

idr: IDR

0x14 - Interrupt Disable Register

imr: IMR

0x18 - Interrupt Mask Register

key: [KEY; 8]

0x20 - Key Register

initvect: [INITVECT; 4]

0x40 - Initialization Vector Register

idata: IDATA

0x50 - Input Data Register

odata: ODATA

0x60 - Output Data Register

drngseed: DRNGSEED

0x70 - DRNG Seed Register

parameter: PARAMETER

0xf8 - Parameter Register

version: VERSION

0xfc - Version Register

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.