pub struct R(/* private fields */);Expand description
Register STA reader
Implementations§
Source§impl R
impl R
Sourcepub fn rxfifohf(&self) -> BitReaderRaw<bool>
pub fn rxfifohf(&self) -> BitReaderRaw<bool>
Bit 15 - Receive FIFO half full: there are at least 8 words in the FIFO
Sourcepub fn txfifohe(&self) -> BitReaderRaw<bool>
pub fn txfifohe(&self) -> BitReaderRaw<bool>
Bit 14 - Transmit FIFO half empty: at least 8 words can be written into the FIFO
Sourcepub fn dbckend(&self) -> BitReaderRaw<bool>
pub fn dbckend(&self) -> BitReaderRaw<bool>
Bit 10 - Data block sent/received (CRC check passed)
Sourcepub fn dataend(&self) -> BitReaderRaw<bool>
pub fn dataend(&self) -> BitReaderRaw<bool>
Bit 8 - Data end (data counter, SDIDCOUNT, is zero)
Sourcepub fn cmdrend(&self) -> BitReaderRaw<bool>
pub fn cmdrend(&self) -> BitReaderRaw<bool>
Bit 6 - Command response received (CRC check passed)
Methods from Deref<Target = R<STA_SPEC>>§
Sourcepub fn bits(&self) -> <REG as RegisterSpec>::Ux
pub fn bits(&self) -> <REG as RegisterSpec>::Ux
Reads raw bits from register.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for R
impl RefUnwindSafe for R
impl Send for R
impl Sync for R
impl Unpin for R
impl UnwindSafe for R
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more