lpc54606_pac/enet/mac_sys_timestmp_stat.rs
1#[doc = "Reader of register MAC_SYS_TIMESTMP_STAT"]
2pub type R = crate::R<u32, super::MAC_SYS_TIMESTMP_STAT>;
3#[doc = "Reader of field `TSSOVF`"]
4pub type TSSOVF_R = crate::R<bool, bool>;
5impl R {
6 #[doc = "Bit 0 - Time stamp seconds overflow When set, indicates that the seconds value of the Time stamp has overflowed beyond 0xFFFF_FFFF."]
7 #[inline(always)]
8 pub fn tssovf(&self) -> TSSOVF_R {
9 TSSOVF_R::new((self.bits & 0x01) != 0)
10 }
11}