stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `JDR%s` reader
pub type R = crate::R<JDRrs>;
///Field `JDATA` reader - Injected data
pub type JDATA_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - Injected data
    #[inline(always)]
    pub fn jdata(&self) -> JDATA_R {
        JDATA_R::new(self.bits)
    }
}
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()
    }
}
/**ADC group injected sequencer rank %s register

You can [`read`](crate::Reg::read) this register and get [`jdr::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
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 {}