1#[doc = "Register `EVEN` reader"]
2pub struct R(crate::R<EVEN_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<EVEN_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<EVEN_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<EVEN_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `EVEN` writer"]
17pub struct W(crate::W<EVEN_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<EVEN_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<EVEN_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<EVEN_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `IEN0` reader - Event Interrupt Enable n"]
38pub type IEN0_R = crate::BitReader<IEN0_A>;
39#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum IEN0_A {
42 #[doc = "0: Disable"]
43 DISABLE = 0,
44 #[doc = "1: Enable"]
45 ENABLE = 1,
46}
47impl From<IEN0_A> for bool {
48 #[inline(always)]
49 fn from(variant: IEN0_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl IEN0_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> IEN0_A {
57 match self.bits {
58 false => IEN0_A::DISABLE,
59 true => IEN0_A::ENABLE,
60 }
61 }
62 #[doc = "Checks if the value of the field is `DISABLE`"]
63 #[inline(always)]
64 pub fn is_disable(&self) -> bool {
65 *self == IEN0_A::DISABLE
66 }
67 #[doc = "Checks if the value of the field is `ENABLE`"]
68 #[inline(always)]
69 pub fn is_enable(&self) -> bool {
70 *self == IEN0_A::ENABLE
71 }
72}
73#[doc = "Field `IEN0` writer - Event Interrupt Enable n"]
74pub type IEN0_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN0_A, O>;
75impl<'a, const O: u8> IEN0_W<'a, O> {
76 #[doc = "Disable"]
77 #[inline(always)]
78 pub fn disable(self) -> &'a mut W {
79 self.variant(IEN0_A::DISABLE)
80 }
81 #[doc = "Enable"]
82 #[inline(always)]
83 pub fn enable(self) -> &'a mut W {
84 self.variant(IEN0_A::ENABLE)
85 }
86}
87#[doc = "Field `IEN1` reader - Event Interrupt Enable n"]
88pub type IEN1_R = crate::BitReader<IEN1_A>;
89#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum IEN1_A {
92 #[doc = "0: Disable"]
93 DISABLE = 0,
94 #[doc = "1: Enable"]
95 ENABLE = 1,
96}
97impl From<IEN1_A> for bool {
98 #[inline(always)]
99 fn from(variant: IEN1_A) -> Self {
100 variant as u8 != 0
101 }
102}
103impl IEN1_R {
104 #[doc = "Get enumerated values variant"]
105 #[inline(always)]
106 pub fn variant(&self) -> IEN1_A {
107 match self.bits {
108 false => IEN1_A::DISABLE,
109 true => IEN1_A::ENABLE,
110 }
111 }
112 #[doc = "Checks if the value of the field is `DISABLE`"]
113 #[inline(always)]
114 pub fn is_disable(&self) -> bool {
115 *self == IEN1_A::DISABLE
116 }
117 #[doc = "Checks if the value of the field is `ENABLE`"]
118 #[inline(always)]
119 pub fn is_enable(&self) -> bool {
120 *self == IEN1_A::ENABLE
121 }
122}
123#[doc = "Field `IEN1` writer - Event Interrupt Enable n"]
124pub type IEN1_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN1_A, O>;
125impl<'a, const O: u8> IEN1_W<'a, O> {
126 #[doc = "Disable"]
127 #[inline(always)]
128 pub fn disable(self) -> &'a mut W {
129 self.variant(IEN1_A::DISABLE)
130 }
131 #[doc = "Enable"]
132 #[inline(always)]
133 pub fn enable(self) -> &'a mut W {
134 self.variant(IEN1_A::ENABLE)
135 }
136}
137#[doc = "Field `IEN2` reader - Event Interrupt Enable n"]
138pub type IEN2_R = crate::BitReader<IEN2_A>;
139#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum IEN2_A {
142 #[doc = "0: Disable"]
143 DISABLE = 0,
144 #[doc = "1: Enable"]
145 ENABLE = 1,
146}
147impl From<IEN2_A> for bool {
148 #[inline(always)]
149 fn from(variant: IEN2_A) -> Self {
150 variant as u8 != 0
151 }
152}
153impl IEN2_R {
154 #[doc = "Get enumerated values variant"]
155 #[inline(always)]
156 pub fn variant(&self) -> IEN2_A {
157 match self.bits {
158 false => IEN2_A::DISABLE,
159 true => IEN2_A::ENABLE,
160 }
161 }
162 #[doc = "Checks if the value of the field is `DISABLE`"]
163 #[inline(always)]
164 pub fn is_disable(&self) -> bool {
165 *self == IEN2_A::DISABLE
166 }
167 #[doc = "Checks if the value of the field is `ENABLE`"]
168 #[inline(always)]
169 pub fn is_enable(&self) -> bool {
170 *self == IEN2_A::ENABLE
171 }
172}
173#[doc = "Field `IEN2` writer - Event Interrupt Enable n"]
174pub type IEN2_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN2_A, O>;
175impl<'a, const O: u8> IEN2_W<'a, O> {
176 #[doc = "Disable"]
177 #[inline(always)]
178 pub fn disable(self) -> &'a mut W {
179 self.variant(IEN2_A::DISABLE)
180 }
181 #[doc = "Enable"]
182 #[inline(always)]
183 pub fn enable(self) -> &'a mut W {
184 self.variant(IEN2_A::ENABLE)
185 }
186}
187#[doc = "Field `IEN3` reader - Event Interrupt Enable n"]
188pub type IEN3_R = crate::BitReader<IEN3_A>;
189#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum IEN3_A {
192 #[doc = "0: Disable"]
193 DISABLE = 0,
194 #[doc = "1: Enable"]
195 ENABLE = 1,
196}
197impl From<IEN3_A> for bool {
198 #[inline(always)]
199 fn from(variant: IEN3_A) -> Self {
200 variant as u8 != 0
201 }
202}
203impl IEN3_R {
204 #[doc = "Get enumerated values variant"]
205 #[inline(always)]
206 pub fn variant(&self) -> IEN3_A {
207 match self.bits {
208 false => IEN3_A::DISABLE,
209 true => IEN3_A::ENABLE,
210 }
211 }
212 #[doc = "Checks if the value of the field is `DISABLE`"]
213 #[inline(always)]
214 pub fn is_disable(&self) -> bool {
215 *self == IEN3_A::DISABLE
216 }
217 #[doc = "Checks if the value of the field is `ENABLE`"]
218 #[inline(always)]
219 pub fn is_enable(&self) -> bool {
220 *self == IEN3_A::ENABLE
221 }
222}
223#[doc = "Field `IEN3` writer - Event Interrupt Enable n"]
224pub type IEN3_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN3_A, O>;
225impl<'a, const O: u8> IEN3_W<'a, O> {
226 #[doc = "Disable"]
227 #[inline(always)]
228 pub fn disable(self) -> &'a mut W {
229 self.variant(IEN3_A::DISABLE)
230 }
231 #[doc = "Enable"]
232 #[inline(always)]
233 pub fn enable(self) -> &'a mut W {
234 self.variant(IEN3_A::ENABLE)
235 }
236}
237#[doc = "Field `IEN4` reader - Event Interrupt Enable n"]
238pub type IEN4_R = crate::BitReader<IEN4_A>;
239#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum IEN4_A {
242 #[doc = "0: Disable"]
243 DISABLE = 0,
244 #[doc = "1: Enable"]
245 ENABLE = 1,
246}
247impl From<IEN4_A> for bool {
248 #[inline(always)]
249 fn from(variant: IEN4_A) -> Self {
250 variant as u8 != 0
251 }
252}
253impl IEN4_R {
254 #[doc = "Get enumerated values variant"]
255 #[inline(always)]
256 pub fn variant(&self) -> IEN4_A {
257 match self.bits {
258 false => IEN4_A::DISABLE,
259 true => IEN4_A::ENABLE,
260 }
261 }
262 #[doc = "Checks if the value of the field is `DISABLE`"]
263 #[inline(always)]
264 pub fn is_disable(&self) -> bool {
265 *self == IEN4_A::DISABLE
266 }
267 #[doc = "Checks if the value of the field is `ENABLE`"]
268 #[inline(always)]
269 pub fn is_enable(&self) -> bool {
270 *self == IEN4_A::ENABLE
271 }
272}
273#[doc = "Field `IEN4` writer - Event Interrupt Enable n"]
274pub type IEN4_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN4_A, O>;
275impl<'a, const O: u8> IEN4_W<'a, O> {
276 #[doc = "Disable"]
277 #[inline(always)]
278 pub fn disable(self) -> &'a mut W {
279 self.variant(IEN4_A::DISABLE)
280 }
281 #[doc = "Enable"]
282 #[inline(always)]
283 pub fn enable(self) -> &'a mut W {
284 self.variant(IEN4_A::ENABLE)
285 }
286}
287#[doc = "Field `IEN5` reader - Event Interrupt Enable n"]
288pub type IEN5_R = crate::BitReader<IEN5_A>;
289#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum IEN5_A {
292 #[doc = "0: Disable"]
293 DISABLE = 0,
294 #[doc = "1: Enable"]
295 ENABLE = 1,
296}
297impl From<IEN5_A> for bool {
298 #[inline(always)]
299 fn from(variant: IEN5_A) -> Self {
300 variant as u8 != 0
301 }
302}
303impl IEN5_R {
304 #[doc = "Get enumerated values variant"]
305 #[inline(always)]
306 pub fn variant(&self) -> IEN5_A {
307 match self.bits {
308 false => IEN5_A::DISABLE,
309 true => IEN5_A::ENABLE,
310 }
311 }
312 #[doc = "Checks if the value of the field is `DISABLE`"]
313 #[inline(always)]
314 pub fn is_disable(&self) -> bool {
315 *self == IEN5_A::DISABLE
316 }
317 #[doc = "Checks if the value of the field is `ENABLE`"]
318 #[inline(always)]
319 pub fn is_enable(&self) -> bool {
320 *self == IEN5_A::ENABLE
321 }
322}
323#[doc = "Field `IEN5` writer - Event Interrupt Enable n"]
324pub type IEN5_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN5_A, O>;
325impl<'a, const O: u8> IEN5_W<'a, O> {
326 #[doc = "Disable"]
327 #[inline(always)]
328 pub fn disable(self) -> &'a mut W {
329 self.variant(IEN5_A::DISABLE)
330 }
331 #[doc = "Enable"]
332 #[inline(always)]
333 pub fn enable(self) -> &'a mut W {
334 self.variant(IEN5_A::ENABLE)
335 }
336}
337#[doc = "Field `IEN6` reader - Event Interrupt Enable n"]
338pub type IEN6_R = crate::BitReader<IEN6_A>;
339#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum IEN6_A {
342 #[doc = "0: Disable"]
343 DISABLE = 0,
344 #[doc = "1: Enable"]
345 ENABLE = 1,
346}
347impl From<IEN6_A> for bool {
348 #[inline(always)]
349 fn from(variant: IEN6_A) -> Self {
350 variant as u8 != 0
351 }
352}
353impl IEN6_R {
354 #[doc = "Get enumerated values variant"]
355 #[inline(always)]
356 pub fn variant(&self) -> IEN6_A {
357 match self.bits {
358 false => IEN6_A::DISABLE,
359 true => IEN6_A::ENABLE,
360 }
361 }
362 #[doc = "Checks if the value of the field is `DISABLE`"]
363 #[inline(always)]
364 pub fn is_disable(&self) -> bool {
365 *self == IEN6_A::DISABLE
366 }
367 #[doc = "Checks if the value of the field is `ENABLE`"]
368 #[inline(always)]
369 pub fn is_enable(&self) -> bool {
370 *self == IEN6_A::ENABLE
371 }
372}
373#[doc = "Field `IEN6` writer - Event Interrupt Enable n"]
374pub type IEN6_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN6_A, O>;
375impl<'a, const O: u8> IEN6_W<'a, O> {
376 #[doc = "Disable"]
377 #[inline(always)]
378 pub fn disable(self) -> &'a mut W {
379 self.variant(IEN6_A::DISABLE)
380 }
381 #[doc = "Enable"]
382 #[inline(always)]
383 pub fn enable(self) -> &'a mut W {
384 self.variant(IEN6_A::ENABLE)
385 }
386}
387#[doc = "Field `IEN7` reader - Event Interrupt Enable n"]
388pub type IEN7_R = crate::BitReader<IEN7_A>;
389#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum IEN7_A {
392 #[doc = "0: Disable"]
393 DISABLE = 0,
394 #[doc = "1: Enable"]
395 ENABLE = 1,
396}
397impl From<IEN7_A> for bool {
398 #[inline(always)]
399 fn from(variant: IEN7_A) -> Self {
400 variant as u8 != 0
401 }
402}
403impl IEN7_R {
404 #[doc = "Get enumerated values variant"]
405 #[inline(always)]
406 pub fn variant(&self) -> IEN7_A {
407 match self.bits {
408 false => IEN7_A::DISABLE,
409 true => IEN7_A::ENABLE,
410 }
411 }
412 #[doc = "Checks if the value of the field is `DISABLE`"]
413 #[inline(always)]
414 pub fn is_disable(&self) -> bool {
415 *self == IEN7_A::DISABLE
416 }
417 #[doc = "Checks if the value of the field is `ENABLE`"]
418 #[inline(always)]
419 pub fn is_enable(&self) -> bool {
420 *self == IEN7_A::ENABLE
421 }
422}
423#[doc = "Field `IEN7` writer - Event Interrupt Enable n"]
424pub type IEN7_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN7_A, O>;
425impl<'a, const O: u8> IEN7_W<'a, O> {
426 #[doc = "Disable"]
427 #[inline(always)]
428 pub fn disable(self) -> &'a mut W {
429 self.variant(IEN7_A::DISABLE)
430 }
431 #[doc = "Enable"]
432 #[inline(always)]
433 pub fn enable(self) -> &'a mut W {
434 self.variant(IEN7_A::ENABLE)
435 }
436}
437#[doc = "Field `IEN8` reader - Event Interrupt Enable n"]
438pub type IEN8_R = crate::BitReader<IEN8_A>;
439#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum IEN8_A {
442 #[doc = "0: Disable"]
443 DISABLE = 0,
444 #[doc = "1: Enable"]
445 ENABLE = 1,
446}
447impl From<IEN8_A> for bool {
448 #[inline(always)]
449 fn from(variant: IEN8_A) -> Self {
450 variant as u8 != 0
451 }
452}
453impl IEN8_R {
454 #[doc = "Get enumerated values variant"]
455 #[inline(always)]
456 pub fn variant(&self) -> IEN8_A {
457 match self.bits {
458 false => IEN8_A::DISABLE,
459 true => IEN8_A::ENABLE,
460 }
461 }
462 #[doc = "Checks if the value of the field is `DISABLE`"]
463 #[inline(always)]
464 pub fn is_disable(&self) -> bool {
465 *self == IEN8_A::DISABLE
466 }
467 #[doc = "Checks if the value of the field is `ENABLE`"]
468 #[inline(always)]
469 pub fn is_enable(&self) -> bool {
470 *self == IEN8_A::ENABLE
471 }
472}
473#[doc = "Field `IEN8` writer - Event Interrupt Enable n"]
474pub type IEN8_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN8_A, O>;
475impl<'a, const O: u8> IEN8_W<'a, O> {
476 #[doc = "Disable"]
477 #[inline(always)]
478 pub fn disable(self) -> &'a mut W {
479 self.variant(IEN8_A::DISABLE)
480 }
481 #[doc = "Enable"]
482 #[inline(always)]
483 pub fn enable(self) -> &'a mut W {
484 self.variant(IEN8_A::ENABLE)
485 }
486}
487#[doc = "Field `IEN9` reader - Event Interrupt Enable n"]
488pub type IEN9_R = crate::BitReader<IEN9_A>;
489#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum IEN9_A {
492 #[doc = "0: Disable"]
493 DISABLE = 0,
494 #[doc = "1: Enable"]
495 ENABLE = 1,
496}
497impl From<IEN9_A> for bool {
498 #[inline(always)]
499 fn from(variant: IEN9_A) -> Self {
500 variant as u8 != 0
501 }
502}
503impl IEN9_R {
504 #[doc = "Get enumerated values variant"]
505 #[inline(always)]
506 pub fn variant(&self) -> IEN9_A {
507 match self.bits {
508 false => IEN9_A::DISABLE,
509 true => IEN9_A::ENABLE,
510 }
511 }
512 #[doc = "Checks if the value of the field is `DISABLE`"]
513 #[inline(always)]
514 pub fn is_disable(&self) -> bool {
515 *self == IEN9_A::DISABLE
516 }
517 #[doc = "Checks if the value of the field is `ENABLE`"]
518 #[inline(always)]
519 pub fn is_enable(&self) -> bool {
520 *self == IEN9_A::ENABLE
521 }
522}
523#[doc = "Field `IEN9` writer - Event Interrupt Enable n"]
524pub type IEN9_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN9_A, O>;
525impl<'a, const O: u8> IEN9_W<'a, O> {
526 #[doc = "Disable"]
527 #[inline(always)]
528 pub fn disable(self) -> &'a mut W {
529 self.variant(IEN9_A::DISABLE)
530 }
531 #[doc = "Enable"]
532 #[inline(always)]
533 pub fn enable(self) -> &'a mut W {
534 self.variant(IEN9_A::ENABLE)
535 }
536}
537#[doc = "Field `IEN10` reader - Event Interrupt Enable n"]
538pub type IEN10_R = crate::BitReader<IEN10_A>;
539#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum IEN10_A {
542 #[doc = "0: Disable"]
543 DISABLE = 0,
544 #[doc = "1: Enable"]
545 ENABLE = 1,
546}
547impl From<IEN10_A> for bool {
548 #[inline(always)]
549 fn from(variant: IEN10_A) -> Self {
550 variant as u8 != 0
551 }
552}
553impl IEN10_R {
554 #[doc = "Get enumerated values variant"]
555 #[inline(always)]
556 pub fn variant(&self) -> IEN10_A {
557 match self.bits {
558 false => IEN10_A::DISABLE,
559 true => IEN10_A::ENABLE,
560 }
561 }
562 #[doc = "Checks if the value of the field is `DISABLE`"]
563 #[inline(always)]
564 pub fn is_disable(&self) -> bool {
565 *self == IEN10_A::DISABLE
566 }
567 #[doc = "Checks if the value of the field is `ENABLE`"]
568 #[inline(always)]
569 pub fn is_enable(&self) -> bool {
570 *self == IEN10_A::ENABLE
571 }
572}
573#[doc = "Field `IEN10` writer - Event Interrupt Enable n"]
574pub type IEN10_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN10_A, O>;
575impl<'a, const O: u8> IEN10_W<'a, O> {
576 #[doc = "Disable"]
577 #[inline(always)]
578 pub fn disable(self) -> &'a mut W {
579 self.variant(IEN10_A::DISABLE)
580 }
581 #[doc = "Enable"]
582 #[inline(always)]
583 pub fn enable(self) -> &'a mut W {
584 self.variant(IEN10_A::ENABLE)
585 }
586}
587#[doc = "Field `IEN11` reader - Event Interrupt Enable n"]
588pub type IEN11_R = crate::BitReader<IEN11_A>;
589#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum IEN11_A {
592 #[doc = "0: Disable"]
593 DISABLE = 0,
594 #[doc = "1: Enable"]
595 ENABLE = 1,
596}
597impl From<IEN11_A> for bool {
598 #[inline(always)]
599 fn from(variant: IEN11_A) -> Self {
600 variant as u8 != 0
601 }
602}
603impl IEN11_R {
604 #[doc = "Get enumerated values variant"]
605 #[inline(always)]
606 pub fn variant(&self) -> IEN11_A {
607 match self.bits {
608 false => IEN11_A::DISABLE,
609 true => IEN11_A::ENABLE,
610 }
611 }
612 #[doc = "Checks if the value of the field is `DISABLE`"]
613 #[inline(always)]
614 pub fn is_disable(&self) -> bool {
615 *self == IEN11_A::DISABLE
616 }
617 #[doc = "Checks if the value of the field is `ENABLE`"]
618 #[inline(always)]
619 pub fn is_enable(&self) -> bool {
620 *self == IEN11_A::ENABLE
621 }
622}
623#[doc = "Field `IEN11` writer - Event Interrupt Enable n"]
624pub type IEN11_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN11_A, O>;
625impl<'a, const O: u8> IEN11_W<'a, O> {
626 #[doc = "Disable"]
627 #[inline(always)]
628 pub fn disable(self) -> &'a mut W {
629 self.variant(IEN11_A::DISABLE)
630 }
631 #[doc = "Enable"]
632 #[inline(always)]
633 pub fn enable(self) -> &'a mut W {
634 self.variant(IEN11_A::ENABLE)
635 }
636}
637#[doc = "Field `IEN12` reader - Event Interrupt Enable n"]
638pub type IEN12_R = crate::BitReader<IEN12_A>;
639#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum IEN12_A {
642 #[doc = "0: Disable"]
643 DISABLE = 0,
644 #[doc = "1: Enable"]
645 ENABLE = 1,
646}
647impl From<IEN12_A> for bool {
648 #[inline(always)]
649 fn from(variant: IEN12_A) -> Self {
650 variant as u8 != 0
651 }
652}
653impl IEN12_R {
654 #[doc = "Get enumerated values variant"]
655 #[inline(always)]
656 pub fn variant(&self) -> IEN12_A {
657 match self.bits {
658 false => IEN12_A::DISABLE,
659 true => IEN12_A::ENABLE,
660 }
661 }
662 #[doc = "Checks if the value of the field is `DISABLE`"]
663 #[inline(always)]
664 pub fn is_disable(&self) -> bool {
665 *self == IEN12_A::DISABLE
666 }
667 #[doc = "Checks if the value of the field is `ENABLE`"]
668 #[inline(always)]
669 pub fn is_enable(&self) -> bool {
670 *self == IEN12_A::ENABLE
671 }
672}
673#[doc = "Field `IEN12` writer - Event Interrupt Enable n"]
674pub type IEN12_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN12_A, O>;
675impl<'a, const O: u8> IEN12_W<'a, O> {
676 #[doc = "Disable"]
677 #[inline(always)]
678 pub fn disable(self) -> &'a mut W {
679 self.variant(IEN12_A::DISABLE)
680 }
681 #[doc = "Enable"]
682 #[inline(always)]
683 pub fn enable(self) -> &'a mut W {
684 self.variant(IEN12_A::ENABLE)
685 }
686}
687#[doc = "Field `IEN13` reader - Event Interrupt Enable n"]
688pub type IEN13_R = crate::BitReader<IEN13_A>;
689#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum IEN13_A {
692 #[doc = "0: Disable"]
693 DISABLE = 0,
694 #[doc = "1: Enable"]
695 ENABLE = 1,
696}
697impl From<IEN13_A> for bool {
698 #[inline(always)]
699 fn from(variant: IEN13_A) -> Self {
700 variant as u8 != 0
701 }
702}
703impl IEN13_R {
704 #[doc = "Get enumerated values variant"]
705 #[inline(always)]
706 pub fn variant(&self) -> IEN13_A {
707 match self.bits {
708 false => IEN13_A::DISABLE,
709 true => IEN13_A::ENABLE,
710 }
711 }
712 #[doc = "Checks if the value of the field is `DISABLE`"]
713 #[inline(always)]
714 pub fn is_disable(&self) -> bool {
715 *self == IEN13_A::DISABLE
716 }
717 #[doc = "Checks if the value of the field is `ENABLE`"]
718 #[inline(always)]
719 pub fn is_enable(&self) -> bool {
720 *self == IEN13_A::ENABLE
721 }
722}
723#[doc = "Field `IEN13` writer - Event Interrupt Enable n"]
724pub type IEN13_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN13_A, O>;
725impl<'a, const O: u8> IEN13_W<'a, O> {
726 #[doc = "Disable"]
727 #[inline(always)]
728 pub fn disable(self) -> &'a mut W {
729 self.variant(IEN13_A::DISABLE)
730 }
731 #[doc = "Enable"]
732 #[inline(always)]
733 pub fn enable(self) -> &'a mut W {
734 self.variant(IEN13_A::ENABLE)
735 }
736}
737#[doc = "Field `IEN14` reader - Event Interrupt Enable n"]
738pub type IEN14_R = crate::BitReader<IEN14_A>;
739#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum IEN14_A {
742 #[doc = "0: Disable"]
743 DISABLE = 0,
744 #[doc = "1: Enable"]
745 ENABLE = 1,
746}
747impl From<IEN14_A> for bool {
748 #[inline(always)]
749 fn from(variant: IEN14_A) -> Self {
750 variant as u8 != 0
751 }
752}
753impl IEN14_R {
754 #[doc = "Get enumerated values variant"]
755 #[inline(always)]
756 pub fn variant(&self) -> IEN14_A {
757 match self.bits {
758 false => IEN14_A::DISABLE,
759 true => IEN14_A::ENABLE,
760 }
761 }
762 #[doc = "Checks if the value of the field is `DISABLE`"]
763 #[inline(always)]
764 pub fn is_disable(&self) -> bool {
765 *self == IEN14_A::DISABLE
766 }
767 #[doc = "Checks if the value of the field is `ENABLE`"]
768 #[inline(always)]
769 pub fn is_enable(&self) -> bool {
770 *self == IEN14_A::ENABLE
771 }
772}
773#[doc = "Field `IEN14` writer - Event Interrupt Enable n"]
774pub type IEN14_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN14_A, O>;
775impl<'a, const O: u8> IEN14_W<'a, O> {
776 #[doc = "Disable"]
777 #[inline(always)]
778 pub fn disable(self) -> &'a mut W {
779 self.variant(IEN14_A::DISABLE)
780 }
781 #[doc = "Enable"]
782 #[inline(always)]
783 pub fn enable(self) -> &'a mut W {
784 self.variant(IEN14_A::ENABLE)
785 }
786}
787#[doc = "Field `IEN15` reader - Event Interrupt Enable n"]
788pub type IEN15_R = crate::BitReader<IEN15_A>;
789#[doc = "Event Interrupt Enable n\n\nValue on reset: 0"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum IEN15_A {
792 #[doc = "0: Disable"]
793 DISABLE = 0,
794 #[doc = "1: Enable"]
795 ENABLE = 1,
796}
797impl From<IEN15_A> for bool {
798 #[inline(always)]
799 fn from(variant: IEN15_A) -> Self {
800 variant as u8 != 0
801 }
802}
803impl IEN15_R {
804 #[doc = "Get enumerated values variant"]
805 #[inline(always)]
806 pub fn variant(&self) -> IEN15_A {
807 match self.bits {
808 false => IEN15_A::DISABLE,
809 true => IEN15_A::ENABLE,
810 }
811 }
812 #[doc = "Checks if the value of the field is `DISABLE`"]
813 #[inline(always)]
814 pub fn is_disable(&self) -> bool {
815 *self == IEN15_A::DISABLE
816 }
817 #[doc = "Checks if the value of the field is `ENABLE`"]
818 #[inline(always)]
819 pub fn is_enable(&self) -> bool {
820 *self == IEN15_A::ENABLE
821 }
822}
823#[doc = "Field `IEN15` writer - Event Interrupt Enable n"]
824pub type IEN15_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVEN_SPEC, IEN15_A, O>;
825impl<'a, const O: u8> IEN15_W<'a, O> {
826 #[doc = "Disable"]
827 #[inline(always)]
828 pub fn disable(self) -> &'a mut W {
829 self.variant(IEN15_A::DISABLE)
830 }
831 #[doc = "Enable"]
832 #[inline(always)]
833 pub fn enable(self) -> &'a mut W {
834 self.variant(IEN15_A::ENABLE)
835 }
836}
837impl R {
838 #[doc = "Bit 0 - Event Interrupt Enable n"]
839 #[inline(always)]
840 pub fn ien0(&self) -> IEN0_R {
841 IEN0_R::new((self.bits & 1) != 0)
842 }
843 #[doc = "Bit 1 - Event Interrupt Enable n"]
844 #[inline(always)]
845 pub fn ien1(&self) -> IEN1_R {
846 IEN1_R::new(((self.bits >> 1) & 1) != 0)
847 }
848 #[doc = "Bit 2 - Event Interrupt Enable n"]
849 #[inline(always)]
850 pub fn ien2(&self) -> IEN2_R {
851 IEN2_R::new(((self.bits >> 2) & 1) != 0)
852 }
853 #[doc = "Bit 3 - Event Interrupt Enable n"]
854 #[inline(always)]
855 pub fn ien3(&self) -> IEN3_R {
856 IEN3_R::new(((self.bits >> 3) & 1) != 0)
857 }
858 #[doc = "Bit 4 - Event Interrupt Enable n"]
859 #[inline(always)]
860 pub fn ien4(&self) -> IEN4_R {
861 IEN4_R::new(((self.bits >> 4) & 1) != 0)
862 }
863 #[doc = "Bit 5 - Event Interrupt Enable n"]
864 #[inline(always)]
865 pub fn ien5(&self) -> IEN5_R {
866 IEN5_R::new(((self.bits >> 5) & 1) != 0)
867 }
868 #[doc = "Bit 6 - Event Interrupt Enable n"]
869 #[inline(always)]
870 pub fn ien6(&self) -> IEN6_R {
871 IEN6_R::new(((self.bits >> 6) & 1) != 0)
872 }
873 #[doc = "Bit 7 - Event Interrupt Enable n"]
874 #[inline(always)]
875 pub fn ien7(&self) -> IEN7_R {
876 IEN7_R::new(((self.bits >> 7) & 1) != 0)
877 }
878 #[doc = "Bit 8 - Event Interrupt Enable n"]
879 #[inline(always)]
880 pub fn ien8(&self) -> IEN8_R {
881 IEN8_R::new(((self.bits >> 8) & 1) != 0)
882 }
883 #[doc = "Bit 9 - Event Interrupt Enable n"]
884 #[inline(always)]
885 pub fn ien9(&self) -> IEN9_R {
886 IEN9_R::new(((self.bits >> 9) & 1) != 0)
887 }
888 #[doc = "Bit 10 - Event Interrupt Enable n"]
889 #[inline(always)]
890 pub fn ien10(&self) -> IEN10_R {
891 IEN10_R::new(((self.bits >> 10) & 1) != 0)
892 }
893 #[doc = "Bit 11 - Event Interrupt Enable n"]
894 #[inline(always)]
895 pub fn ien11(&self) -> IEN11_R {
896 IEN11_R::new(((self.bits >> 11) & 1) != 0)
897 }
898 #[doc = "Bit 12 - Event Interrupt Enable n"]
899 #[inline(always)]
900 pub fn ien12(&self) -> IEN12_R {
901 IEN12_R::new(((self.bits >> 12) & 1) != 0)
902 }
903 #[doc = "Bit 13 - Event Interrupt Enable n"]
904 #[inline(always)]
905 pub fn ien13(&self) -> IEN13_R {
906 IEN13_R::new(((self.bits >> 13) & 1) != 0)
907 }
908 #[doc = "Bit 14 - Event Interrupt Enable n"]
909 #[inline(always)]
910 pub fn ien14(&self) -> IEN14_R {
911 IEN14_R::new(((self.bits >> 14) & 1) != 0)
912 }
913 #[doc = "Bit 15 - Event Interrupt Enable n"]
914 #[inline(always)]
915 pub fn ien15(&self) -> IEN15_R {
916 IEN15_R::new(((self.bits >> 15) & 1) != 0)
917 }
918}
919impl W {
920 #[doc = "Bit 0 - Event Interrupt Enable n"]
921 #[inline(always)]
922 #[must_use]
923 pub fn ien0(&mut self) -> IEN0_W<0> {
924 IEN0_W::new(self)
925 }
926 #[doc = "Bit 1 - Event Interrupt Enable n"]
927 #[inline(always)]
928 #[must_use]
929 pub fn ien1(&mut self) -> IEN1_W<1> {
930 IEN1_W::new(self)
931 }
932 #[doc = "Bit 2 - Event Interrupt Enable n"]
933 #[inline(always)]
934 #[must_use]
935 pub fn ien2(&mut self) -> IEN2_W<2> {
936 IEN2_W::new(self)
937 }
938 #[doc = "Bit 3 - Event Interrupt Enable n"]
939 #[inline(always)]
940 #[must_use]
941 pub fn ien3(&mut self) -> IEN3_W<3> {
942 IEN3_W::new(self)
943 }
944 #[doc = "Bit 4 - Event Interrupt Enable n"]
945 #[inline(always)]
946 #[must_use]
947 pub fn ien4(&mut self) -> IEN4_W<4> {
948 IEN4_W::new(self)
949 }
950 #[doc = "Bit 5 - Event Interrupt Enable n"]
951 #[inline(always)]
952 #[must_use]
953 pub fn ien5(&mut self) -> IEN5_W<5> {
954 IEN5_W::new(self)
955 }
956 #[doc = "Bit 6 - Event Interrupt Enable n"]
957 #[inline(always)]
958 #[must_use]
959 pub fn ien6(&mut self) -> IEN6_W<6> {
960 IEN6_W::new(self)
961 }
962 #[doc = "Bit 7 - Event Interrupt Enable n"]
963 #[inline(always)]
964 #[must_use]
965 pub fn ien7(&mut self) -> IEN7_W<7> {
966 IEN7_W::new(self)
967 }
968 #[doc = "Bit 8 - Event Interrupt Enable n"]
969 #[inline(always)]
970 #[must_use]
971 pub fn ien8(&mut self) -> IEN8_W<8> {
972 IEN8_W::new(self)
973 }
974 #[doc = "Bit 9 - Event Interrupt Enable n"]
975 #[inline(always)]
976 #[must_use]
977 pub fn ien9(&mut self) -> IEN9_W<9> {
978 IEN9_W::new(self)
979 }
980 #[doc = "Bit 10 - Event Interrupt Enable n"]
981 #[inline(always)]
982 #[must_use]
983 pub fn ien10(&mut self) -> IEN10_W<10> {
984 IEN10_W::new(self)
985 }
986 #[doc = "Bit 11 - Event Interrupt Enable n"]
987 #[inline(always)]
988 #[must_use]
989 pub fn ien11(&mut self) -> IEN11_W<11> {
990 IEN11_W::new(self)
991 }
992 #[doc = "Bit 12 - Event Interrupt Enable n"]
993 #[inline(always)]
994 #[must_use]
995 pub fn ien12(&mut self) -> IEN12_W<12> {
996 IEN12_W::new(self)
997 }
998 #[doc = "Bit 13 - Event Interrupt Enable n"]
999 #[inline(always)]
1000 #[must_use]
1001 pub fn ien13(&mut self) -> IEN13_W<13> {
1002 IEN13_W::new(self)
1003 }
1004 #[doc = "Bit 14 - Event Interrupt Enable n"]
1005 #[inline(always)]
1006 #[must_use]
1007 pub fn ien14(&mut self) -> IEN14_W<14> {
1008 IEN14_W::new(self)
1009 }
1010 #[doc = "Bit 15 - Event Interrupt Enable n"]
1011 #[inline(always)]
1012 #[must_use]
1013 pub fn ien15(&mut self) -> IEN15_W<15> {
1014 IEN15_W::new(self)
1015 }
1016 #[doc = "Writes raw bits to the register."]
1017 #[inline(always)]
1018 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1019 self.0.bits(bits);
1020 self
1021 }
1022}
1023#[doc = "Event Interrupt Enable\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 [even](index.html) module"]
1024pub struct EVEN_SPEC;
1025impl crate::RegisterSpec for EVEN_SPEC {
1026 type Ux = u32;
1027}
1028#[doc = "`read()` method returns [even::R](R) reader structure"]
1029impl crate::Readable for EVEN_SPEC {
1030 type Reader = R;
1031}
1032#[doc = "`write(|w| ..)` method takes [even::W](W) writer structure"]
1033impl crate::Writable for EVEN_SPEC {
1034 type Writer = W;
1035 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1036 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
1037}
1038#[doc = "`reset()` method sets EVEN to value 0"]
1039impl crate::Resettable for EVEN_SPEC {
1040 const RESET_VALUE: Self::Ux = 0;
1041}