stm32mp1 0.16.0

Device support crates for STM32MP1 devices
Documentation
///Register `HR3` reader
pub type R = crate::R<HR3rs>;
///Field `H3` reader - H3
pub type H3_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - H3
    #[inline(always)]
    pub fn h3(&self) -> H3_R {
        H3_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("HR3").field("h3", &self.h3()).finish()
    }
}
/**HASH digest register 3

You can [`read`](crate::Reg::read) this register and get [`hr3::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#HASH1:HR3)*/
pub struct HR3rs;
impl crate::RegisterSpec for HR3rs {
    type Ux = u32;
}
///`read()` method returns [`hr3::R`](R) reader structure
impl crate::Readable for HR3rs {}
///`reset()` method sets HR3 to value 0
impl crate::Resettable for HR3rs {}