Skip to main content

RegisterBlock

Struct RegisterBlock 

Source
pub struct RegisterBlock {
Show 18 fields pub events_ramaccerr: EVENTS_RAMACCERR, pub events_flashaccerr: EVENTS_FLASHACCERR, pub events_periphaccerr: EVENTS_PERIPHACCERR, pub publish_ramaccerr: PUBLISH_RAMACCERR, pub publish_flashaccerr: PUBLISH_FLASHACCERR, pub publish_periphaccerr: PUBLISH_PERIPHACCERR, pub inten: INTEN, pub intenset: INTENSET, pub intenclr: INTENCLR, pub cap: CAP, pub extdomain: [EXTDOMAIN; 1], pub dppi: [DPPI; 1], pub gpioport: [GPIOPORT; 1], pub flashnsc: [FLASHNSC; 2], pub ramnsc: [RAMNSC; 2], pub flashregion: [FLASHREGION; 32], pub ramregion: [RAMREGION; 32], pub periphid: [PERIPHID; 67], /* private fields */
}
Expand description

Register block

Fields§

§events_ramaccerr: EVENTS_RAMACCERR

0x100 - A security violation has been detected for the RAM memory space

§events_flashaccerr: EVENTS_FLASHACCERR

0x104 - A security violation has been detected for the flash memory space

§events_periphaccerr: EVENTS_PERIPHACCERR

0x108 - A security violation has been detected on one or several peripherals

§publish_ramaccerr: PUBLISH_RAMACCERR

0x180 - Publish configuration for event RAMACCERR

§publish_flashaccerr: PUBLISH_FLASHACCERR

0x184 - Publish configuration for event FLASHACCERR

§publish_periphaccerr: PUBLISH_PERIPHACCERR

0x188 - Publish configuration for event PERIPHACCERR

§inten: INTEN

0x300 - Enable or disable interrupt

§intenset: INTENSET

0x304 - Enable interrupt

§intenclr: INTENCLR

0x308 - Disable interrupt

§cap: CAP

0x400 - Show implemented features for the current device

§extdomain: [EXTDOMAIN; 1]

0x440 - Unspecified

§dppi: [DPPI; 1]

0x480 - Unspecified

§gpioport: [GPIOPORT; 1]

0x4c0 - Unspecified

§flashnsc: [FLASHNSC; 2]

0x500 - Unspecified

§ramnsc: [RAMNSC; 2]

0x540 - Unspecified

§flashregion: [FLASHREGION; 32]

0x600 - Unspecified

§ramregion: [RAMREGION; 32]

0x700 - Unspecified

§periphid: [PERIPHID; 67]

0x800 - Unspecified

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.