stm32f2 0.16.0

Device support crates for STM32F2 devices
Documentation
///Register `HR%s` reader
pub type R = crate::R<HRrs>;
///Field `H` reader - H0
pub type H_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - H0
    #[inline(always)]
    pub fn h(&self) -> H_R {
        H_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("HR").field("h", &self.h()).finish()
    }
}
/**digest registers

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

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F217.html#HASH:HR[0])*/
pub struct HRrs;
impl crate::RegisterSpec for HRrs {
    type Ux = u32;
}
///`read()` method returns [`hr::R`](R) reader structure
impl crate::Readable for HRrs {}
///`reset()` method sets HR%s to value 0
impl crate::Resettable for HRrs {}