stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `DINR3` reader
pub type R = crate::R<DINR3rs>;
///Field `DIN3` reader - Input data received from MDIO Master during write frames
pub type DIN3_R = crate::FieldReader<u16>;
impl R {
    ///Bits 0:15 - Input data received from MDIO Master during write frames
    #[inline(always)]
    pub fn din3(&self) -> DIN3_R {
        DIN3_R::new((self.bits & 0xffff) as u16)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("DINR3").field("din3", &self.din3()).finish()
    }
}
/**MDIOS input data register 3

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