Struct nrf91::twim0_ns::RegisterBlock

source ·
#[repr(C)]
pub struct RegisterBlock {
Show 35 fields pub tasks_startrx: TASKS_STARTRX, pub tasks_starttx: TASKS_STARTTX, pub tasks_stop: TASKS_STOP, pub tasks_suspend: TASKS_SUSPEND, pub tasks_resume: TASKS_RESUME, pub subscribe_startrx: SUBSCRIBE_STARTRX, pub subscribe_starttx: SUBSCRIBE_STARTTX, pub subscribe_stop: SUBSCRIBE_STOP, pub subscribe_suspend: SUBSCRIBE_SUSPEND, pub subscribe_resume: SUBSCRIBE_RESUME, pub events_stopped: EVENTS_STOPPED, pub events_error: EVENTS_ERROR, pub events_suspended: EVENTS_SUSPENDED, pub events_rxstarted: EVENTS_RXSTARTED, pub events_txstarted: EVENTS_TXSTARTED, pub events_lastrx: EVENTS_LASTRX, pub events_lasttx: EVENTS_LASTTX, pub publish_stopped: PUBLISH_STOPPED, pub publish_error: PUBLISH_ERROR, pub publish_suspended: PUBLISH_SUSPENDED, pub publish_rxstarted: PUBLISH_RXSTARTED, pub publish_txstarted: PUBLISH_TXSTARTED, pub publish_lastrx: PUBLISH_LASTRX, pub publish_lasttx: PUBLISH_LASTTX, pub shorts: SHORTS, pub inten: INTEN, pub intenset: INTENSET, pub intenclr: INTENCLR, pub errorsrc: ERRORSRC, pub enable: ENABLE, pub psel: PSEL, pub frequency: FREQUENCY, pub rxd: RXD, pub txd: TXD, pub address: ADDRESS, /* private fields */
}
Expand description

Register block

Fields§

§tasks_startrx: TASKS_STARTRX

0x00 - Start TWI receive sequence

§tasks_starttx: TASKS_STARTTX

0x08 - Start TWI transmit sequence

§tasks_stop: TASKS_STOP

0x14 - Stop TWI transaction. Must be issued while the TWI master is not suspended.

§tasks_suspend: TASKS_SUSPEND

0x1c - Suspend TWI transaction

§tasks_resume: TASKS_RESUME

0x20 - Resume TWI transaction

§subscribe_startrx: SUBSCRIBE_STARTRX

0x80 - Subscribe configuration for task STARTRX

§subscribe_starttx: SUBSCRIBE_STARTTX

0x88 - Subscribe configuration for task STARTTX

§subscribe_stop: SUBSCRIBE_STOP

0x94 - Subscribe configuration for task STOP

§subscribe_suspend: SUBSCRIBE_SUSPEND

0x9c - Subscribe configuration for task SUSPEND

§subscribe_resume: SUBSCRIBE_RESUME

0xa0 - Subscribe configuration for task RESUME

§events_stopped: EVENTS_STOPPED

0x104 - TWI stopped

§events_error: EVENTS_ERROR

0x124 - TWI error

§events_suspended: EVENTS_SUSPENDED

0x148 - Last byte has been sent out after the SUSPEND task has been issued, TWI traffic is now suspended.

§events_rxstarted: EVENTS_RXSTARTED

0x14c - Receive sequence started

§events_txstarted: EVENTS_TXSTARTED

0x150 - Transmit sequence started

§events_lastrx: EVENTS_LASTRX

0x15c - Byte boundary, starting to receive the last byte

§events_lasttx: EVENTS_LASTTX

0x160 - Byte boundary, starting to transmit the last byte

§publish_stopped: PUBLISH_STOPPED

0x184 - Publish configuration for event STOPPED

§publish_error: PUBLISH_ERROR

0x1a4 - Publish configuration for event ERROR

§publish_suspended: PUBLISH_SUSPENDED

0x1c8 - Publish configuration for event SUSPENDED

§publish_rxstarted: PUBLISH_RXSTARTED

0x1cc - Publish configuration for event RXSTARTED

§publish_txstarted: PUBLISH_TXSTARTED

0x1d0 - Publish configuration for event TXSTARTED

§publish_lastrx: PUBLISH_LASTRX

0x1dc - Publish configuration for event LASTRX

§publish_lasttx: PUBLISH_LASTTX

0x1e0 - Publish configuration for event LASTTX

§shorts: SHORTS

0x200 - Shortcuts between local events and tasks

§inten: INTEN

0x300 - Enable or disable interrupt

§intenset: INTENSET

0x304 - Enable interrupt

§intenclr: INTENCLR

0x308 - Disable interrupt

§errorsrc: ERRORSRC

0x4c4 - Error source

§enable: ENABLE

0x500 - Enable TWIM

§psel: PSEL

0x508 - Unspecified

§frequency: FREQUENCY

0x524 - TWI frequency. Accuracy depends on the HFCLK source selected.

§rxd: RXD

0x534 - RXD EasyDMA channel

§txd: TXD

0x544 - TXD EasyDMA channel

§address: ADDRESS

0x588 - Address used in the TWI transfer

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

§

type Output = T

Should always be Self
source§

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

§

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

§

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.