[][src]Struct nrf5340_app_pac::fpu_ns::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub events_invalidoperation: EVENTS_INVALIDOPERATION,
    pub events_dividebyzero: EVENTS_DIVIDEBYZERO,
    pub events_overflow: EVENTS_OVERFLOW,
    pub events_underflow: EVENTS_UNDERFLOW,
    pub events_inexact: EVENTS_INEXACT,
    pub events_denormalinput: EVENTS_DENORMALINPUT,
    pub inten: INTEN,
    pub intenset: INTENSET,
    pub intenclr: INTENCLR,
    // some fields omitted
}

Register block

Fields

events_invalidoperation: EVENTS_INVALIDOPERATION

0x100 - An FPUIOC exception triggered by an invalid operation has occurred in the FPU

events_dividebyzero: EVENTS_DIVIDEBYZERO

0x104 - An FPUDZC exception triggered by a floating-point divide-by-zero operation has occurred in the FPU

events_overflow: EVENTS_OVERFLOW

0x108 - An FPUOFC exception triggered by a floating-point overflow has occurred in the FPU

events_underflow: EVENTS_UNDERFLOW

0x10c - An FPUUFC exception triggered by a floating-point underflow has occurred in the FPU

events_inexact: EVENTS_INEXACT

0x110 - An FPUIXC exception triggered by an inexact floating-point operation has occurred in the FPU

events_denormalinput: EVENTS_DENORMALINPUT

0x114 - An FPUIDC exception triggered by a denormal floating-point input has occurred in the FPU

inten: INTEN

0x300 - Enable or disable interrupt

intenset: INTENSET

0x304 - Enable interrupt

intenclr: INTENCLR

0x308 - Disable interrupt

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self