pub type R = crate::R<STARrs>;
pub type CCRCFAIL_R = crate::BitReader;
pub type DCRCFAIL_R = crate::BitReader;
pub type CTIMEOUT_R = crate::BitReader;
pub type DTIMEOUT_R = crate::BitReader;
pub type TXUNDERR_R = crate::BitReader;
pub type RXOVERR_R = crate::BitReader;
pub type CMDREND_R = crate::BitReader;
pub type CMDSENT_R = crate::BitReader;
pub type DATAEND_R = crate::BitReader;
pub type DHOLD_R = crate::BitReader;
pub type DBCKEND_R = crate::BitReader;
pub type DABORT_R = crate::BitReader;
pub type DPSMACT_R = crate::BitReader;
pub type CPSMACT_R = crate::BitReader;
pub type TXFIFOHE_R = crate::BitReader;
pub type RXFIFOHF_R = crate::BitReader;
pub type TXFIFOF_R = crate::BitReader;
pub type RXFIFOF_R = crate::BitReader;
pub type TXFIFOE_R = crate::BitReader;
pub type RXFIFOE_R = crate::BitReader;
pub type BUSYD0_R = crate::BitReader;
pub type BUSYD0END_R = crate::BitReader;
pub type SDIOIT_R = crate::BitReader;
pub type ACKFAIL_R = crate::BitReader;
pub type ACKTIMEOUT_R = crate::BitReader;
pub type VSWEND_R = crate::BitReader;
pub type CKSTOP_R = crate::BitReader;
pub type IDMATE_R = crate::BitReader;
pub type IDMABTC_R = crate::BitReader;
impl R {
#[inline(always)]
pub fn ccrcfail(&self) -> CCRCFAIL_R {
CCRCFAIL_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn dcrcfail(&self) -> DCRCFAIL_R {
DCRCFAIL_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn ctimeout(&self) -> CTIMEOUT_R {
CTIMEOUT_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn dtimeout(&self) -> DTIMEOUT_R {
DTIMEOUT_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn txunderr(&self) -> TXUNDERR_R {
TXUNDERR_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn rxoverr(&self) -> RXOVERR_R {
RXOVERR_R::new(((self.bits >> 5) & 1) != 0)
}
#[inline(always)]
pub fn cmdrend(&self) -> CMDREND_R {
CMDREND_R::new(((self.bits >> 6) & 1) != 0)
}
#[inline(always)]
pub fn cmdsent(&self) -> CMDSENT_R {
CMDSENT_R::new(((self.bits >> 7) & 1) != 0)
}
#[inline(always)]
pub fn dataend(&self) -> DATAEND_R {
DATAEND_R::new(((self.bits >> 8) & 1) != 0)
}
#[inline(always)]
pub fn dhold(&self) -> DHOLD_R {
DHOLD_R::new(((self.bits >> 9) & 1) != 0)
}
#[inline(always)]
pub fn dbckend(&self) -> DBCKEND_R {
DBCKEND_R::new(((self.bits >> 10) & 1) != 0)
}
#[inline(always)]
pub fn dabort(&self) -> DABORT_R {
DABORT_R::new(((self.bits >> 11) & 1) != 0)
}
#[inline(always)]
pub fn dpsmact(&self) -> DPSMACT_R {
DPSMACT_R::new(((self.bits >> 12) & 1) != 0)
}
#[inline(always)]
pub fn cpsmact(&self) -> CPSMACT_R {
CPSMACT_R::new(((self.bits >> 13) & 1) != 0)
}
#[inline(always)]
pub fn txfifohe(&self) -> TXFIFOHE_R {
TXFIFOHE_R::new(((self.bits >> 14) & 1) != 0)
}
#[inline(always)]
pub fn rxfifohf(&self) -> RXFIFOHF_R {
RXFIFOHF_R::new(((self.bits >> 15) & 1) != 0)
}
#[inline(always)]
pub fn txfifof(&self) -> TXFIFOF_R {
TXFIFOF_R::new(((self.bits >> 16) & 1) != 0)
}
#[inline(always)]
pub fn rxfifof(&self) -> RXFIFOF_R {
RXFIFOF_R::new(((self.bits >> 17) & 1) != 0)
}
#[inline(always)]
pub fn txfifoe(&self) -> TXFIFOE_R {
TXFIFOE_R::new(((self.bits >> 18) & 1) != 0)
}
#[inline(always)]
pub fn rxfifoe(&self) -> RXFIFOE_R {
RXFIFOE_R::new(((self.bits >> 19) & 1) != 0)
}
#[inline(always)]
pub fn busyd0(&self) -> BUSYD0_R {
BUSYD0_R::new(((self.bits >> 20) & 1) != 0)
}
#[inline(always)]
pub fn busyd0end(&self) -> BUSYD0END_R {
BUSYD0END_R::new(((self.bits >> 21) & 1) != 0)
}
#[inline(always)]
pub fn sdioit(&self) -> SDIOIT_R {
SDIOIT_R::new(((self.bits >> 22) & 1) != 0)
}
#[inline(always)]
pub fn ackfail(&self) -> ACKFAIL_R {
ACKFAIL_R::new(((self.bits >> 23) & 1) != 0)
}
#[inline(always)]
pub fn acktimeout(&self) -> ACKTIMEOUT_R {
ACKTIMEOUT_R::new(((self.bits >> 24) & 1) != 0)
}
#[inline(always)]
pub fn vswend(&self) -> VSWEND_R {
VSWEND_R::new(((self.bits >> 25) & 1) != 0)
}
#[inline(always)]
pub fn ckstop(&self) -> CKSTOP_R {
CKSTOP_R::new(((self.bits >> 26) & 1) != 0)
}
#[inline(always)]
pub fn idmate(&self) -> IDMATE_R {
IDMATE_R::new(((self.bits >> 27) & 1) != 0)
}
#[inline(always)]
pub fn idmabtc(&self) -> IDMABTC_R {
IDMABTC_R::new(((self.bits >> 28) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("STAR")
.field("ccrcfail", &self.ccrcfail())
.field("dcrcfail", &self.dcrcfail())
.field("ctimeout", &self.ctimeout())
.field("dtimeout", &self.dtimeout())
.field("txunderr", &self.txunderr())
.field("rxoverr", &self.rxoverr())
.field("cmdrend", &self.cmdrend())
.field("cmdsent", &self.cmdsent())
.field("dataend", &self.dataend())
.field("dhold", &self.dhold())
.field("dbckend", &self.dbckend())
.field("dabort", &self.dabort())
.field("dpsmact", &self.dpsmact())
.field("cpsmact", &self.cpsmact())
.field("txfifohe", &self.txfifohe())
.field("rxfifohf", &self.rxfifohf())
.field("txfifof", &self.txfifof())
.field("rxfifof", &self.rxfifof())
.field("txfifoe", &self.txfifoe())
.field("rxfifoe", &self.rxfifoe())
.field("busyd0", &self.busyd0())
.field("busyd0end", &self.busyd0end())
.field("sdioit", &self.sdioit())
.field("ackfail", &self.ackfail())
.field("acktimeout", &self.acktimeout())
.field("vswend", &self.vswend())
.field("ckstop", &self.ckstop())
.field("idmate", &self.idmate())
.field("idmabtc", &self.idmabtc())
.finish()
}
}
pub struct STARrs;
impl crate::RegisterSpec for STARrs {
type Ux = u32;
}
impl crate::Readable for STARrs {}
impl crate::Resettable for STARrs {}