stm32h7 0.16.0

Device support crates for STM32H7 devices
Documentation
///Register `MACTXTSSSR` reader
pub type R = crate::R<MACTXTSSSRrs>;
///Field `TXTSSHI` reader - Transmit Timestamp Status High This field contains the lower 32 bits of the Seconds field of Transmit packet's captured timestamp.
pub type TXTSSHI_R = crate::FieldReader<u32>;
impl R {
    ///Bits 0:31 - Transmit Timestamp Status High This field contains the lower 32 bits of the Seconds field of Transmit packet's captured timestamp.
    #[inline(always)]
    pub fn txtsshi(&self) -> TXTSSHI_R {
        TXTSSHI_R::new(self.bits)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MACTXTSSSR").field("txtsshi", &self.txtsshi()).finish()
    }
}
/**Tx timestamp status seconds register

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