stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `PSMAR` reader
pub type R = crate::R<PSMARrs>;
///Register `PSMAR` writer
pub type W = crate::W<PSMARrs>;
///Field `MATCH` reader - Status match Value to be compared with the masked status register to get a match
pub type MATCH_R = crate::FieldReader<u32>;
///Field `MATCH` writer - Status match Value to be compared with the masked status register to get a match
pub type MATCH_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
impl R {
    ///Bits 0:31 - Status match Value to be compared with the masked status register to get a match
    #[inline(always)]
    pub fn match_(&self) -> MATCH_R {
        MATCH_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("PSMAR").field("match_", &self.match_()).finish()
    }
}
impl W {
    ///Bits 0:31 - Status match Value to be compared with the masked status register to get a match
    #[inline(always)]
    pub fn match_(&mut self) -> MATCH_W<PSMARrs> {
        MATCH_W::new(self, 0)
    }
}
/**XSPI polling status match register

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