stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `COMP_ID_3` reader
pub type R = crate::R<COMP_ID_3rs>;
///Field `PREAMBLE` reader - Preamble bits 20 to 27
pub type PREAMBLE_R = crate::FieldReader;
impl R {
    ///Bits 0:7 - Preamble bits 20 to 27
    #[inline(always)]
    pub fn preamble(&self) -> PREAMBLE_R {
        PREAMBLE_R::new((self.bits & 0xff) as u8)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("COMP_ID_3").field("preamble", &self.preamble()).finish()
    }
}
/**AXI interconnect - component ID3 register

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