stm32f1/stm32f101/adc1/
jdr.rs1pub type R = crate::R<JDRrs>;
3pub type JDATA_R = crate::FieldReader<u16>;
5impl R {
6 #[inline(always)]
8 pub fn jdata(&self) -> JDATA_R {
9 JDATA_R::new((self.bits & 0xffff) as u16)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("JDR").field("jdata", &self.jdata()).finish()
15 }
16}
17pub struct JDRrs;
23impl crate::RegisterSpec for JDRrs {
24 type Ux = u32;
25}
26impl crate::Readable for JDRrs {}
28impl crate::Resettable for JDRrs {}