stm32f1_staging/stm32f100/cec/
rxd.rs1pub type R = crate::R<RXDrs>;
3pub type RXD_R = crate::FieldReader;
5impl R {
6 #[inline(always)]
8 pub fn rxd(&self) -> RXD_R {
9 RXD_R::new((self.bits & 0xff) as u8)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("RXD").field("rxd", &self.rxd()).finish()
15 }
16}
17pub struct RXDrs;
23impl crate::RegisterSpec for RXDrs {
24 type Ux = u32;
25}
26impl crate::Readable for RXDrs {}
28impl crate::Resettable for RXDrs {}