[][src]Struct ambiq_apollo3_pac::mspi::intclr::W

pub struct W { /* fields omitted */ }

Value to write to the register

Methods

impl W[src]

pub fn reset_value() -> W[src]

Reset value of the register

pub unsafe fn bits(&mut self, bits: u32) -> &mut Self[src]

Writes raw bits to the register

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

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

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

Bit 11 - Command Queue Error Interrupt

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

Bit 10 - Command Queue is Paused.

pub fn cqupd(&mut self) -> _CQUPDW[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(&mut self) -> _CQCMPW[src]

Bit 8 - Command Queue Complete Interrupt

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

Bit 7 - DMA Error Interrupt

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

Bit 6 - DMA Complete Interrupt

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

Bit 5 - Receive FIFO full

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

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

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

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

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

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

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

Bit 1 - Transmit FIFO empty.

pub fn cmdcmp(&mut self) -> _CMDCMPW[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 W

impl Sync for W

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