stm32f1 0.16.0

Device support crates for STM32F1 devices
Documentation
///Register `JDR%s` reader
pub type R = crate::R<JDRrs>;
///Field `JDATA` reader - Injected data
pub type JDATA_R = crate::FieldReader<u16>;
impl R {
    ///Bits 0:15 - Injected data
    #[inline(always)]
    pub fn jdata(&self) -> JDATA_R {
        JDATA_R::new((self.bits & 0xffff) as u16)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("JDR").field("jdata", &self.jdata()).finish()
    }
}
/**injected data register x

You can [`read`](crate::Reg::read) this register and get [`jdr::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F102.html#ADC1:JDR[1])*/
pub struct JDRrs;
impl crate::RegisterSpec for JDRrs {
    type Ux = u32;
}
///`read()` method returns [`jdr::R`](R) reader structure
impl crate::Readable for JDRrs {}
///`reset()` method sets JDR%s to value 0
impl crate::Resettable for JDRrs {}