stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `M2FAR` reader
pub type R = crate::R<M2FARrs>;
///Field `FADD` reader - ECC error failing address When an ECC error occurs the FADD bitfield contains the address that generated the ECC error.
pub type FADD_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - ECC error failing address When an ECC error occurs the FADD bitfield contains the address that generated the ECC error.
    #[inline(always)]
    pub fn fadd(&self) -> FADD_R {
        FADD_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("M2FAR").field("fadd", &self.fadd()).finish()
    }
}
/**RAMECC monitor 2 failing address register

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