ra6t1/system/
snzreqcr.rs

1#[doc = "Register `SNZREQCR` reader"]
2pub struct R(crate::R<SNZREQCR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<SNZREQCR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<SNZREQCR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<SNZREQCR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `SNZREQCR` writer"]
17pub struct W(crate::W<SNZREQCR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<SNZREQCR_SPEC>;
20    #[inline(always)]
21    fn deref(&self) -> &Self::Target {
22        &self.0
23    }
24}
25impl core::ops::DerefMut for W {
26    #[inline(always)]
27    fn deref_mut(&mut self) -> &mut Self::Target {
28        &mut self.0
29    }
30}
31impl From<crate::W<SNZREQCR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<SNZREQCR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `SNZREQEN0` reader - Enable IRQ0 pin snooze request"]
38pub type SNZREQEN0_R = crate::BitReader<SNZREQEN0_A>;
39#[doc = "Enable IRQ0 pin snooze request\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum SNZREQEN0_A {
42    #[doc = "0: Disable snooze request"]
43    _0 = 0,
44    #[doc = "1: Enable snooze request"]
45    _1 = 1,
46}
47impl From<SNZREQEN0_A> for bool {
48    #[inline(always)]
49    fn from(variant: SNZREQEN0_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl SNZREQEN0_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> SNZREQEN0_A {
57        match self.bits {
58            false => SNZREQEN0_A::_0,
59            true => SNZREQEN0_A::_1,
60        }
61    }
62    #[doc = "Checks if the value of the field is `_0`"]
63    #[inline(always)]
64    pub fn is_0(&self) -> bool {
65        *self == SNZREQEN0_A::_0
66    }
67    #[doc = "Checks if the value of the field is `_1`"]
68    #[inline(always)]
69    pub fn is_1(&self) -> bool {
70        *self == SNZREQEN0_A::_1
71    }
72}
73#[doc = "Field `SNZREQEN0` writer - Enable IRQ0 pin snooze request"]
74pub type SNZREQEN0_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN0_A, O>;
75impl<'a, const O: u8> SNZREQEN0_W<'a, O> {
76    #[doc = "Disable snooze request"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(SNZREQEN0_A::_0)
80    }
81    #[doc = "Enable snooze request"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(SNZREQEN0_A::_1)
85    }
86}
87#[doc = "Field `SNZREQEN1` reader - Enable IRQ1 pin snooze request"]
88pub type SNZREQEN1_R = crate::BitReader<SNZREQEN1_A>;
89#[doc = "Enable IRQ1 pin snooze request\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum SNZREQEN1_A {
92    #[doc = "0: Disable snooze request"]
93    _0 = 0,
94    #[doc = "1: Enable snooze request"]
95    _1 = 1,
96}
97impl From<SNZREQEN1_A> for bool {
98    #[inline(always)]
99    fn from(variant: SNZREQEN1_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl SNZREQEN1_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> SNZREQEN1_A {
107        match self.bits {
108            false => SNZREQEN1_A::_0,
109            true => SNZREQEN1_A::_1,
110        }
111    }
112    #[doc = "Checks if the value of the field is `_0`"]
113    #[inline(always)]
114    pub fn is_0(&self) -> bool {
115        *self == SNZREQEN1_A::_0
116    }
117    #[doc = "Checks if the value of the field is `_1`"]
118    #[inline(always)]
119    pub fn is_1(&self) -> bool {
120        *self == SNZREQEN1_A::_1
121    }
122}
123#[doc = "Field `SNZREQEN1` writer - Enable IRQ1 pin snooze request"]
124pub type SNZREQEN1_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN1_A, O>;
125impl<'a, const O: u8> SNZREQEN1_W<'a, O> {
126    #[doc = "Disable snooze request"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(SNZREQEN1_A::_0)
130    }
131    #[doc = "Enable snooze request"]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(SNZREQEN1_A::_1)
135    }
136}
137#[doc = "Field `SNZREQEN2` reader - Enable IRQ2 pin snooze request"]
138pub type SNZREQEN2_R = crate::BitReader<SNZREQEN2_A>;
139#[doc = "Enable IRQ2 pin snooze request\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum SNZREQEN2_A {
142    #[doc = "0: Disable snooze request"]
143    _0 = 0,
144    #[doc = "1: Enable snooze request"]
145    _1 = 1,
146}
147impl From<SNZREQEN2_A> for bool {
148    #[inline(always)]
149    fn from(variant: SNZREQEN2_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl SNZREQEN2_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> SNZREQEN2_A {
157        match self.bits {
158            false => SNZREQEN2_A::_0,
159            true => SNZREQEN2_A::_1,
160        }
161    }
162    #[doc = "Checks if the value of the field is `_0`"]
163    #[inline(always)]
164    pub fn is_0(&self) -> bool {
165        *self == SNZREQEN2_A::_0
166    }
167    #[doc = "Checks if the value of the field is `_1`"]
168    #[inline(always)]
169    pub fn is_1(&self) -> bool {
170        *self == SNZREQEN2_A::_1
171    }
172}
173#[doc = "Field `SNZREQEN2` writer - Enable IRQ2 pin snooze request"]
174pub type SNZREQEN2_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN2_A, O>;
175impl<'a, const O: u8> SNZREQEN2_W<'a, O> {
176    #[doc = "Disable snooze request"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(SNZREQEN2_A::_0)
180    }
181    #[doc = "Enable snooze request"]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(SNZREQEN2_A::_1)
185    }
186}
187#[doc = "Field `SNZREQEN3` reader - Enable IRQ3 pin snooze request"]
188pub type SNZREQEN3_R = crate::BitReader<SNZREQEN3_A>;
189#[doc = "Enable IRQ3 pin snooze request\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum SNZREQEN3_A {
192    #[doc = "0: Disable snooze request"]
193    _0 = 0,
194    #[doc = "1: Enable snooze request"]
195    _1 = 1,
196}
197impl From<SNZREQEN3_A> for bool {
198    #[inline(always)]
199    fn from(variant: SNZREQEN3_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl SNZREQEN3_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> SNZREQEN3_A {
207        match self.bits {
208            false => SNZREQEN3_A::_0,
209            true => SNZREQEN3_A::_1,
210        }
211    }
212    #[doc = "Checks if the value of the field is `_0`"]
213    #[inline(always)]
214    pub fn is_0(&self) -> bool {
215        *self == SNZREQEN3_A::_0
216    }
217    #[doc = "Checks if the value of the field is `_1`"]
218    #[inline(always)]
219    pub fn is_1(&self) -> bool {
220        *self == SNZREQEN3_A::_1
221    }
222}
223#[doc = "Field `SNZREQEN3` writer - Enable IRQ3 pin snooze request"]
224pub type SNZREQEN3_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN3_A, O>;
225impl<'a, const O: u8> SNZREQEN3_W<'a, O> {
226    #[doc = "Disable snooze request"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(SNZREQEN3_A::_0)
230    }
231    #[doc = "Enable snooze request"]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(SNZREQEN3_A::_1)
235    }
236}
237#[doc = "Field `SNZREQEN4` reader - Enable IRQ4 pin snooze request"]
238pub type SNZREQEN4_R = crate::BitReader<SNZREQEN4_A>;
239#[doc = "Enable IRQ4 pin snooze request\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum SNZREQEN4_A {
242    #[doc = "0: Disable snooze request"]
243    _0 = 0,
244    #[doc = "1: Enable snooze request"]
245    _1 = 1,
246}
247impl From<SNZREQEN4_A> for bool {
248    #[inline(always)]
249    fn from(variant: SNZREQEN4_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl SNZREQEN4_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> SNZREQEN4_A {
257        match self.bits {
258            false => SNZREQEN4_A::_0,
259            true => SNZREQEN4_A::_1,
260        }
261    }
262    #[doc = "Checks if the value of the field is `_0`"]
263    #[inline(always)]
264    pub fn is_0(&self) -> bool {
265        *self == SNZREQEN4_A::_0
266    }
267    #[doc = "Checks if the value of the field is `_1`"]
268    #[inline(always)]
269    pub fn is_1(&self) -> bool {
270        *self == SNZREQEN4_A::_1
271    }
272}
273#[doc = "Field `SNZREQEN4` writer - Enable IRQ4 pin snooze request"]
274pub type SNZREQEN4_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN4_A, O>;
275impl<'a, const O: u8> SNZREQEN4_W<'a, O> {
276    #[doc = "Disable snooze request"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(SNZREQEN4_A::_0)
280    }
281    #[doc = "Enable snooze request"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(SNZREQEN4_A::_1)
285    }
286}
287#[doc = "Field `SNZREQEN5` reader - Enable IRQ5 pin snooze request"]
288pub type SNZREQEN5_R = crate::BitReader<SNZREQEN5_A>;
289#[doc = "Enable IRQ5 pin snooze request\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum SNZREQEN5_A {
292    #[doc = "0: Disable snooze request"]
293    _0 = 0,
294    #[doc = "1: Enable snooze request"]
295    _1 = 1,
296}
297impl From<SNZREQEN5_A> for bool {
298    #[inline(always)]
299    fn from(variant: SNZREQEN5_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl SNZREQEN5_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> SNZREQEN5_A {
307        match self.bits {
308            false => SNZREQEN5_A::_0,
309            true => SNZREQEN5_A::_1,
310        }
311    }
312    #[doc = "Checks if the value of the field is `_0`"]
313    #[inline(always)]
314    pub fn is_0(&self) -> bool {
315        *self == SNZREQEN5_A::_0
316    }
317    #[doc = "Checks if the value of the field is `_1`"]
318    #[inline(always)]
319    pub fn is_1(&self) -> bool {
320        *self == SNZREQEN5_A::_1
321    }
322}
323#[doc = "Field `SNZREQEN5` writer - Enable IRQ5 pin snooze request"]
324pub type SNZREQEN5_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN5_A, O>;
325impl<'a, const O: u8> SNZREQEN5_W<'a, O> {
326    #[doc = "Disable snooze request"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(SNZREQEN5_A::_0)
330    }
331    #[doc = "Enable snooze request"]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(SNZREQEN5_A::_1)
335    }
336}
337#[doc = "Field `SNZREQEN6` reader - Enable IRQ6 pin snooze request"]
338pub type SNZREQEN6_R = crate::BitReader<SNZREQEN6_A>;
339#[doc = "Enable IRQ6 pin snooze request\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum SNZREQEN6_A {
342    #[doc = "0: Disable snooze request"]
343    _0 = 0,
344    #[doc = "1: Enable snooze request"]
345    _1 = 1,
346}
347impl From<SNZREQEN6_A> for bool {
348    #[inline(always)]
349    fn from(variant: SNZREQEN6_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl SNZREQEN6_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> SNZREQEN6_A {
357        match self.bits {
358            false => SNZREQEN6_A::_0,
359            true => SNZREQEN6_A::_1,
360        }
361    }
362    #[doc = "Checks if the value of the field is `_0`"]
363    #[inline(always)]
364    pub fn is_0(&self) -> bool {
365        *self == SNZREQEN6_A::_0
366    }
367    #[doc = "Checks if the value of the field is `_1`"]
368    #[inline(always)]
369    pub fn is_1(&self) -> bool {
370        *self == SNZREQEN6_A::_1
371    }
372}
373#[doc = "Field `SNZREQEN6` writer - Enable IRQ6 pin snooze request"]
374pub type SNZREQEN6_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN6_A, O>;
375impl<'a, const O: u8> SNZREQEN6_W<'a, O> {
376    #[doc = "Disable snooze request"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(SNZREQEN6_A::_0)
380    }
381    #[doc = "Enable snooze request"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(SNZREQEN6_A::_1)
385    }
386}
387#[doc = "Field `SNZREQEN7` reader - Enable IRQ7 pin snooze request"]
388pub type SNZREQEN7_R = crate::BitReader<SNZREQEN7_A>;
389#[doc = "Enable IRQ7 pin snooze request\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum SNZREQEN7_A {
392    #[doc = "0: Disable snooze request"]
393    _0 = 0,
394    #[doc = "1: Enable snooze request"]
395    _1 = 1,
396}
397impl From<SNZREQEN7_A> for bool {
398    #[inline(always)]
399    fn from(variant: SNZREQEN7_A) -> Self {
400        variant as u8 != 0
401    }
402}
403impl SNZREQEN7_R {
404    #[doc = "Get enumerated values variant"]
405    #[inline(always)]
406    pub fn variant(&self) -> SNZREQEN7_A {
407        match self.bits {
408            false => SNZREQEN7_A::_0,
409            true => SNZREQEN7_A::_1,
410        }
411    }
412    #[doc = "Checks if the value of the field is `_0`"]
413    #[inline(always)]
414    pub fn is_0(&self) -> bool {
415        *self == SNZREQEN7_A::_0
416    }
417    #[doc = "Checks if the value of the field is `_1`"]
418    #[inline(always)]
419    pub fn is_1(&self) -> bool {
420        *self == SNZREQEN7_A::_1
421    }
422}
423#[doc = "Field `SNZREQEN7` writer - Enable IRQ7 pin snooze request"]
424pub type SNZREQEN7_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN7_A, O>;
425impl<'a, const O: u8> SNZREQEN7_W<'a, O> {
426    #[doc = "Disable snooze request"]
427    #[inline(always)]
428    pub fn _0(self) -> &'a mut W {
429        self.variant(SNZREQEN7_A::_0)
430    }
431    #[doc = "Enable snooze request"]
432    #[inline(always)]
433    pub fn _1(self) -> &'a mut W {
434        self.variant(SNZREQEN7_A::_1)
435    }
436}
437#[doc = "Field `SNZREQEN8` reader - Enable IRQ8 pin snooze request"]
438pub type SNZREQEN8_R = crate::BitReader<SNZREQEN8_A>;
439#[doc = "Enable IRQ8 pin snooze request\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum SNZREQEN8_A {
442    #[doc = "0: Disable snooze request"]
443    _0 = 0,
444    #[doc = "1: Enable snooze request"]
445    _1 = 1,
446}
447impl From<SNZREQEN8_A> for bool {
448    #[inline(always)]
449    fn from(variant: SNZREQEN8_A) -> Self {
450        variant as u8 != 0
451    }
452}
453impl SNZREQEN8_R {
454    #[doc = "Get enumerated values variant"]
455    #[inline(always)]
456    pub fn variant(&self) -> SNZREQEN8_A {
457        match self.bits {
458            false => SNZREQEN8_A::_0,
459            true => SNZREQEN8_A::_1,
460        }
461    }
462    #[doc = "Checks if the value of the field is `_0`"]
463    #[inline(always)]
464    pub fn is_0(&self) -> bool {
465        *self == SNZREQEN8_A::_0
466    }
467    #[doc = "Checks if the value of the field is `_1`"]
468    #[inline(always)]
469    pub fn is_1(&self) -> bool {
470        *self == SNZREQEN8_A::_1
471    }
472}
473#[doc = "Field `SNZREQEN8` writer - Enable IRQ8 pin snooze request"]
474pub type SNZREQEN8_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN8_A, O>;
475impl<'a, const O: u8> SNZREQEN8_W<'a, O> {
476    #[doc = "Disable snooze request"]
477    #[inline(always)]
478    pub fn _0(self) -> &'a mut W {
479        self.variant(SNZREQEN8_A::_0)
480    }
481    #[doc = "Enable snooze request"]
482    #[inline(always)]
483    pub fn _1(self) -> &'a mut W {
484        self.variant(SNZREQEN8_A::_1)
485    }
486}
487#[doc = "Field `SNZREQEN9` reader - Enable IRQ9 pin snooze request"]
488pub type SNZREQEN9_R = crate::BitReader<SNZREQEN9_A>;
489#[doc = "Enable IRQ9 pin snooze request\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum SNZREQEN9_A {
492    #[doc = "0: Disable snooze request"]
493    _0 = 0,
494    #[doc = "1: Enable snooze request"]
495    _1 = 1,
496}
497impl From<SNZREQEN9_A> for bool {
498    #[inline(always)]
499    fn from(variant: SNZREQEN9_A) -> Self {
500        variant as u8 != 0
501    }
502}
503impl SNZREQEN9_R {
504    #[doc = "Get enumerated values variant"]
505    #[inline(always)]
506    pub fn variant(&self) -> SNZREQEN9_A {
507        match self.bits {
508            false => SNZREQEN9_A::_0,
509            true => SNZREQEN9_A::_1,
510        }
511    }
512    #[doc = "Checks if the value of the field is `_0`"]
513    #[inline(always)]
514    pub fn is_0(&self) -> bool {
515        *self == SNZREQEN9_A::_0
516    }
517    #[doc = "Checks if the value of the field is `_1`"]
518    #[inline(always)]
519    pub fn is_1(&self) -> bool {
520        *self == SNZREQEN9_A::_1
521    }
522}
523#[doc = "Field `SNZREQEN9` writer - Enable IRQ9 pin snooze request"]
524pub type SNZREQEN9_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN9_A, O>;
525impl<'a, const O: u8> SNZREQEN9_W<'a, O> {
526    #[doc = "Disable snooze request"]
527    #[inline(always)]
528    pub fn _0(self) -> &'a mut W {
529        self.variant(SNZREQEN9_A::_0)
530    }
531    #[doc = "Enable snooze request"]
532    #[inline(always)]
533    pub fn _1(self) -> &'a mut W {
534        self.variant(SNZREQEN9_A::_1)
535    }
536}
537#[doc = "Field `SNZREQEN10` reader - Enable IRQ10 pin snooze request"]
538pub type SNZREQEN10_R = crate::BitReader<SNZREQEN10_A>;
539#[doc = "Enable IRQ10 pin snooze request\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum SNZREQEN10_A {
542    #[doc = "0: Disable snooze request"]
543    _0 = 0,
544    #[doc = "1: Enable snooze request"]
545    _1 = 1,
546}
547impl From<SNZREQEN10_A> for bool {
548    #[inline(always)]
549    fn from(variant: SNZREQEN10_A) -> Self {
550        variant as u8 != 0
551    }
552}
553impl SNZREQEN10_R {
554    #[doc = "Get enumerated values variant"]
555    #[inline(always)]
556    pub fn variant(&self) -> SNZREQEN10_A {
557        match self.bits {
558            false => SNZREQEN10_A::_0,
559            true => SNZREQEN10_A::_1,
560        }
561    }
562    #[doc = "Checks if the value of the field is `_0`"]
563    #[inline(always)]
564    pub fn is_0(&self) -> bool {
565        *self == SNZREQEN10_A::_0
566    }
567    #[doc = "Checks if the value of the field is `_1`"]
568    #[inline(always)]
569    pub fn is_1(&self) -> bool {
570        *self == SNZREQEN10_A::_1
571    }
572}
573#[doc = "Field `SNZREQEN10` writer - Enable IRQ10 pin snooze request"]
574pub type SNZREQEN10_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN10_A, O>;
575impl<'a, const O: u8> SNZREQEN10_W<'a, O> {
576    #[doc = "Disable snooze request"]
577    #[inline(always)]
578    pub fn _0(self) -> &'a mut W {
579        self.variant(SNZREQEN10_A::_0)
580    }
581    #[doc = "Enable snooze request"]
582    #[inline(always)]
583    pub fn _1(self) -> &'a mut W {
584        self.variant(SNZREQEN10_A::_1)
585    }
586}
587#[doc = "Field `SNZREQEN11` reader - Enable IRQ11 pin snooze request"]
588pub type SNZREQEN11_R = crate::BitReader<SNZREQEN11_A>;
589#[doc = "Enable IRQ11 pin snooze request\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum SNZREQEN11_A {
592    #[doc = "0: Disable snooze request"]
593    _0 = 0,
594    #[doc = "1: Enable snooze request"]
595    _1 = 1,
596}
597impl From<SNZREQEN11_A> for bool {
598    #[inline(always)]
599    fn from(variant: SNZREQEN11_A) -> Self {
600        variant as u8 != 0
601    }
602}
603impl SNZREQEN11_R {
604    #[doc = "Get enumerated values variant"]
605    #[inline(always)]
606    pub fn variant(&self) -> SNZREQEN11_A {
607        match self.bits {
608            false => SNZREQEN11_A::_0,
609            true => SNZREQEN11_A::_1,
610        }
611    }
612    #[doc = "Checks if the value of the field is `_0`"]
613    #[inline(always)]
614    pub fn is_0(&self) -> bool {
615        *self == SNZREQEN11_A::_0
616    }
617    #[doc = "Checks if the value of the field is `_1`"]
618    #[inline(always)]
619    pub fn is_1(&self) -> bool {
620        *self == SNZREQEN11_A::_1
621    }
622}
623#[doc = "Field `SNZREQEN11` writer - Enable IRQ11 pin snooze request"]
624pub type SNZREQEN11_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN11_A, O>;
625impl<'a, const O: u8> SNZREQEN11_W<'a, O> {
626    #[doc = "Disable snooze request"]
627    #[inline(always)]
628    pub fn _0(self) -> &'a mut W {
629        self.variant(SNZREQEN11_A::_0)
630    }
631    #[doc = "Enable snooze request"]
632    #[inline(always)]
633    pub fn _1(self) -> &'a mut W {
634        self.variant(SNZREQEN11_A::_1)
635    }
636}
637#[doc = "Field `SNZREQEN12` reader - Enable IRQ12 pin snooze request"]
638pub type SNZREQEN12_R = crate::BitReader<SNZREQEN12_A>;
639#[doc = "Enable IRQ12 pin snooze request\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum SNZREQEN12_A {
642    #[doc = "0: Disable snooze request"]
643    _0 = 0,
644    #[doc = "1: Enable snooze request"]
645    _1 = 1,
646}
647impl From<SNZREQEN12_A> for bool {
648    #[inline(always)]
649    fn from(variant: SNZREQEN12_A) -> Self {
650        variant as u8 != 0
651    }
652}
653impl SNZREQEN12_R {
654    #[doc = "Get enumerated values variant"]
655    #[inline(always)]
656    pub fn variant(&self) -> SNZREQEN12_A {
657        match self.bits {
658            false => SNZREQEN12_A::_0,
659            true => SNZREQEN12_A::_1,
660        }
661    }
662    #[doc = "Checks if the value of the field is `_0`"]
663    #[inline(always)]
664    pub fn is_0(&self) -> bool {
665        *self == SNZREQEN12_A::_0
666    }
667    #[doc = "Checks if the value of the field is `_1`"]
668    #[inline(always)]
669    pub fn is_1(&self) -> bool {
670        *self == SNZREQEN12_A::_1
671    }
672}
673#[doc = "Field `SNZREQEN12` writer - Enable IRQ12 pin snooze request"]
674pub type SNZREQEN12_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN12_A, O>;
675impl<'a, const O: u8> SNZREQEN12_W<'a, O> {
676    #[doc = "Disable snooze request"]
677    #[inline(always)]
678    pub fn _0(self) -> &'a mut W {
679        self.variant(SNZREQEN12_A::_0)
680    }
681    #[doc = "Enable snooze request"]
682    #[inline(always)]
683    pub fn _1(self) -> &'a mut W {
684        self.variant(SNZREQEN12_A::_1)
685    }
686}
687#[doc = "Field `SNZREQEN13` reader - Enable IRQ13 pin snooze request"]
688pub type SNZREQEN13_R = crate::BitReader<SNZREQEN13_A>;
689#[doc = "Enable IRQ13 pin snooze request\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum SNZREQEN13_A {
692    #[doc = "0: Disable snooze request"]
693    _0 = 0,
694    #[doc = "1: Enable snooze request"]
695    _1 = 1,
696}
697impl From<SNZREQEN13_A> for bool {
698    #[inline(always)]
699    fn from(variant: SNZREQEN13_A) -> Self {
700        variant as u8 != 0
701    }
702}
703impl SNZREQEN13_R {
704    #[doc = "Get enumerated values variant"]
705    #[inline(always)]
706    pub fn variant(&self) -> SNZREQEN13_A {
707        match self.bits {
708            false => SNZREQEN13_A::_0,
709            true => SNZREQEN13_A::_1,
710        }
711    }
712    #[doc = "Checks if the value of the field is `_0`"]
713    #[inline(always)]
714    pub fn is_0(&self) -> bool {
715        *self == SNZREQEN13_A::_0
716    }
717    #[doc = "Checks if the value of the field is `_1`"]
718    #[inline(always)]
719    pub fn is_1(&self) -> bool {
720        *self == SNZREQEN13_A::_1
721    }
722}
723#[doc = "Field `SNZREQEN13` writer - Enable IRQ13 pin snooze request"]
724pub type SNZREQEN13_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN13_A, O>;
725impl<'a, const O: u8> SNZREQEN13_W<'a, O> {
726    #[doc = "Disable snooze request"]
727    #[inline(always)]
728    pub fn _0(self) -> &'a mut W {
729        self.variant(SNZREQEN13_A::_0)
730    }
731    #[doc = "Enable snooze request"]
732    #[inline(always)]
733    pub fn _1(self) -> &'a mut W {
734        self.variant(SNZREQEN13_A::_1)
735    }
736}
737#[doc = "Field `SNZREQEN17` reader - Enable KR snooze request"]
738pub type SNZREQEN17_R = crate::BitReader<SNZREQEN17_A>;
739#[doc = "Enable KR snooze request\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum SNZREQEN17_A {
742    #[doc = "0: Disable snooze request"]
743    _0 = 0,
744    #[doc = "1: Enable snooze request"]
745    _1 = 1,
746}
747impl From<SNZREQEN17_A> for bool {
748    #[inline(always)]
749    fn from(variant: SNZREQEN17_A) -> Self {
750        variant as u8 != 0
751    }
752}
753impl SNZREQEN17_R {
754    #[doc = "Get enumerated values variant"]
755    #[inline(always)]
756    pub fn variant(&self) -> SNZREQEN17_A {
757        match self.bits {
758            false => SNZREQEN17_A::_0,
759            true => SNZREQEN17_A::_1,
760        }
761    }
762    #[doc = "Checks if the value of the field is `_0`"]
763    #[inline(always)]
764    pub fn is_0(&self) -> bool {
765        *self == SNZREQEN17_A::_0
766    }
767    #[doc = "Checks if the value of the field is `_1`"]
768    #[inline(always)]
769    pub fn is_1(&self) -> bool {
770        *self == SNZREQEN17_A::_1
771    }
772}
773#[doc = "Field `SNZREQEN17` writer - Enable KR snooze request"]
774pub type SNZREQEN17_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN17_A, O>;
775impl<'a, const O: u8> SNZREQEN17_W<'a, O> {
776    #[doc = "Disable snooze request"]
777    #[inline(always)]
778    pub fn _0(self) -> &'a mut W {
779        self.variant(SNZREQEN17_A::_0)
780    }
781    #[doc = "Enable snooze request"]
782    #[inline(always)]
783    pub fn _1(self) -> &'a mut W {
784        self.variant(SNZREQEN17_A::_1)
785    }
786}
787#[doc = "Field `SNZREQEN22` reader - Enable ACMPHS0 snooze request"]
788pub type SNZREQEN22_R = crate::BitReader<SNZREQEN22_A>;
789#[doc = "Enable ACMPHS0 snooze request\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum SNZREQEN22_A {
792    #[doc = "0: Disable snooze request"]
793    _0 = 0,
794    #[doc = "1: Enable snooze request"]
795    _1 = 1,
796}
797impl From<SNZREQEN22_A> for bool {
798    #[inline(always)]
799    fn from(variant: SNZREQEN22_A) -> Self {
800        variant as u8 != 0
801    }
802}
803impl SNZREQEN22_R {
804    #[doc = "Get enumerated values variant"]
805    #[inline(always)]
806    pub fn variant(&self) -> SNZREQEN22_A {
807        match self.bits {
808            false => SNZREQEN22_A::_0,
809            true => SNZREQEN22_A::_1,
810        }
811    }
812    #[doc = "Checks if the value of the field is `_0`"]
813    #[inline(always)]
814    pub fn is_0(&self) -> bool {
815        *self == SNZREQEN22_A::_0
816    }
817    #[doc = "Checks if the value of the field is `_1`"]
818    #[inline(always)]
819    pub fn is_1(&self) -> bool {
820        *self == SNZREQEN22_A::_1
821    }
822}
823#[doc = "Field `SNZREQEN22` writer - Enable ACMPHS0 snooze request"]
824pub type SNZREQEN22_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN22_A, O>;
825impl<'a, const O: u8> SNZREQEN22_W<'a, O> {
826    #[doc = "Disable snooze request"]
827    #[inline(always)]
828    pub fn _0(self) -> &'a mut W {
829        self.variant(SNZREQEN22_A::_0)
830    }
831    #[doc = "Enable snooze request"]
832    #[inline(always)]
833    pub fn _1(self) -> &'a mut W {
834        self.variant(SNZREQEN22_A::_1)
835    }
836}
837#[doc = "Field `SNZREQEN24` reader - Enable RTC alarm snooze request"]
838pub type SNZREQEN24_R = crate::BitReader<SNZREQEN24_A>;
839#[doc = "Enable RTC alarm snooze request\n\nValue on reset: 0"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum SNZREQEN24_A {
842    #[doc = "0: Disable snooze request"]
843    _0 = 0,
844    #[doc = "1: Enable snooze request"]
845    _1 = 1,
846}
847impl From<SNZREQEN24_A> for bool {
848    #[inline(always)]
849    fn from(variant: SNZREQEN24_A) -> Self {
850        variant as u8 != 0
851    }
852}
853impl SNZREQEN24_R {
854    #[doc = "Get enumerated values variant"]
855    #[inline(always)]
856    pub fn variant(&self) -> SNZREQEN24_A {
857        match self.bits {
858            false => SNZREQEN24_A::_0,
859            true => SNZREQEN24_A::_1,
860        }
861    }
862    #[doc = "Checks if the value of the field is `_0`"]
863    #[inline(always)]
864    pub fn is_0(&self) -> bool {
865        *self == SNZREQEN24_A::_0
866    }
867    #[doc = "Checks if the value of the field is `_1`"]
868    #[inline(always)]
869    pub fn is_1(&self) -> bool {
870        *self == SNZREQEN24_A::_1
871    }
872}
873#[doc = "Field `SNZREQEN24` writer - Enable RTC alarm snooze request"]
874pub type SNZREQEN24_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN24_A, O>;
875impl<'a, const O: u8> SNZREQEN24_W<'a, O> {
876    #[doc = "Disable snooze request"]
877    #[inline(always)]
878    pub fn _0(self) -> &'a mut W {
879        self.variant(SNZREQEN24_A::_0)
880    }
881    #[doc = "Enable snooze request"]
882    #[inline(always)]
883    pub fn _1(self) -> &'a mut W {
884        self.variant(SNZREQEN24_A::_1)
885    }
886}
887#[doc = "Field `SNZREQEN25` reader - Enable RTC period snooze request"]
888pub type SNZREQEN25_R = crate::BitReader<SNZREQEN25_A>;
889#[doc = "Enable RTC period snooze request\n\nValue on reset: 0"]
890#[derive(Clone, Copy, Debug, PartialEq, Eq)]
891pub enum SNZREQEN25_A {
892    #[doc = "0: Disable snooze request"]
893    _0 = 0,
894    #[doc = "1: Enable snooze request"]
895    _1 = 1,
896}
897impl From<SNZREQEN25_A> for bool {
898    #[inline(always)]
899    fn from(variant: SNZREQEN25_A) -> Self {
900        variant as u8 != 0
901    }
902}
903impl SNZREQEN25_R {
904    #[doc = "Get enumerated values variant"]
905    #[inline(always)]
906    pub fn variant(&self) -> SNZREQEN25_A {
907        match self.bits {
908            false => SNZREQEN25_A::_0,
909            true => SNZREQEN25_A::_1,
910        }
911    }
912    #[doc = "Checks if the value of the field is `_0`"]
913    #[inline(always)]
914    pub fn is_0(&self) -> bool {
915        *self == SNZREQEN25_A::_0
916    }
917    #[doc = "Checks if the value of the field is `_1`"]
918    #[inline(always)]
919    pub fn is_1(&self) -> bool {
920        *self == SNZREQEN25_A::_1
921    }
922}
923#[doc = "Field `SNZREQEN25` writer - Enable RTC period snooze request"]
924pub type SNZREQEN25_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN25_A, O>;
925impl<'a, const O: u8> SNZREQEN25_W<'a, O> {
926    #[doc = "Disable snooze request"]
927    #[inline(always)]
928    pub fn _0(self) -> &'a mut W {
929        self.variant(SNZREQEN25_A::_0)
930    }
931    #[doc = "Enable snooze request"]
932    #[inline(always)]
933    pub fn _1(self) -> &'a mut W {
934        self.variant(SNZREQEN25_A::_1)
935    }
936}
937#[doc = "Field `SNZREQEN28` reader - Enable AGT1 underflow snooze request"]
938pub type SNZREQEN28_R = crate::BitReader<SNZREQEN28_A>;
939#[doc = "Enable AGT1 underflow snooze request\n\nValue on reset: 0"]
940#[derive(Clone, Copy, Debug, PartialEq, Eq)]
941pub enum SNZREQEN28_A {
942    #[doc = "0: Disable snooze request"]
943    _0 = 0,
944    #[doc = "1: Enable snooze request"]
945    _1 = 1,
946}
947impl From<SNZREQEN28_A> for bool {
948    #[inline(always)]
949    fn from(variant: SNZREQEN28_A) -> Self {
950        variant as u8 != 0
951    }
952}
953impl SNZREQEN28_R {
954    #[doc = "Get enumerated values variant"]
955    #[inline(always)]
956    pub fn variant(&self) -> SNZREQEN28_A {
957        match self.bits {
958            false => SNZREQEN28_A::_0,
959            true => SNZREQEN28_A::_1,
960        }
961    }
962    #[doc = "Checks if the value of the field is `_0`"]
963    #[inline(always)]
964    pub fn is_0(&self) -> bool {
965        *self == SNZREQEN28_A::_0
966    }
967    #[doc = "Checks if the value of the field is `_1`"]
968    #[inline(always)]
969    pub fn is_1(&self) -> bool {
970        *self == SNZREQEN28_A::_1
971    }
972}
973#[doc = "Field `SNZREQEN28` writer - Enable AGT1 underflow snooze request"]
974pub type SNZREQEN28_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN28_A, O>;
975impl<'a, const O: u8> SNZREQEN28_W<'a, O> {
976    #[doc = "Disable snooze request"]
977    #[inline(always)]
978    pub fn _0(self) -> &'a mut W {
979        self.variant(SNZREQEN28_A::_0)
980    }
981    #[doc = "Enable snooze request"]
982    #[inline(always)]
983    pub fn _1(self) -> &'a mut W {
984        self.variant(SNZREQEN28_A::_1)
985    }
986}
987#[doc = "Field `SNZREQEN29` reader - Enable AGT1 compare match A snooze request"]
988pub type SNZREQEN29_R = crate::BitReader<SNZREQEN29_A>;
989#[doc = "Enable AGT1 compare match A snooze request\n\nValue on reset: 0"]
990#[derive(Clone, Copy, Debug, PartialEq, Eq)]
991pub enum SNZREQEN29_A {
992    #[doc = "0: Disable snooze request"]
993    _0 = 0,
994    #[doc = "1: Enable snooze request"]
995    _1 = 1,
996}
997impl From<SNZREQEN29_A> for bool {
998    #[inline(always)]
999    fn from(variant: SNZREQEN29_A) -> Self {
1000        variant as u8 != 0
1001    }
1002}
1003impl SNZREQEN29_R {
1004    #[doc = "Get enumerated values variant"]
1005    #[inline(always)]
1006    pub fn variant(&self) -> SNZREQEN29_A {
1007        match self.bits {
1008            false => SNZREQEN29_A::_0,
1009            true => SNZREQEN29_A::_1,
1010        }
1011    }
1012    #[doc = "Checks if the value of the field is `_0`"]
1013    #[inline(always)]
1014    pub fn is_0(&self) -> bool {
1015        *self == SNZREQEN29_A::_0
1016    }
1017    #[doc = "Checks if the value of the field is `_1`"]
1018    #[inline(always)]
1019    pub fn is_1(&self) -> bool {
1020        *self == SNZREQEN29_A::_1
1021    }
1022}
1023#[doc = "Field `SNZREQEN29` writer - Enable AGT1 compare match A snooze request"]
1024pub type SNZREQEN29_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN29_A, O>;
1025impl<'a, const O: u8> SNZREQEN29_W<'a, O> {
1026    #[doc = "Disable snooze request"]
1027    #[inline(always)]
1028    pub fn _0(self) -> &'a mut W {
1029        self.variant(SNZREQEN29_A::_0)
1030    }
1031    #[doc = "Enable snooze request"]
1032    #[inline(always)]
1033    pub fn _1(self) -> &'a mut W {
1034        self.variant(SNZREQEN29_A::_1)
1035    }
1036}
1037#[doc = "Field `SNZREQEN30` reader - Enable AGT1 compare match B snooze request"]
1038pub type SNZREQEN30_R = crate::BitReader<SNZREQEN30_A>;
1039#[doc = "Enable AGT1 compare match B snooze request\n\nValue on reset: 0"]
1040#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1041pub enum SNZREQEN30_A {
1042    #[doc = "0: Disable snooze request"]
1043    _0 = 0,
1044    #[doc = "1: Enable snooze request"]
1045    _1 = 1,
1046}
1047impl From<SNZREQEN30_A> for bool {
1048    #[inline(always)]
1049    fn from(variant: SNZREQEN30_A) -> Self {
1050        variant as u8 != 0
1051    }
1052}
1053impl SNZREQEN30_R {
1054    #[doc = "Get enumerated values variant"]
1055    #[inline(always)]
1056    pub fn variant(&self) -> SNZREQEN30_A {
1057        match self.bits {
1058            false => SNZREQEN30_A::_0,
1059            true => SNZREQEN30_A::_1,
1060        }
1061    }
1062    #[doc = "Checks if the value of the field is `_0`"]
1063    #[inline(always)]
1064    pub fn is_0(&self) -> bool {
1065        *self == SNZREQEN30_A::_0
1066    }
1067    #[doc = "Checks if the value of the field is `_1`"]
1068    #[inline(always)]
1069    pub fn is_1(&self) -> bool {
1070        *self == SNZREQEN30_A::_1
1071    }
1072}
1073#[doc = "Field `SNZREQEN30` writer - Enable AGT1 compare match B snooze request"]
1074pub type SNZREQEN30_W<'a, const O: u8> = crate::BitWriter<'a, u32, SNZREQCR_SPEC, SNZREQEN30_A, O>;
1075impl<'a, const O: u8> SNZREQEN30_W<'a, O> {
1076    #[doc = "Disable snooze request"]
1077    #[inline(always)]
1078    pub fn _0(self) -> &'a mut W {
1079        self.variant(SNZREQEN30_A::_0)
1080    }
1081    #[doc = "Enable snooze request"]
1082    #[inline(always)]
1083    pub fn _1(self) -> &'a mut W {
1084        self.variant(SNZREQEN30_A::_1)
1085    }
1086}
1087impl R {
1088    #[doc = "Bit 0 - Enable IRQ0 pin snooze request"]
1089    #[inline(always)]
1090    pub fn snzreqen0(&self) -> SNZREQEN0_R {
1091        SNZREQEN0_R::new((self.bits & 1) != 0)
1092    }
1093    #[doc = "Bit 1 - Enable IRQ1 pin snooze request"]
1094    #[inline(always)]
1095    pub fn snzreqen1(&self) -> SNZREQEN1_R {
1096        SNZREQEN1_R::new(((self.bits >> 1) & 1) != 0)
1097    }
1098    #[doc = "Bit 2 - Enable IRQ2 pin snooze request"]
1099    #[inline(always)]
1100    pub fn snzreqen2(&self) -> SNZREQEN2_R {
1101        SNZREQEN2_R::new(((self.bits >> 2) & 1) != 0)
1102    }
1103    #[doc = "Bit 3 - Enable IRQ3 pin snooze request"]
1104    #[inline(always)]
1105    pub fn snzreqen3(&self) -> SNZREQEN3_R {
1106        SNZREQEN3_R::new(((self.bits >> 3) & 1) != 0)
1107    }
1108    #[doc = "Bit 4 - Enable IRQ4 pin snooze request"]
1109    #[inline(always)]
1110    pub fn snzreqen4(&self) -> SNZREQEN4_R {
1111        SNZREQEN4_R::new(((self.bits >> 4) & 1) != 0)
1112    }
1113    #[doc = "Bit 5 - Enable IRQ5 pin snooze request"]
1114    #[inline(always)]
1115    pub fn snzreqen5(&self) -> SNZREQEN5_R {
1116        SNZREQEN5_R::new(((self.bits >> 5) & 1) != 0)
1117    }
1118    #[doc = "Bit 6 - Enable IRQ6 pin snooze request"]
1119    #[inline(always)]
1120    pub fn snzreqen6(&self) -> SNZREQEN6_R {
1121        SNZREQEN6_R::new(((self.bits >> 6) & 1) != 0)
1122    }
1123    #[doc = "Bit 7 - Enable IRQ7 pin snooze request"]
1124    #[inline(always)]
1125    pub fn snzreqen7(&self) -> SNZREQEN7_R {
1126        SNZREQEN7_R::new(((self.bits >> 7) & 1) != 0)
1127    }
1128    #[doc = "Bit 8 - Enable IRQ8 pin snooze request"]
1129    #[inline(always)]
1130    pub fn snzreqen8(&self) -> SNZREQEN8_R {
1131        SNZREQEN8_R::new(((self.bits >> 8) & 1) != 0)
1132    }
1133    #[doc = "Bit 9 - Enable IRQ9 pin snooze request"]
1134    #[inline(always)]
1135    pub fn snzreqen9(&self) -> SNZREQEN9_R {
1136        SNZREQEN9_R::new(((self.bits >> 9) & 1) != 0)
1137    }
1138    #[doc = "Bit 10 - Enable IRQ10 pin snooze request"]
1139    #[inline(always)]
1140    pub fn snzreqen10(&self) -> SNZREQEN10_R {
1141        SNZREQEN10_R::new(((self.bits >> 10) & 1) != 0)
1142    }
1143    #[doc = "Bit 11 - Enable IRQ11 pin snooze request"]
1144    #[inline(always)]
1145    pub fn snzreqen11(&self) -> SNZREQEN11_R {
1146        SNZREQEN11_R::new(((self.bits >> 11) & 1) != 0)
1147    }
1148    #[doc = "Bit 12 - Enable IRQ12 pin snooze request"]
1149    #[inline(always)]
1150    pub fn snzreqen12(&self) -> SNZREQEN12_R {
1151        SNZREQEN12_R::new(((self.bits >> 12) & 1) != 0)
1152    }
1153    #[doc = "Bit 13 - Enable IRQ13 pin snooze request"]
1154    #[inline(always)]
1155    pub fn snzreqen13(&self) -> SNZREQEN13_R {
1156        SNZREQEN13_R::new(((self.bits >> 13) & 1) != 0)
1157    }
1158    #[doc = "Bit 17 - Enable KR snooze request"]
1159    #[inline(always)]
1160    pub fn snzreqen17(&self) -> SNZREQEN17_R {
1161        SNZREQEN17_R::new(((self.bits >> 17) & 1) != 0)
1162    }
1163    #[doc = "Bit 22 - Enable ACMPHS0 snooze request"]
1164    #[inline(always)]
1165    pub fn snzreqen22(&self) -> SNZREQEN22_R {
1166        SNZREQEN22_R::new(((self.bits >> 22) & 1) != 0)
1167    }
1168    #[doc = "Bit 24 - Enable RTC alarm snooze request"]
1169    #[inline(always)]
1170    pub fn snzreqen24(&self) -> SNZREQEN24_R {
1171        SNZREQEN24_R::new(((self.bits >> 24) & 1) != 0)
1172    }
1173    #[doc = "Bit 25 - Enable RTC period snooze request"]
1174    #[inline(always)]
1175    pub fn snzreqen25(&self) -> SNZREQEN25_R {
1176        SNZREQEN25_R::new(((self.bits >> 25) & 1) != 0)
1177    }
1178    #[doc = "Bit 28 - Enable AGT1 underflow snooze request"]
1179    #[inline(always)]
1180    pub fn snzreqen28(&self) -> SNZREQEN28_R {
1181        SNZREQEN28_R::new(((self.bits >> 28) & 1) != 0)
1182    }
1183    #[doc = "Bit 29 - Enable AGT1 compare match A snooze request"]
1184    #[inline(always)]
1185    pub fn snzreqen29(&self) -> SNZREQEN29_R {
1186        SNZREQEN29_R::new(((self.bits >> 29) & 1) != 0)
1187    }
1188    #[doc = "Bit 30 - Enable AGT1 compare match B snooze request"]
1189    #[inline(always)]
1190    pub fn snzreqen30(&self) -> SNZREQEN30_R {
1191        SNZREQEN30_R::new(((self.bits >> 30) & 1) != 0)
1192    }
1193}
1194impl W {
1195    #[doc = "Bit 0 - Enable IRQ0 pin snooze request"]
1196    #[inline(always)]
1197    #[must_use]
1198    pub fn snzreqen0(&mut self) -> SNZREQEN0_W<0> {
1199        SNZREQEN0_W::new(self)
1200    }
1201    #[doc = "Bit 1 - Enable IRQ1 pin snooze request"]
1202    #[inline(always)]
1203    #[must_use]
1204    pub fn snzreqen1(&mut self) -> SNZREQEN1_W<1> {
1205        SNZREQEN1_W::new(self)
1206    }
1207    #[doc = "Bit 2 - Enable IRQ2 pin snooze request"]
1208    #[inline(always)]
1209    #[must_use]
1210    pub fn snzreqen2(&mut self) -> SNZREQEN2_W<2> {
1211        SNZREQEN2_W::new(self)
1212    }
1213    #[doc = "Bit 3 - Enable IRQ3 pin snooze request"]
1214    #[inline(always)]
1215    #[must_use]
1216    pub fn snzreqen3(&mut self) -> SNZREQEN3_W<3> {
1217        SNZREQEN3_W::new(self)
1218    }
1219    #[doc = "Bit 4 - Enable IRQ4 pin snooze request"]
1220    #[inline(always)]
1221    #[must_use]
1222    pub fn snzreqen4(&mut self) -> SNZREQEN4_W<4> {
1223        SNZREQEN4_W::new(self)
1224    }
1225    #[doc = "Bit 5 - Enable IRQ5 pin snooze request"]
1226    #[inline(always)]
1227    #[must_use]
1228    pub fn snzreqen5(&mut self) -> SNZREQEN5_W<5> {
1229        SNZREQEN5_W::new(self)
1230    }
1231    #[doc = "Bit 6 - Enable IRQ6 pin snooze request"]
1232    #[inline(always)]
1233    #[must_use]
1234    pub fn snzreqen6(&mut self) -> SNZREQEN6_W<6> {
1235        SNZREQEN6_W::new(self)
1236    }
1237    #[doc = "Bit 7 - Enable IRQ7 pin snooze request"]
1238    #[inline(always)]
1239    #[must_use]
1240    pub fn snzreqen7(&mut self) -> SNZREQEN7_W<7> {
1241        SNZREQEN7_W::new(self)
1242    }
1243    #[doc = "Bit 8 - Enable IRQ8 pin snooze request"]
1244    #[inline(always)]
1245    #[must_use]
1246    pub fn snzreqen8(&mut self) -> SNZREQEN8_W<8> {
1247        SNZREQEN8_W::new(self)
1248    }
1249    #[doc = "Bit 9 - Enable IRQ9 pin snooze request"]
1250    #[inline(always)]
1251    #[must_use]
1252    pub fn snzreqen9(&mut self) -> SNZREQEN9_W<9> {
1253        SNZREQEN9_W::new(self)
1254    }
1255    #[doc = "Bit 10 - Enable IRQ10 pin snooze request"]
1256    #[inline(always)]
1257    #[must_use]
1258    pub fn snzreqen10(&mut self) -> SNZREQEN10_W<10> {
1259        SNZREQEN10_W::new(self)
1260    }
1261    #[doc = "Bit 11 - Enable IRQ11 pin snooze request"]
1262    #[inline(always)]
1263    #[must_use]
1264    pub fn snzreqen11(&mut self) -> SNZREQEN11_W<11> {
1265        SNZREQEN11_W::new(self)
1266    }
1267    #[doc = "Bit 12 - Enable IRQ12 pin snooze request"]
1268    #[inline(always)]
1269    #[must_use]
1270    pub fn snzreqen12(&mut self) -> SNZREQEN12_W<12> {
1271        SNZREQEN12_W::new(self)
1272    }
1273    #[doc = "Bit 13 - Enable IRQ13 pin snooze request"]
1274    #[inline(always)]
1275    #[must_use]
1276    pub fn snzreqen13(&mut self) -> SNZREQEN13_W<13> {
1277        SNZREQEN13_W::new(self)
1278    }
1279    #[doc = "Bit 17 - Enable KR snooze request"]
1280    #[inline(always)]
1281    #[must_use]
1282    pub fn snzreqen17(&mut self) -> SNZREQEN17_W<17> {
1283        SNZREQEN17_W::new(self)
1284    }
1285    #[doc = "Bit 22 - Enable ACMPHS0 snooze request"]
1286    #[inline(always)]
1287    #[must_use]
1288    pub fn snzreqen22(&mut self) -> SNZREQEN22_W<22> {
1289        SNZREQEN22_W::new(self)
1290    }
1291    #[doc = "Bit 24 - Enable RTC alarm snooze request"]
1292    #[inline(always)]
1293    #[must_use]
1294    pub fn snzreqen24(&mut self) -> SNZREQEN24_W<24> {
1295        SNZREQEN24_W::new(self)
1296    }
1297    #[doc = "Bit 25 - Enable RTC period snooze request"]
1298    #[inline(always)]
1299    #[must_use]
1300    pub fn snzreqen25(&mut self) -> SNZREQEN25_W<25> {
1301        SNZREQEN25_W::new(self)
1302    }
1303    #[doc = "Bit 28 - Enable AGT1 underflow snooze request"]
1304    #[inline(always)]
1305    #[must_use]
1306    pub fn snzreqen28(&mut self) -> SNZREQEN28_W<28> {
1307        SNZREQEN28_W::new(self)
1308    }
1309    #[doc = "Bit 29 - Enable AGT1 compare match A snooze request"]
1310    #[inline(always)]
1311    #[must_use]
1312    pub fn snzreqen29(&mut self) -> SNZREQEN29_W<29> {
1313        SNZREQEN29_W::new(self)
1314    }
1315    #[doc = "Bit 30 - Enable AGT1 compare match B snooze request"]
1316    #[inline(always)]
1317    #[must_use]
1318    pub fn snzreqen30(&mut self) -> SNZREQEN30_W<30> {
1319        SNZREQEN30_W::new(self)
1320    }
1321    #[doc = "Writes raw bits to the register."]
1322    #[inline(always)]
1323    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1324        self.0.bits(bits);
1325        self
1326    }
1327}
1328#[doc = "Snooze Request Control Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [snzreqcr](index.html) module"]
1329pub struct SNZREQCR_SPEC;
1330impl crate::RegisterSpec for SNZREQCR_SPEC {
1331    type Ux = u32;
1332}
1333#[doc = "`read()` method returns [snzreqcr::R](R) reader structure"]
1334impl crate::Readable for SNZREQCR_SPEC {
1335    type Reader = R;
1336}
1337#[doc = "`write(|w| ..)` method takes [snzreqcr::W](W) writer structure"]
1338impl crate::Writable for SNZREQCR_SPEC {
1339    type Writer = W;
1340    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1341    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1342}
1343#[doc = "`reset()` method sets SNZREQCR to value 0"]
1344impl crate::Resettable for SNZREQCR_SPEC {
1345    const RESET_VALUE: Self::Ux = 0;
1346}