stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `DINR9` reader
pub type R = crate::R<DINR9rs>;
///Field `DIN9` reader - Input data received from MDIO Master during write frames
pub type DIN9_R = crate::FieldReader<u16>;
impl R {
    ///Bits 0:15 - Input data received from MDIO Master during write frames
    #[inline(always)]
    pub fn din9(&self) -> DIN9_R {
        DIN9_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("DINR9").field("din9", &self.din9()).finish()
    }
}
/**MDIOS input data register 9

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