stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `PERIPH_ID_3` reader
pub type R = crate::R<PERIPH_ID_3rs>;
///Field `CUST_MOD_NUM` reader - Customer modification
pub type CUST_MOD_NUM_R = crate::FieldReader;
///Field `REV_AND` reader - Customer version
pub type REV_AND_R = crate::FieldReader;
impl R {
    ///Bits 0:3 - Customer modification
    #[inline(always)]
    pub fn cust_mod_num(&self) -> CUST_MOD_NUM_R {
        CUST_MOD_NUM_R::new((self.bits & 0x0f) as u8)
    }
    ///Bits 4:7 - Customer version
    #[inline(always)]
    pub fn rev_and(&self) -> REV_AND_R {
        REV_AND_R::new(((self.bits >> 4) & 0x0f) as u8)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("PERIPH_ID_3")
            .field("cust_mod_num", &self.cust_mod_num())
            .field("rev_and", &self.rev_and())
            .finish()
    }
}
/**AXI interconnect - peripheral ID3 register

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