stm32f2 0.16.0

Device support crates for STM32F2 devices
Documentation
///Register `PTPTSLR` reader
pub type R = crate::R<PTPTSLRrs>;
///Field `STSS` reader - System time subseconds
pub type STSS_R = crate::FieldReader<u32>;
///Field `STPNS` reader - System time positive or negative sign
pub type STPNS_R = crate::BitReader;
impl R {
    ///Bits 0:30 - System time subseconds
    #[inline(always)]
    pub fn stss(&self) -> STSS_R {
        STSS_R::new(self.bits & 0x7fff_ffff)
    }
    ///Bit 31 - System time positive or negative sign
    #[inline(always)]
    pub fn stpns(&self) -> STPNS_R {
        STPNS_R::new(((self.bits >> 31) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("PTPTSLR")
            .field("stss", &self.stss())
            .field("stpns", &self.stpns())
            .finish()
    }
}
/**Ethernet PTP time stamp low register

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

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