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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#[doc = "Register `BGSR` reader"]
pub struct R(crate::R<BGSR_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<BGSR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<BGSR_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<BGSR_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `BGBUFRDY` reader - Bandgap Buffer Ready"]
pub type BGBUFRDY_R = crate::FieldReader<u8, BGBUFRDYSELECT_A>;
#[doc = "Bandgap Buffer Ready\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum BGBUFRDYSELECT_A {
    #[doc = "1: `1`"]
    FLASH = 1,
    #[doc = "2: `10`"]
    PLL = 2,
    #[doc = "4: `100`"]
    VREG = 4,
    #[doc = "8: `1000`"]
    BUFRR = 8,
    #[doc = "16: `10000`"]
    ADC = 16,
    #[doc = "32: `100000`"]
    LCD = 32,
}
impl From<BGBUFRDYSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: BGBUFRDYSELECT_A) -> Self {
        variant as _
    }
}
impl BGBUFRDY_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<BGBUFRDYSELECT_A> {
        match self.bits {
            1 => Some(BGBUFRDYSELECT_A::FLASH),
            2 => Some(BGBUFRDYSELECT_A::PLL),
            4 => Some(BGBUFRDYSELECT_A::VREG),
            8 => Some(BGBUFRDYSELECT_A::BUFRR),
            16 => Some(BGBUFRDYSELECT_A::ADC),
            32 => Some(BGBUFRDYSELECT_A::LCD),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `FLASH`"]
    #[inline(always)]
    pub fn is_flash(&self) -> bool {
        *self == BGBUFRDYSELECT_A::FLASH
    }
    #[doc = "Checks if the value of the field is `PLL`"]
    #[inline(always)]
    pub fn is_pll(&self) -> bool {
        *self == BGBUFRDYSELECT_A::PLL
    }
    #[doc = "Checks if the value of the field is `VREG`"]
    #[inline(always)]
    pub fn is_vreg(&self) -> bool {
        *self == BGBUFRDYSELECT_A::VREG
    }
    #[doc = "Checks if the value of the field is `BUFRR`"]
    #[inline(always)]
    pub fn is_bufrr(&self) -> bool {
        *self == BGBUFRDYSELECT_A::BUFRR
    }
    #[doc = "Checks if the value of the field is `ADC`"]
    #[inline(always)]
    pub fn is_adc(&self) -> bool {
        *self == BGBUFRDYSELECT_A::ADC
    }
    #[doc = "Checks if the value of the field is `LCD`"]
    #[inline(always)]
    pub fn is_lcd(&self) -> bool {
        *self == BGBUFRDYSELECT_A::LCD
    }
}
#[doc = "Field `BGRDY` reader - Bandgap Voltage Reference Ready"]
pub type BGRDY_R = crate::BitReader<bool>;
#[doc = "Field `LPBGRDY` reader - Low Power Bandgap Voltage Reference Ready"]
pub type LPBGRDY_R = crate::BitReader<bool>;
#[doc = "Field `VREF` reader - Voltage Reference Used by the System"]
pub type VREF_R = crate::FieldReader<u8, u8>;
impl R {
    #[doc = "Bits 0:7 - Bandgap Buffer Ready"]
    #[inline(always)]
    pub fn bgbufrdy(&self) -> BGBUFRDY_R {
        BGBUFRDY_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bit 16 - Bandgap Voltage Reference Ready"]
    #[inline(always)]
    pub fn bgrdy(&self) -> BGRDY_R {
        BGRDY_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - Low Power Bandgap Voltage Reference Ready"]
    #[inline(always)]
    pub fn lpbgrdy(&self) -> LPBGRDY_R {
        LPBGRDY_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bits 18:19 - Voltage Reference Used by the System"]
    #[inline(always)]
    pub fn vref(&self) -> VREF_R {
        VREF_R::new(((self.bits >> 18) & 3) as u8)
    }
}
#[doc = "Bandgap Status Register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [bgsr](index.html) module"]
pub struct BGSR_SPEC;
impl crate::RegisterSpec for BGSR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [bgsr::R](R) reader structure"]
impl crate::Readable for BGSR_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets BGSR to value 0"]
impl crate::Resettable for BGSR_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}