#[doc = "Reader of register CALIB"] pub type R = crate::R; #[doc = "Reader of field `TENMS`"] pub type TENMS_R = crate::R; #[doc = "Indicates whether the TENMS value is exact\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum SKEW_A { #[doc = "0: TENMS value is exact"] _0 = 0, #[doc = "1: TENMS value is inexact, or not given"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: SKEW_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `SKEW`"] pub type SKEW_R = crate::R; impl SKEW_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> SKEW_A { match self.bits { false => SKEW_A::_0, true => SKEW_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == SKEW_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == SKEW_A::_1 } } #[doc = "Indicates whether the device provides a reference clock to the processor\n\nValue on reset: 1"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum NOREF_A { #[doc = "0: The reference clock is provided"] _0 = 0, #[doc = "1: The reference clock is not provided"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: NOREF_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `NOREF`"] pub type NOREF_R = crate::R; impl NOREF_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> NOREF_A { match self.bits { false => NOREF_A::_0, true => NOREF_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == NOREF_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == NOREF_A::_1 } } impl R { #[doc = "Bits 0:23 - Reload value to use for 10ms timing"] #[inline(always)] pub fn tenms(&self) -> TENMS_R { TENMS_R::new((self.bits & 0x00ff_ffff) as u32) } #[doc = "Bit 30 - Indicates whether the TENMS value is exact"] #[inline(always)] pub fn skew(&self) -> SKEW_R { SKEW_R::new(((self.bits >> 30) & 0x01) != 0) } #[doc = "Bit 31 - Indicates whether the device provides a reference clock to the processor"] #[inline(always)] pub fn noref(&self) -> NOREF_R { NOREF_R::new(((self.bits >> 31) & 0x01) != 0) } }