stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `TTCTC` reader
pub type R = crate::R<TTCTCrs>;
///Field `CT` reader - Cycle Time
pub type CT_R = crate::FieldReader<u16>;
///Field `CC` reader - Cycle Count
pub type CC_R = crate::FieldReader;
impl R {
    ///Bits 0:15 - Cycle Time
    #[inline(always)]
    pub fn ct(&self) -> CT_R {
        CT_R::new((self.bits & 0xffff) as u16)
    }
    ///Bits 16:21 - Cycle Count
    #[inline(always)]
    pub fn cc(&self) -> CC_R {
        CC_R::new(((self.bits >> 16) & 0x3f) as u8)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("TTCTC").field("ct", &self.ct()).field("cc", &self.cc()).finish()
    }
}
/**FDCAN TT Cycle Time and Count Register

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