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
#[doc = "Reader of register STATUS"]
pub type R = crate::R<u32, super::STATUS>;
#[doc = "Reader of field `BOD33RDY`"]
pub type BOD33RDY_R = crate::R<bool, bool>;
#[doc = "Reader of field `BOD33DET`"]
pub type BOD33DET_R = crate::R<bool, bool>;
#[doc = "Reader of field `B33SRDY`"]
pub type B33SRDY_R = crate::R<bool, bool>;
#[doc = "Reader of field `VREGRDY`"]
pub type VREGRDY_R = crate::R<bool, bool>;
#[doc = "Reader of field `VCORERDY`"]
pub type VCORERDY_R = crate::R<bool, bool>;
impl R {
#[doc = "Bit 0 - BOD33 Ready"]
#[inline(always)]
pub fn bod33rdy(&self) -> BOD33RDY_R {
BOD33RDY_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - BOD33 Detection"]
#[inline(always)]
pub fn bod33det(&self) -> BOD33DET_R {
BOD33DET_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - BOD33 Synchronization Ready"]
#[inline(always)]
pub fn b33srdy(&self) -> B33SRDY_R {
B33SRDY_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 8 - Voltage Regulator Ready"]
#[inline(always)]
pub fn vregrdy(&self) -> VREGRDY_R {
VREGRDY_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 10 - VDDCORE Ready"]
#[inline(always)]
pub fn vcorerdy(&self) -> VCORERDY_R {
VCORERDY_R::new(((self.bits >> 10) & 0x01) != 0)
}
}