stm32f1_staging/stm32f102/spi1/
rxcrcr.rs1pub type R = crate::R<RXCRCRrs>;
3pub type RX_CRC_R = crate::FieldReader<u16>;
5impl R {
6 #[inline(always)]
8 pub fn rx_crc(&self) -> RX_CRC_R {
9 RX_CRC_R::new(self.bits)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("RXCRCR").field("rx_crc", &self.rx_crc()).finish()
15 }
16}
17pub struct RXCRCRrs;
23impl crate::RegisterSpec for RXCRCRrs {
24 type Ux = u16;
25}
26impl crate::Readable for RXCRCRrs {}
28impl crate::Resettable for RXCRCRrs {}