1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#[doc = "Reader of register PCLKSR"]
pub type R = crate::R<u32, super::PCLKSR>;
#[doc = "Reader of field `OSC0RDY`"]
pub type OSC0RDY_R = crate::R<bool, bool>;
#[doc = "Reader of field `DFLL0LOCKC`"]
pub type DFLL0LOCKC_R = crate::R<bool, bool>;
#[doc = "Reader of field `DFLL0LOCKF`"]
pub type DFLL0LOCKF_R = crate::R<bool, bool>;
#[doc = "Reader of field `DFLL0RDY`"]
pub type DFLL0RDY_R = crate::R<bool, bool>;
#[doc = "Reader of field `DFLL0RCS`"]
pub type DFLL0RCS_R = crate::R<bool, bool>;
#[doc = "Reader of field `DFLL0OOB`"]
pub type DFLL0OOB_R = crate::R<bool, bool>;
#[doc = "Reader of field `PLL0LOCK`"]
pub type PLL0LOCK_R = crate::R<bool, bool>;
#[doc = "Reader of field `PLL0LOCKLOST`"]
pub type PLL0LOCKLOST_R = crate::R<bool, bool>;
#[doc = "Reader of field `RCFASTLOCK`"]
pub type RCFASTLOCK_R = crate::R<bool, bool>;
#[doc = "Reader of field `RCFASTLOCKLOST`"]
pub type RCFASTLOCKLOST_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - OSC0 Ready"]
    #[inline(always)]
    pub fn osc0rdy(&self) -> OSC0RDY_R {
        OSC0RDY_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - DFLL0 Locked on Coarse Value"]
    #[inline(always)]
    pub fn dfll0lockc(&self) -> DFLL0LOCKC_R {
        DFLL0LOCKC_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 2 - DFLL0 Locked on Fine Value"]
    #[inline(always)]
    pub fn dfll0lockf(&self) -> DFLL0LOCKF_R {
        DFLL0LOCKF_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 3 - DFLL0 Synchronization Ready"]
    #[inline(always)]
    pub fn dfll0rdy(&self) -> DFLL0RDY_R {
        DFLL0RDY_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 4 - DFLL0 Reference Clock Stopped"]
    #[inline(always)]
    pub fn dfll0rcs(&self) -> DFLL0RCS_R {
        DFLL0RCS_R::new(((self.bits >> 4) & 0x01) != 0)
    }
    #[doc = "Bit 5 - DFLL0 Track Out Of Bounds"]
    #[inline(always)]
    pub fn dfll0oob(&self) -> DFLL0OOB_R {
        DFLL0OOB_R::new(((self.bits >> 5) & 0x01) != 0)
    }
    #[doc = "Bit 6 - PLL0 Locked on Accurate value"]
    #[inline(always)]
    pub fn pll0lock(&self) -> PLL0LOCK_R {
        PLL0LOCK_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - PLL0 lock lost value"]
    #[inline(always)]
    pub fn pll0locklost(&self) -> PLL0LOCKLOST_R {
        PLL0LOCKLOST_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bit 13 - RCFAST Locked on Accurate value"]
    #[inline(always)]
    pub fn rcfastlock(&self) -> RCFASTLOCK_R {
        RCFASTLOCK_R::new(((self.bits >> 13) & 0x01) != 0)
    }
    #[doc = "Bit 14 - RCFAST lock lost value"]
    #[inline(always)]
    pub fn rcfastlocklost(&self) -> RCFASTLOCKLOST_R {
        RCFASTLOCKLOST_R::new(((self.bits >> 14) & 0x01) != 0)
    }
}