stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `MACLETR` reader
pub type R = crate::R<MACLETRrs>;
///Register `MACLETR` writer
pub type W = crate::W<MACLETRrs>;
///Field `LPIET` reader - LPI Entry Timer This field specifies the time in microseconds the MAC waits to enter LPI mode, after it has transmitted all the frames. This field is valid and used only when LPITE and LPITXA are set to 1. Bits \[2:0\] are read-only so that the granularity of this timer is in steps of 8 micro-seconds.
pub type LPIET_R = crate::FieldReader<u32>;
///Field `LPIET` writer - LPI Entry Timer This field specifies the time in microseconds the MAC waits to enter LPI mode, after it has transmitted all the frames. This field is valid and used only when LPITE and LPITXA are set to 1. Bits \[2:0\] are read-only so that the granularity of this timer is in steps of 8 micro-seconds.
pub type LPIET_W<'a, REG> = crate::FieldWriter<'a, REG, 20, u32>;
impl R {
    ///Bits 0:19 - LPI Entry Timer This field specifies the time in microseconds the MAC waits to enter LPI mode, after it has transmitted all the frames. This field is valid and used only when LPITE and LPITXA are set to 1. Bits \[2:0\] are read-only so that the granularity of this timer is in steps of 8 micro-seconds.
    #[inline(always)]
    pub fn lpiet(&self) -> LPIET_R {
        LPIET_R::new(self.bits & 0x000f_ffff)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MACLETR").field("lpiet", &self.lpiet()).finish()
    }
}
impl W {
    ///Bits 0:19 - LPI Entry Timer This field specifies the time in microseconds the MAC waits to enter LPI mode, after it has transmitted all the frames. This field is valid and used only when LPITE and LPITXA are set to 1. Bits \[2:0\] are read-only so that the granularity of this timer is in steps of 8 micro-seconds.
    #[inline(always)]
    pub fn lpiet(&mut self) -> LPIET_W<MACLETRrs> {
        LPIET_W::new(self, 0)
    }
}
/**LPI entry timer register

You can [`read`](crate::Reg::read) this register and get [`macletr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`macletr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).*/
pub struct MACLETRrs;
impl crate::RegisterSpec for MACLETRrs {
    type Ux = u32;
}
///`read()` method returns [`macletr::R`](R) reader structure
impl crate::Readable for MACLETRrs {}
///`write(|w| ..)` method takes [`macletr::W`](W) writer structure
impl crate::Writable for MACLETRrs {
    type Safety = crate::Unsafe;
}
///`reset()` method sets MACLETR to value 0
impl crate::Resettable for MACLETRrs {}