atsamd51p/pm/
stdbycfg.rs

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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#[doc = "Register `STDBYCFG` reader"]
pub type R = crate::R<StdbycfgSpec>;
#[doc = "Register `STDBYCFG` writer"]
pub type W = crate::W<StdbycfgSpec>;
#[doc = "Ram Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Ramcfgselect {
    #[doc = "0: All the system RAM is retained"]
    Ret = 0,
    #[doc = "1: Only the first 32Kbytes of the system RAM is retained"]
    Partial = 1,
    #[doc = "2: All the system RAM is turned OFF"]
    Off = 2,
}
impl From<Ramcfgselect> for u8 {
    #[inline(always)]
    fn from(variant: Ramcfgselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Ramcfgselect {
    type Ux = u8;
}
impl crate::IsEnum for Ramcfgselect {}
#[doc = "Field `RAMCFG` reader - Ram Configuration"]
pub type RamcfgR = crate::FieldReader<Ramcfgselect>;
impl RamcfgR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Ramcfgselect> {
        match self.bits {
            0 => Some(Ramcfgselect::Ret),
            1 => Some(Ramcfgselect::Partial),
            2 => Some(Ramcfgselect::Off),
            _ => None,
        }
    }
    #[doc = "All the system RAM is retained"]
    #[inline(always)]
    pub fn is_ret(&self) -> bool {
        *self == Ramcfgselect::Ret
    }
    #[doc = "Only the first 32Kbytes of the system RAM is retained"]
    #[inline(always)]
    pub fn is_partial(&self) -> bool {
        *self == Ramcfgselect::Partial
    }
    #[doc = "All the system RAM is turned OFF"]
    #[inline(always)]
    pub fn is_off(&self) -> bool {
        *self == Ramcfgselect::Off
    }
}
#[doc = "Field `RAMCFG` writer - Ram Configuration"]
pub type RamcfgW<'a, REG> = crate::FieldWriter<'a, REG, 2, Ramcfgselect>;
impl<'a, REG> RamcfgW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "All the system RAM is retained"]
    #[inline(always)]
    pub fn ret(self) -> &'a mut crate::W<REG> {
        self.variant(Ramcfgselect::Ret)
    }
    #[doc = "Only the first 32Kbytes of the system RAM is retained"]
    #[inline(always)]
    pub fn partial(self) -> &'a mut crate::W<REG> {
        self.variant(Ramcfgselect::Partial)
    }
    #[doc = "All the system RAM is turned OFF"]
    #[inline(always)]
    pub fn off(self) -> &'a mut crate::W<REG> {
        self.variant(Ramcfgselect::Off)
    }
}
#[doc = "Fast Wakeup\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Fastwkupselect {
    #[doc = "0: Fast Wakeup is disabled"]
    No = 0,
    #[doc = "1: Fast Wakeup is enabled on NVM"]
    Nvm = 1,
    #[doc = "2: Fast Wakeup is enabled on the main voltage regulator (MAINVREG)"]
    Mainvreg = 2,
    #[doc = "3: Fast Wakeup is enabled on both NVM and MAINVREG"]
    Both = 3,
}
impl From<Fastwkupselect> for u8 {
    #[inline(always)]
    fn from(variant: Fastwkupselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Fastwkupselect {
    type Ux = u8;
}
impl crate::IsEnum for Fastwkupselect {}
#[doc = "Field `FASTWKUP` reader - Fast Wakeup"]
pub type FastwkupR = crate::FieldReader<Fastwkupselect>;
impl FastwkupR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Fastwkupselect {
        match self.bits {
            0 => Fastwkupselect::No,
            1 => Fastwkupselect::Nvm,
            2 => Fastwkupselect::Mainvreg,
            3 => Fastwkupselect::Both,
            _ => unreachable!(),
        }
    }
    #[doc = "Fast Wakeup is disabled"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == Fastwkupselect::No
    }
    #[doc = "Fast Wakeup is enabled on NVM"]
    #[inline(always)]
    pub fn is_nvm(&self) -> bool {
        *self == Fastwkupselect::Nvm
    }
    #[doc = "Fast Wakeup is enabled on the main voltage regulator (MAINVREG)"]
    #[inline(always)]
    pub fn is_mainvreg(&self) -> bool {
        *self == Fastwkupselect::Mainvreg
    }
    #[doc = "Fast Wakeup is enabled on both NVM and MAINVREG"]
    #[inline(always)]
    pub fn is_both(&self) -> bool {
        *self == Fastwkupselect::Both
    }
}
#[doc = "Field `FASTWKUP` writer - Fast Wakeup"]
pub type FastwkupW<'a, REG> = crate::FieldWriter<'a, REG, 2, Fastwkupselect, crate::Safe>;
impl<'a, REG> FastwkupW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
    REG::Ux: From<u8>,
{
    #[doc = "Fast Wakeup is disabled"]
    #[inline(always)]
    pub fn no(self) -> &'a mut crate::W<REG> {
        self.variant(Fastwkupselect::No)
    }
    #[doc = "Fast Wakeup is enabled on NVM"]
    #[inline(always)]
    pub fn nvm(self) -> &'a mut crate::W<REG> {
        self.variant(Fastwkupselect::Nvm)
    }
    #[doc = "Fast Wakeup is enabled on the main voltage regulator (MAINVREG)"]
    #[inline(always)]
    pub fn mainvreg(self) -> &'a mut crate::W<REG> {
        self.variant(Fastwkupselect::Mainvreg)
    }
    #[doc = "Fast Wakeup is enabled on both NVM and MAINVREG"]
    #[inline(always)]
    pub fn both(self) -> &'a mut crate::W<REG> {
        self.variant(Fastwkupselect::Both)
    }
}
impl R {
    #[doc = "Bits 0:1 - Ram Configuration"]
    #[inline(always)]
    pub fn ramcfg(&self) -> RamcfgR {
        RamcfgR::new(self.bits & 3)
    }
    #[doc = "Bits 4:5 - Fast Wakeup"]
    #[inline(always)]
    pub fn fastwkup(&self) -> FastwkupR {
        FastwkupR::new((self.bits >> 4) & 3)
    }
}
impl W {
    #[doc = "Bits 0:1 - Ram Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn ramcfg(&mut self) -> RamcfgW<StdbycfgSpec> {
        RamcfgW::new(self, 0)
    }
    #[doc = "Bits 4:5 - Fast Wakeup"]
    #[inline(always)]
    #[must_use]
    pub fn fastwkup(&mut self) -> FastwkupW<StdbycfgSpec> {
        FastwkupW::new(self, 4)
    }
}
#[doc = "Standby Configuration\n\nYou can [`read`](crate::Reg::read) this register and get [`stdbycfg::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`stdbycfg::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct StdbycfgSpec;
impl crate::RegisterSpec for StdbycfgSpec {
    type Ux = u8;
}
#[doc = "`read()` method returns [`stdbycfg::R`](R) reader structure"]
impl crate::Readable for StdbycfgSpec {}
#[doc = "`write(|w| ..)` method takes [`stdbycfg::W`](W) writer structure"]
impl crate::Writable for StdbycfgSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets STDBYCFG to value 0"]
impl crate::Resettable for StdbycfgSpec {
    const RESET_VALUE: u8 = 0;
}