stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `IACR` writer
pub type W = crate::W<IACRrs>;
///Field `CAEF` writer - Configuration access error flag clear Set this bit to clear CAEF bit in MCE_IASR register.
pub type CAEF_W<'a, REG> = crate::BitWriter<'a, REG>;
///Field `IAEF` writer - Illegal access error flag clear Set this bit to clear IAEF bit in MCE_IASR register. Clearing IAEF bit permits to capture new error information in MCE_IAESR and MCE_IADDR registers. Note that clearing this bit does not clear RISAB_IADDR register.
pub type IAEF_W<'a, REG> = crate::BitWriter<'a, REG>;
impl core::fmt::Debug for crate::generic::Reg<IACRrs> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "(not readable)")
    }
}
impl W {
    ///Bit 0 - Configuration access error flag clear Set this bit to clear CAEF bit in MCE_IASR register.
    #[inline(always)]
    pub fn caef(&mut self) -> CAEF_W<IACRrs> {
        CAEF_W::new(self, 0)
    }
    ///Bit 1 - Illegal access error flag clear Set this bit to clear IAEF bit in MCE_IASR register. Clearing IAEF bit permits to capture new error information in MCE_IAESR and MCE_IADDR registers. Note that clearing this bit does not clear RISAB_IADDR register.
    #[inline(always)]
    pub fn iaef(&mut self) -> IAEF_W<IACRrs> {
        IAEF_W::new(self, 1)
    }
}
/**MCE illegal access clear register

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`iacr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
pub struct IACRrs;
impl crate::RegisterSpec for IACRrs {
    type Ux = u32;
}
///`write(|w| ..)` method takes [`iacr::W`](W) writer structure
impl crate::Writable for IACRrs {
    type Safety = crate::Unsafe;
}
///`reset()` method sets IACR to value 0
impl crate::Resettable for IACRrs {}