efm32gg11b/eth/tsupeertxsec.rs
1#[doc = "Reader of register TSUPEERTXSEC"]
2pub type R = crate::R<u32, super::TSUPEERTXSEC>;
3#[doc = "Reader of field `TIMER`"]
4pub type TIMER_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - PTP Peer Event Frame Received Seconds"]
7 #[inline(always)]
8 pub fn timer(&self) -> TIMER_R { TIMER_R::new((self.bits & 0xffff_ffff) as u32) }
9}