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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#[doc = "Register `IMR%s` reader"]
pub struct R(crate::R<IMR_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<IMR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<IMR_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<IMR_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `COVFS` reader - Counter Overflow"]
pub type COVFS_R = crate::BitReader<COVFSSELECT_A>;
#[doc = "Counter Overflow\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum COVFSSELECT_A {
    #[doc = "0: The Counter Overflow Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The Counter Overflow Interrupt is enabled."]
    _1 = 1,
}
impl From<COVFSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: COVFSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl COVFS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> COVFSSELECT_A {
        match self.bits {
            false => COVFSSELECT_A::_0,
            true => COVFSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == COVFSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == COVFSSELECT_A::_1
    }
}
#[doc = "Field `LOVRS` reader - Load Overrun"]
pub type LOVRS_R = crate::BitReader<LOVRSSELECT_A>;
#[doc = "Load Overrun\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LOVRSSELECT_A {
    #[doc = "0: The Load Overrun Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The Load Overrun Interrupt is enabled."]
    _1 = 1,
}
impl From<LOVRSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: LOVRSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl LOVRS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> LOVRSSELECT_A {
        match self.bits {
            false => LOVRSSELECT_A::_0,
            true => LOVRSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == LOVRSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == LOVRSSELECT_A::_1
    }
}
#[doc = "Field `CPAS` reader - RA Compare"]
pub type CPAS_R = crate::BitReader<CPASSELECT_A>;
#[doc = "RA Compare\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CPASSELECT_A {
    #[doc = "0: The RA Compare Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The RA Compare Interrupt is enabled."]
    _1 = 1,
}
impl From<CPASSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: CPASSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl CPAS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CPASSELECT_A {
        match self.bits {
            false => CPASSELECT_A::_0,
            true => CPASSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CPASSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CPASSELECT_A::_1
    }
}
#[doc = "Field `CPBS` reader - RB Compare"]
pub type CPBS_R = crate::BitReader<CPBSSELECT_A>;
#[doc = "RB Compare\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CPBSSELECT_A {
    #[doc = "0: The RB Compare Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The RB Compare Interrupt is enabled."]
    _1 = 1,
}
impl From<CPBSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: CPBSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl CPBS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CPBSSELECT_A {
        match self.bits {
            false => CPBSSELECT_A::_0,
            true => CPBSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CPBSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CPBSSELECT_A::_1
    }
}
#[doc = "Field `CPCS` reader - RC Compare"]
pub type CPCS_R = crate::BitReader<CPCSSELECT_A>;
#[doc = "RC Compare\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CPCSSELECT_A {
    #[doc = "0: The RC Compare Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The RC Compare Interrupt is enabled."]
    _1 = 1,
}
impl From<CPCSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: CPCSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl CPCS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CPCSSELECT_A {
        match self.bits {
            false => CPCSSELECT_A::_0,
            true => CPCSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CPCSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CPCSSELECT_A::_1
    }
}
#[doc = "Field `LDRAS` reader - RA Loading"]
pub type LDRAS_R = crate::BitReader<LDRASSELECT_A>;
#[doc = "RA Loading\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LDRASSELECT_A {
    #[doc = "0: The Load RA Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The Load RA Interrupt is enabled."]
    _1 = 1,
}
impl From<LDRASSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: LDRASSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl LDRAS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> LDRASSELECT_A {
        match self.bits {
            false => LDRASSELECT_A::_0,
            true => LDRASSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == LDRASSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == LDRASSELECT_A::_1
    }
}
#[doc = "Field `LDRBS` reader - RB Loading"]
pub type LDRBS_R = crate::BitReader<LDRBSSELECT_A>;
#[doc = "RB Loading\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LDRBSSELECT_A {
    #[doc = "0: The Load RB Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The Load RB Interrupt is enabled."]
    _1 = 1,
}
impl From<LDRBSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: LDRBSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl LDRBS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> LDRBSSELECT_A {
        match self.bits {
            false => LDRBSSELECT_A::_0,
            true => LDRBSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == LDRBSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == LDRBSSELECT_A::_1
    }
}
#[doc = "Field `ETRGS` reader - External Trigger"]
pub type ETRGS_R = crate::BitReader<ETRGSSELECT_A>;
#[doc = "External Trigger\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ETRGSSELECT_A {
    #[doc = "0: The External Trigger Interrupt is disabled."]
    _0 = 0,
    #[doc = "1: The External Trigger Interrupt is enabled."]
    _1 = 1,
}
impl From<ETRGSSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: ETRGSSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl ETRGS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ETRGSSELECT_A {
        match self.bits {
            false => ETRGSSELECT_A::_0,
            true => ETRGSSELECT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == ETRGSSELECT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == ETRGSSELECT_A::_1
    }
}
impl R {
    #[doc = "Bit 0 - Counter Overflow"]
    #[inline(always)]
    pub fn covfs(&self) -> COVFS_R {
        COVFS_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Load Overrun"]
    #[inline(always)]
    pub fn lovrs(&self) -> LOVRS_R {
        LOVRS_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - RA Compare"]
    #[inline(always)]
    pub fn cpas(&self) -> CPAS_R {
        CPAS_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - RB Compare"]
    #[inline(always)]
    pub fn cpbs(&self) -> CPBS_R {
        CPBS_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - RC Compare"]
    #[inline(always)]
    pub fn cpcs(&self) -> CPCS_R {
        CPCS_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - RA Loading"]
    #[inline(always)]
    pub fn ldras(&self) -> LDRAS_R {
        LDRAS_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - RB Loading"]
    #[inline(always)]
    pub fn ldrbs(&self) -> LDRBS_R {
        LDRBS_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - External Trigger"]
    #[inline(always)]
    pub fn etrgs(&self) -> ETRGS_R {
        ETRGS_R::new(((self.bits >> 7) & 1) != 0)
    }
}
#[doc = "Interrupt Mask Register Channel\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 [imr](index.html) module"]
pub struct IMR_SPEC;
impl crate::RegisterSpec for IMR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [imr::R](R) reader structure"]
impl crate::Readable for IMR_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets IMR%s to value 0"]
impl crate::Resettable for IMR_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}