[][src]Struct nrf52840_hal::target::ficr::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub codepagesize: Reg<u32, _CODEPAGESIZE>,
    pub codesize: Reg<u32, _CODESIZE>,
    pub deviceid: [Reg<u32, _DEVICEID>; 2],
    pub er: [Reg<u32, _ER>; 4],
    pub ir: [Reg<u32, _IR>; 4],
    pub deviceaddrtype: Reg<u32, _DEVICEADDRTYPE>,
    pub deviceaddr: [Reg<u32, _DEVICEADDR>; 2],
    pub info: INFO,
    pub prodtest: [Reg<u32, _PRODTEST>; 3],
    pub temp: TEMP,
    pub nfc: NFC,
    pub trng90b: TRNG90B,
    // some fields omitted
}

Register block

Fields

codepagesize: Reg<u32, _CODEPAGESIZE>

0x10 - Code memory page size

codesize: Reg<u32, _CODESIZE>

0x14 - Code memory size

deviceid: [Reg<u32, _DEVICEID>; 2]

0x60 - Description collection[n]: Device identifier

er: [Reg<u32, _ER>; 4]

0x80 - Description collection[n]: Encryption root, word n

ir: [Reg<u32, _IR>; 4]

0x90 - Description collection[n]: Identity Root, word n

deviceaddrtype: Reg<u32, _DEVICEADDRTYPE>

0xa0 - Device address type

deviceaddr: [Reg<u32, _DEVICEADDR>; 2]

0xa4 - Description collection[n]: Device address n

info: INFO

0x100 - Device info

prodtest: [Reg<u32, _PRODTEST>; 3]

0x350 - Description collection[n]: Production test signature n

temp: TEMP

0x404 - Registers storing factory TEMP module linearization coefficients

nfc: NFC

0x450 - Unspecified

trng90b: TRNG90B

0xc00 - NIST800-90B RNG calibration data

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.