[][src]Struct ambiq_apollo3_pac::mspi::inten::R

pub struct R { /* fields omitted */ }

Value read from the register

Methods

impl R[src]

pub fn bits(&self) -> u32[src]

Value of the register as raw bits

pub fn screrr(&self) -> SCRERRR[src]

Bit 12 - Scrambling Alignment Error. Scrambling operations must be aligned to word (4-byte) start address.

pub fn cqerr(&self) -> CQERRR[src]

Bit 11 - Command Queue Error Interrupt

pub fn cqpaused(&self) -> CQPAUSEDR[src]

Bit 10 - Command Queue is Paused.

pub fn cqupd(&self) -> CQUPDR[src]

Bit 9 - Command Queue Update Interrupt. Issued whenever the CQ performs an operation where address bit[0] is set. Useful for triggering CURIDX interrupts.

pub fn cqcmp(&self) -> CQCMPR[src]

Bit 8 - Command Queue Complete Interrupt

pub fn derr(&self) -> DERRR[src]

Bit 7 - DMA Error Interrupt

pub fn dcmp(&self) -> DCMPR[src]

Bit 6 - DMA Complete Interrupt

pub fn rxf(&self) -> RXFR[src]

Bit 5 - Receive FIFO full

pub fn rxo(&self) -> RXOR[src]

Bit 4 - Receive FIFO overflow (cannot happen in MSPI design -- MSPI bus pins will stall)

pub fn rxu(&self) -> RXUR[src]

Bit 3 - Receive FIFO underflow (only occurs when SW reads from an empty FIFO)

pub fn txo(&self) -> TXOR[src]

Bit 2 - Transmit FIFO Overflow (only occurs when SW writes to a full FIFO).

pub fn txe(&self) -> TXER[src]

Bit 1 - Transmit FIFO empty.

pub fn cmdcmp(&self) -> CMDCMPR[src]

Bit 0 - Transfer complete. Note that DMA and CQ operations are layered, so CMDCMP, DCMP, and CQ* can all be signalled simultaneously

Auto Trait Implementations

impl Send for R

impl Sync for R

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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

impl<T> Same for T

type Output = T

Should always be Self