stm32h5 0.15.1

Device support crates for STM32H5 devices
Documentation
#[doc = "Register `CIDR1` reader"]
pub type R = crate::R<CIDR1rs>;
#[doc = "Field `PREAMBLE` reader - component identification bits \\[11:8\\]"]
pub type PREAMBLE_R = crate::FieldReader;
#[doc = "Field `CLASS` reader - component identification bits \\[15:12\\]
- component class"]
pub type CLASS_R = crate::FieldReader;
impl R {
    #[doc = "Bits 0:3 - component identification bits \\[11:8\\]"]
    #[inline(always)]
    pub fn preamble(&self) -> PREAMBLE_R {
        PREAMBLE_R::new((self.bits & 0x0f) as u8)
    }
    #[doc = "Bits 4:7 - component identification bits \\[15:12\\]
- component class"]
    #[inline(always)]
    pub fn class(&self) -> CLASS_R {
        CLASS_R::new(((self.bits >> 4) & 0x0f) as u8)
    }
}
#[doc = "DBGMCU CoreSight component identity register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cidr1::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CIDR1rs;
impl crate::RegisterSpec for CIDR1rs {
    type Ux = u32;
}
#[doc = "`read()` method returns [`cidr1::R`](R) reader structure"]
impl crate::Readable for CIDR1rs {}
#[doc = "`reset()` method sets CIDR1 to value 0xf0"]
impl crate::Resettable for CIDR1rs {
    const RESET_VALUE: u32 = 0xf0;
}