#[doc = "Register `CSR` reader"] pub type R = crate::R<CsrSpec>; #[doc = "Field `RXRDY` reader - Receiver Ready"] pub type RxrdyR = crate::BitReader; #[doc = "Field `TXRDY` reader - Transmitter Ready"] pub type TxrdyR = crate::BitReader; #[doc = "Field `RXBRK` reader - Break Received/End of Break"] pub type RxbrkR = crate::BitReader; #[doc = "Field `ENDRX` reader - End of Receiver Transfer"] pub type EndrxR = crate::BitReader; #[doc = "Field `ENDTX` reader - End of Transmitter Transfer"] pub type EndtxR = crate::BitReader; #[doc = "Field `OVRE` reader - Overrun Error"] pub type OvreR = crate::BitReader; #[doc = "Field `FRAME` reader - Framing Error"] pub type FrameR = crate::BitReader; #[doc = "Field `PARE` reader - Parity Error"] pub type PareR = crate::BitReader; #[doc = "Field `TIMEOUT` reader - Receiver Time-out"] pub type TimeoutR = crate::BitReader; #[doc = "Field `TXEMPTY` reader - Transmitter Empty"] pub type TxemptyR = crate::BitReader; #[doc = "Field `ITER` reader - Max Number of Repetitions Reached"] pub type IterR = crate::BitReader; #[doc = "Field `TXBUFE` reader - Transmission Buffer Empty"] pub type TxbufeR = crate::BitReader; #[doc = "Field `RXBUFF` reader - Reception Buffer Full"] pub type RxbuffR = crate::BitReader; #[doc = "Field `NACK` reader - Non AcknowledgeInterrupt"] pub type NackR = crate::BitReader; #[doc = "Field `RIIC` reader - Ring Indicator Input Change Flag"] pub type RiicR = crate::BitReader; #[doc = "Field `DSRIC` reader - Data Set Ready Input Change Flag"] pub type DsricR = crate::BitReader; #[doc = "Field `DCDIC` reader - Data Carrier Detect Input Change Flag"] pub type DcdicR = crate::BitReader; #[doc = "Field `CTSIC` reader - Clear to Send Input Change Flag"] pub type CtsicR = crate::BitReader; #[doc = "Field `RI` reader - Image of RI Input"] pub type RiR = crate::BitReader; #[doc = "Field `DSR` reader - Image of DSR Input"] pub type DsrR = crate::BitReader; #[doc = "Field `DCD` reader - Image of DCD Input"] pub type DcdR = crate::BitReader; #[doc = "Field `CTS` reader - Image of CTS Input"] pub type CtsR = crate::BitReader; #[doc = "Field `MANERR` reader - Manchester Error"] pub type ManerrR = crate::BitReader; impl R { #[doc = "Bit 0 - Receiver Ready"] #[inline(always)] pub fn rxrdy(&self) -> RxrdyR { RxrdyR::new((self.bits & 1) != 0) } #[doc = "Bit 1 - Transmitter Ready"] #[inline(always)] pub fn txrdy(&self) -> TxrdyR { TxrdyR::new(((self.bits >> 1) & 1) != 0) } #[doc = "Bit 2 - Break Received/End of Break"] #[inline(always)] pub fn rxbrk(&self) -> RxbrkR { RxbrkR::new(((self.bits >> 2) & 1) != 0) } #[doc = "Bit 3 - End of Receiver Transfer"] #[inline(always)] pub fn endrx(&self) -> EndrxR { EndrxR::new(((self.bits >> 3) & 1) != 0) } #[doc = "Bit 4 - End of Transmitter Transfer"] #[inline(always)] pub fn endtx(&self) -> EndtxR { EndtxR::new(((self.bits >> 4) & 1) != 0) } #[doc = "Bit 5 - Overrun Error"] #[inline(always)] pub fn ovre(&self) -> OvreR { OvreR::new(((self.bits >> 5) & 1) != 0) } #[doc = "Bit 6 - Framing Error"] #[inline(always)] pub fn frame(&self) -> FrameR { FrameR::new(((self.bits >> 6) & 1) != 0) } #[doc = "Bit 7 - Parity Error"] #[inline(always)] pub fn pare(&self) -> PareR { PareR::new(((self.bits >> 7) & 1) != 0) } #[doc = "Bit 8 - Receiver Time-out"] #[inline(always)] pub fn timeout(&self) -> TimeoutR { TimeoutR::new(((self.bits >> 8) & 1) != 0) } #[doc = "Bit 9 - Transmitter Empty"] #[inline(always)] pub fn txempty(&self) -> TxemptyR { TxemptyR::new(((self.bits >> 9) & 1) != 0) } #[doc = "Bit 10 - Max Number of Repetitions Reached"] #[inline(always)] pub fn iter(&self) -> IterR { IterR::new(((self.bits >> 10) & 1) != 0) } #[doc = "Bit 11 - Transmission Buffer Empty"] #[inline(always)] pub fn txbufe(&self) -> TxbufeR { TxbufeR::new(((self.bits >> 11) & 1) != 0) } #[doc = "Bit 12 - Reception Buffer Full"] #[inline(always)] pub fn rxbuff(&self) -> RxbuffR { RxbuffR::new(((self.bits >> 12) & 1) != 0) } #[doc = "Bit 13 - Non AcknowledgeInterrupt"] #[inline(always)] pub fn nack(&self) -> NackR { NackR::new(((self.bits >> 13) & 1) != 0) } #[doc = "Bit 16 - Ring Indicator Input Change Flag"] #[inline(always)] pub fn riic(&self) -> RiicR { RiicR::new(((self.bits >> 16) & 1) != 0) } #[doc = "Bit 17 - Data Set Ready Input Change Flag"] #[inline(always)] pub fn dsric(&self) -> DsricR { DsricR::new(((self.bits >> 17) & 1) != 0) } #[doc = "Bit 18 - Data Carrier Detect Input Change Flag"] #[inline(always)] pub fn dcdic(&self) -> DcdicR { DcdicR::new(((self.bits >> 18) & 1) != 0) } #[doc = "Bit 19 - Clear to Send Input Change Flag"] #[inline(always)] pub fn ctsic(&self) -> CtsicR { CtsicR::new(((self.bits >> 19) & 1) != 0) } #[doc = "Bit 20 - Image of RI Input"] #[inline(always)] pub fn ri(&self) -> RiR { RiR::new(((self.bits >> 20) & 1) != 0) } #[doc = "Bit 21 - Image of DSR Input"] #[inline(always)] pub fn dsr(&self) -> DsrR { DsrR::new(((self.bits >> 21) & 1) != 0) } #[doc = "Bit 22 - Image of DCD Input"] #[inline(always)] pub fn dcd(&self) -> DcdR { DcdR::new(((self.bits >> 22) & 1) != 0) } #[doc = "Bit 23 - Image of CTS Input"] #[inline(always)] pub fn cts(&self) -> CtsR { CtsR::new(((self.bits >> 23) & 1) != 0) } #[doc = "Bit 24 - Manchester Error"] #[inline(always)] pub fn manerr(&self) -> ManerrR { ManerrR::new(((self.bits >> 24) & 1) != 0) } } #[doc = "Channel Status Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csr::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."] pub struct CsrSpec; impl crate::RegisterSpec for CsrSpec { type Ux = u32; } #[doc = "`read()` method returns [`csr::R`](R) reader structure"] impl crate::Readable for CsrSpec {}