stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `CPT1R` reader
pub type R = crate::R<CPT1Rrs>;
///Field `CPT` reader - Timerx Capture 1 value
pub type CPT_R = crate::FieldReader<u16>;
impl R {
    ///Bits 0:15 - Timerx Capture 1 value
    #[inline(always)]
    pub fn cpt(&self) -> CPT_R {
        CPT_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("CPT1R").field("cpt", &self.cpt()).finish()
    }
}
/**Timerx Capture 1 Register

You can [`read`](crate::Reg::read) this register and get [`cpt1r::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
pub struct CPT1Rrs;
impl crate::RegisterSpec for CPT1Rrs {
    type Ux = u32;
}
///`read()` method returns [`cpt1r::R`](R) reader structure
impl crate::Readable for CPT1Rrs {}
///`reset()` method sets CPT1R to value 0
impl crate::Resettable for CPT1Rrs {}