Struct nrf52840_pac::gpiote::RegisterBlock

source ·
#[repr(C)]
pub struct RegisterBlock { pub tasks_out: [TASKS_OUT; 8], pub tasks_set: [TASKS_SET; 8], pub tasks_clr: [TASKS_CLR; 8], pub events_in: [EVENTS_IN; 8], pub events_port: EVENTS_PORT, pub intenset: INTENSET, pub intenclr: INTENCLR, pub config: [CONFIG; 8], /* private fields */ }
Expand description

Register block

Fields§

§tasks_out: [TASKS_OUT; 8]

0x00..0x20 - Description collection[n]: Task for writing to pin specified in CONFIG[n].PSEL. Action on pin is configured in CONFIG[n].POLARITY.

§tasks_set: [TASKS_SET; 8]

0x30..0x50 - Description collection[n]: Task for writing to pin specified in CONFIG[n].PSEL. Action on pin is to set it high.

§tasks_clr: [TASKS_CLR; 8]

0x60..0x80 - Description collection[n]: Task for writing to pin specified in CONFIG[n].PSEL. Action on pin is to set it low.

§events_in: [EVENTS_IN; 8]

0x100..0x120 - Description collection[n]: Event generated from pin specified in CONFIG[n].PSEL

§events_port: EVENTS_PORT

0x17c - Event generated from multiple input GPIO pins with SENSE mechanism enabled

§intenset: INTENSET

0x304 - Enable interrupt

§intenclr: INTENCLR

0x308 - Disable interrupt

§config: [CONFIG; 8]

0x510..0x530 - Description collection[n]: Configuration for OUT[n], SET[n] and CLR[n] tasks and IN[n] event

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, 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.