stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `IADDR` reader
pub type R = crate::R<IADDRrs>;
///Field `IADD` reader - Illegal address When IAEF bit is set in MCE_IASR register IADD bitfield captures the 32-bit bus address of the erroneous access. Additional information can be found in MCE_IAESR register.
pub type IADD_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - Illegal address When IAEF bit is set in MCE_IASR register IADD bitfield captures the 32-bit bus address of the erroneous access. Additional information can be found in MCE_IAESR register.
    #[inline(always)]
    pub fn iadd(&self) -> IADD_R {
        IADD_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("IADDR").field("iadd", &self.iadd()).finish()
    }
}
/**MCE illegal address register

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