tm4c129x/emac0/
timnano.rs

1#[doc = "Reader of register TIMNANO"]
2pub type R = crate::R<u32, super::TIMNANO>;
3#[doc = "Reader of field `TSSS`"]
4pub type TSSS_R = crate::R<u32, u32>;
5impl R {
6    #[doc = "Bits 0:30 - Timestamp Sub-Seconds"]
7    #[inline(always)]
8    pub fn tsss(&self) -> TSSS_R {
9        TSSS_R::new((self.bits & 0x7fff_ffff) as u32)
10    }
11}