[][src]Struct nrf9160_pac::kmu_ns::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub tasks_push_keyslot: TASKS_PUSH_KEYSLOT,
    pub events_keyslot_pushed: EVENTS_KEYSLOT_PUSHED,
    pub events_keyslot_revoked: EVENTS_KEYSLOT_REVOKED,
    pub events_keyslot_error: EVENTS_KEYSLOT_ERROR,
    pub inten: INTEN,
    pub intenset: INTENSET,
    pub intenclr: INTENCLR,
    pub intpend: INTPEND,
    pub status: STATUS,
    pub selectkeyslot: SELECTKEYSLOT,
    // some fields omitted
}

Register block

Fields

tasks_push_keyslot: TASKS_PUSH_KEYSLOT

0x00 - Push a key slot over secure APB

events_keyslot_pushed: EVENTS_KEYSLOT_PUSHED

0x100 - Key slot successfully pushed over secure APB

events_keyslot_revoked: EVENTS_KEYSLOT_REVOKED

0x104 - Key slot has been revoked and cannot be tasked for selection

events_keyslot_error: EVENTS_KEYSLOT_ERROR

0x108 - No key slot selected, no destination address defined, or error during push operation

inten: INTEN

0x300 - Enable or disable interrupt

intenset: INTENSET

0x304 - Enable interrupt

intenclr: INTENCLR

0x308 - Disable interrupt

intpend: INTPEND

0x30c - Pending interrupts

status: STATUS

0x40c - Status bits for KMU operation

selectkeyslot: SELECTKEYSLOT

0x500 - Select key slot to be read over AHB or pushed over secure APB when TASKS_PUSH_KEYSLOT is started

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.