1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#[doc = "Reader of register MACTxTSSNR"]
pub type R = crate::R<u32, super::MACTXTSSNR>;
#[doc = "Reader of field `TXTSSLO`"]
pub type TXTSSLO_R = crate::R<u32, u32>;
#[doc = "Reader of field `TXTSSMIS`"]
pub type TXTSSMIS_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bits 0:30 - Transmit Timestamp Status Low"]
    #[inline(always)]
    pub fn txtsslo(&self) -> TXTSSLO_R {
        TXTSSLO_R::new((self.bits & 0x7fff_ffff) as u32)
    }
    #[doc = "Bit 31 - Transmit Timestamp Status Missed"]
    #[inline(always)]
    pub fn txtssmis(&self) -> TXTSSMIS_R {
        TXTSSMIS_R::new(((self.bits >> 31) & 0x01) != 0)
    }
}