stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `RAMPVALR` reader
pub type R = crate::R<RAMPVALRrs>;
///Field `TS1_RAMP_COEFF` reader - Engineering value of the ramp coefficient for the temperature sensor 1. This value is expressed in Hz/ C.
pub type TS1_RAMP_COEFF_R = crate::FieldReader<u16>;
impl R {
    ///Bits 0:15 - Engineering value of the ramp coefficient for the temperature sensor 1. This value is expressed in Hz/ C.
    #[inline(always)]
    pub fn ts1_ramp_coeff(&self) -> TS1_RAMP_COEFF_R {
        TS1_RAMP_COEFF_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("RAMPVALR")
            .field("ts1_ramp_coeff", &self.ts1_ramp_coeff())
            .finish()
    }
}
/**Temperature sensor ramp value register

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