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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
#[doc = "Register `ALTEXCONF` reader"]
pub struct R(crate::R<ALTEXCONF_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<ALTEXCONF_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<ALTEXCONF_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<ALTEXCONF_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `ALTEXCONF` writer"]
pub struct W(crate::W<ALTEXCONF_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<ALTEXCONF_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::ops::DerefMut for W {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl From<crate::W<ALTEXCONF_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<ALTEXCONF_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Field `IDLECONF0` reader - ALTEX0 Idle Phase Configuration"]
pub type IDLECONF0_R = crate::FieldReader<u8, IDLECONF0_A>;
#[doc = "ALTEX0 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF0_A {
    #[doc = "0: ALTEX0 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX0 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX0 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF0_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF0_A) -> Self {
        variant as _
    }
}
impl IDLECONF0_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF0_A> {
        match self.bits {
            0 => Some(IDLECONF0_A::DISABLE),
            1 => Some(IDLECONF0_A::HIGH),
            2 => Some(IDLECONF0_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF0_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF0_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF0_A::LOW
    }
}
#[doc = "Field `IDLECONF0` writer - ALTEX0 Idle Phase Configuration"]
pub type IDLECONF0_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF0_A, 2, O>;
impl<'a, const O: u8> IDLECONF0_W<'a, O> {
    #[doc = "ALTEX0 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF0_A::DISABLE)
    }
    #[doc = "ALTEX0 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF0_A::HIGH)
    }
    #[doc = "ALTEX0 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF0_A::LOW)
    }
}
#[doc = "Field `IDLECONF1` reader - ALTEX1 Idle Phase Configuration"]
pub type IDLECONF1_R = crate::FieldReader<u8, IDLECONF1_A>;
#[doc = "ALTEX1 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF1_A {
    #[doc = "0: ALTEX1 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX1 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX1 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF1_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF1_A) -> Self {
        variant as _
    }
}
impl IDLECONF1_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF1_A> {
        match self.bits {
            0 => Some(IDLECONF1_A::DISABLE),
            1 => Some(IDLECONF1_A::HIGH),
            2 => Some(IDLECONF1_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF1_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF1_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF1_A::LOW
    }
}
#[doc = "Field `IDLECONF1` writer - ALTEX1 Idle Phase Configuration"]
pub type IDLECONF1_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF1_A, 2, O>;
impl<'a, const O: u8> IDLECONF1_W<'a, O> {
    #[doc = "ALTEX1 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF1_A::DISABLE)
    }
    #[doc = "ALTEX1 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF1_A::HIGH)
    }
    #[doc = "ALTEX1 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF1_A::LOW)
    }
}
#[doc = "Field `IDLECONF2` reader - ALTEX2 Idle Phase Configuration"]
pub type IDLECONF2_R = crate::FieldReader<u8, IDLECONF2_A>;
#[doc = "ALTEX2 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF2_A {
    #[doc = "0: ALTEX2 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX2 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX2 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF2_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF2_A) -> Self {
        variant as _
    }
}
impl IDLECONF2_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF2_A> {
        match self.bits {
            0 => Some(IDLECONF2_A::DISABLE),
            1 => Some(IDLECONF2_A::HIGH),
            2 => Some(IDLECONF2_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF2_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF2_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF2_A::LOW
    }
}
#[doc = "Field `IDLECONF2` writer - ALTEX2 Idle Phase Configuration"]
pub type IDLECONF2_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF2_A, 2, O>;
impl<'a, const O: u8> IDLECONF2_W<'a, O> {
    #[doc = "ALTEX2 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF2_A::DISABLE)
    }
    #[doc = "ALTEX2 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF2_A::HIGH)
    }
    #[doc = "ALTEX2 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF2_A::LOW)
    }
}
#[doc = "Field `IDLECONF3` reader - ALTEX3 Idle Phase Configuration"]
pub type IDLECONF3_R = crate::FieldReader<u8, IDLECONF3_A>;
#[doc = "ALTEX3 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF3_A {
    #[doc = "0: ALTEX3 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX3 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX3 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF3_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF3_A) -> Self {
        variant as _
    }
}
impl IDLECONF3_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF3_A> {
        match self.bits {
            0 => Some(IDLECONF3_A::DISABLE),
            1 => Some(IDLECONF3_A::HIGH),
            2 => Some(IDLECONF3_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF3_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF3_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF3_A::LOW
    }
}
#[doc = "Field `IDLECONF3` writer - ALTEX3 Idle Phase Configuration"]
pub type IDLECONF3_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF3_A, 2, O>;
impl<'a, const O: u8> IDLECONF3_W<'a, O> {
    #[doc = "ALTEX3 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF3_A::DISABLE)
    }
    #[doc = "ALTEX3 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF3_A::HIGH)
    }
    #[doc = "ALTEX3 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF3_A::LOW)
    }
}
#[doc = "Field `IDLECONF4` reader - ALTEX4 Idle Phase Configuration"]
pub type IDLECONF4_R = crate::FieldReader<u8, IDLECONF4_A>;
#[doc = "ALTEX4 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF4_A {
    #[doc = "0: ALTEX4 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX4 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX4 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF4_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF4_A) -> Self {
        variant as _
    }
}
impl IDLECONF4_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF4_A> {
        match self.bits {
            0 => Some(IDLECONF4_A::DISABLE),
            1 => Some(IDLECONF4_A::HIGH),
            2 => Some(IDLECONF4_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF4_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF4_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF4_A::LOW
    }
}
#[doc = "Field `IDLECONF4` writer - ALTEX4 Idle Phase Configuration"]
pub type IDLECONF4_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF4_A, 2, O>;
impl<'a, const O: u8> IDLECONF4_W<'a, O> {
    #[doc = "ALTEX4 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF4_A::DISABLE)
    }
    #[doc = "ALTEX4 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF4_A::HIGH)
    }
    #[doc = "ALTEX4 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF4_A::LOW)
    }
}
#[doc = "Field `IDLECONF5` reader - ALTEX5 Idle Phase Configuration"]
pub type IDLECONF5_R = crate::FieldReader<u8, IDLECONF5_A>;
#[doc = "ALTEX5 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF5_A {
    #[doc = "0: ALTEX5 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX5 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX5 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF5_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF5_A) -> Self {
        variant as _
    }
}
impl IDLECONF5_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF5_A> {
        match self.bits {
            0 => Some(IDLECONF5_A::DISABLE),
            1 => Some(IDLECONF5_A::HIGH),
            2 => Some(IDLECONF5_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF5_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF5_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF5_A::LOW
    }
}
#[doc = "Field `IDLECONF5` writer - ALTEX5 Idle Phase Configuration"]
pub type IDLECONF5_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF5_A, 2, O>;
impl<'a, const O: u8> IDLECONF5_W<'a, O> {
    #[doc = "ALTEX5 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF5_A::DISABLE)
    }
    #[doc = "ALTEX5 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF5_A::HIGH)
    }
    #[doc = "ALTEX5 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF5_A::LOW)
    }
}
#[doc = "Field `IDLECONF6` reader - ALTEX6 Idle Phase Configuration"]
pub type IDLECONF6_R = crate::FieldReader<u8, IDLECONF6_A>;
#[doc = "ALTEX6 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF6_A {
    #[doc = "0: ALTEX6 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX6 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX6 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF6_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF6_A) -> Self {
        variant as _
    }
}
impl IDLECONF6_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF6_A> {
        match self.bits {
            0 => Some(IDLECONF6_A::DISABLE),
            1 => Some(IDLECONF6_A::HIGH),
            2 => Some(IDLECONF6_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF6_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF6_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF6_A::LOW
    }
}
#[doc = "Field `IDLECONF6` writer - ALTEX6 Idle Phase Configuration"]
pub type IDLECONF6_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF6_A, 2, O>;
impl<'a, const O: u8> IDLECONF6_W<'a, O> {
    #[doc = "ALTEX6 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF6_A::DISABLE)
    }
    #[doc = "ALTEX6 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF6_A::HIGH)
    }
    #[doc = "ALTEX6 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF6_A::LOW)
    }
}
#[doc = "Field `IDLECONF7` reader - ALTEX7 Idle Phase Configuration"]
pub type IDLECONF7_R = crate::FieldReader<u8, IDLECONF7_A>;
#[doc = "ALTEX7 Idle Phase Configuration\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum IDLECONF7_A {
    #[doc = "0: ALTEX7 output is disabled in idle phase"]
    DISABLE = 0,
    #[doc = "1: ALTEX7 output is high in idle phase"]
    HIGH = 1,
    #[doc = "2: ALTEX7 output is low in idle phase"]
    LOW = 2,
}
impl From<IDLECONF7_A> for u8 {
    #[inline(always)]
    fn from(variant: IDLECONF7_A) -> Self {
        variant as _
    }
}
impl IDLECONF7_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<IDLECONF7_A> {
        match self.bits {
            0 => Some(IDLECONF7_A::DISABLE),
            1 => Some(IDLECONF7_A::HIGH),
            2 => Some(IDLECONF7_A::LOW),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLE`"]
    #[inline(always)]
    pub fn is_disable(&self) -> bool {
        *self == IDLECONF7_A::DISABLE
    }
    #[doc = "Checks if the value of the field is `HIGH`"]
    #[inline(always)]
    pub fn is_high(&self) -> bool {
        *self == IDLECONF7_A::HIGH
    }
    #[doc = "Checks if the value of the field is `LOW`"]
    #[inline(always)]
    pub fn is_low(&self) -> bool {
        *self == IDLECONF7_A::LOW
    }
}
#[doc = "Field `IDLECONF7` writer - ALTEX7 Idle Phase Configuration"]
pub type IDLECONF7_W<'a, const O: u8> =
    crate::FieldWriter<'a, u32, ALTEXCONF_SPEC, u8, IDLECONF7_A, 2, O>;
impl<'a, const O: u8> IDLECONF7_W<'a, O> {
    #[doc = "ALTEX7 output is disabled in idle phase"]
    #[inline(always)]
    pub fn disable(self) -> &'a mut W {
        self.variant(IDLECONF7_A::DISABLE)
    }
    #[doc = "ALTEX7 output is high in idle phase"]
    #[inline(always)]
    pub fn high(self) -> &'a mut W {
        self.variant(IDLECONF7_A::HIGH)
    }
    #[doc = "ALTEX7 output is low in idle phase"]
    #[inline(always)]
    pub fn low(self) -> &'a mut W {
        self.variant(IDLECONF7_A::LOW)
    }
}
#[doc = "Field `AEX0` reader - ALTEX0 Always Excite Enable"]
pub type AEX0_R = crate::BitReader<bool>;
#[doc = "Field `AEX0` writer - ALTEX0 Always Excite Enable"]
pub type AEX0_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX1` reader - ALTEX1 Always Excite Enable"]
pub type AEX1_R = crate::BitReader<bool>;
#[doc = "Field `AEX1` writer - ALTEX1 Always Excite Enable"]
pub type AEX1_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX2` reader - ALTEX2 Always Excite Enable"]
pub type AEX2_R = crate::BitReader<bool>;
#[doc = "Field `AEX2` writer - ALTEX2 Always Excite Enable"]
pub type AEX2_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX3` reader - ALTEX3 Always Excite Enable"]
pub type AEX3_R = crate::BitReader<bool>;
#[doc = "Field `AEX3` writer - ALTEX3 Always Excite Enable"]
pub type AEX3_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX4` reader - ALTEX4 Always Excite Enable"]
pub type AEX4_R = crate::BitReader<bool>;
#[doc = "Field `AEX4` writer - ALTEX4 Always Excite Enable"]
pub type AEX4_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX5` reader - ALTEX5 Always Excite Enable"]
pub type AEX5_R = crate::BitReader<bool>;
#[doc = "Field `AEX5` writer - ALTEX5 Always Excite Enable"]
pub type AEX5_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX6` reader - ALTEX6 Always Excite Enable"]
pub type AEX6_R = crate::BitReader<bool>;
#[doc = "Field `AEX6` writer - ALTEX6 Always Excite Enable"]
pub type AEX6_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
#[doc = "Field `AEX7` reader - ALTEX7 Always Excite Enable"]
pub type AEX7_R = crate::BitReader<bool>;
#[doc = "Field `AEX7` writer - ALTEX7 Always Excite Enable"]
pub type AEX7_W<'a, const O: u8> = crate::BitWriter<'a, u32, ALTEXCONF_SPEC, bool, O>;
impl R {
    #[doc = "Bits 0:1 - ALTEX0 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf0(&self) -> IDLECONF0_R {
        IDLECONF0_R::new((self.bits & 3) as u8)
    }
    #[doc = "Bits 2:3 - ALTEX1 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf1(&self) -> IDLECONF1_R {
        IDLECONF1_R::new(((self.bits >> 2) & 3) as u8)
    }
    #[doc = "Bits 4:5 - ALTEX2 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf2(&self) -> IDLECONF2_R {
        IDLECONF2_R::new(((self.bits >> 4) & 3) as u8)
    }
    #[doc = "Bits 6:7 - ALTEX3 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf3(&self) -> IDLECONF3_R {
        IDLECONF3_R::new(((self.bits >> 6) & 3) as u8)
    }
    #[doc = "Bits 8:9 - ALTEX4 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf4(&self) -> IDLECONF4_R {
        IDLECONF4_R::new(((self.bits >> 8) & 3) as u8)
    }
    #[doc = "Bits 10:11 - ALTEX5 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf5(&self) -> IDLECONF5_R {
        IDLECONF5_R::new(((self.bits >> 10) & 3) as u8)
    }
    #[doc = "Bits 12:13 - ALTEX6 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf6(&self) -> IDLECONF6_R {
        IDLECONF6_R::new(((self.bits >> 12) & 3) as u8)
    }
    #[doc = "Bits 14:15 - ALTEX7 Idle Phase Configuration"]
    #[inline(always)]
    pub fn idleconf7(&self) -> IDLECONF7_R {
        IDLECONF7_R::new(((self.bits >> 14) & 3) as u8)
    }
    #[doc = "Bit 16 - ALTEX0 Always Excite Enable"]
    #[inline(always)]
    pub fn aex0(&self) -> AEX0_R {
        AEX0_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - ALTEX1 Always Excite Enable"]
    #[inline(always)]
    pub fn aex1(&self) -> AEX1_R {
        AEX1_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - ALTEX2 Always Excite Enable"]
    #[inline(always)]
    pub fn aex2(&self) -> AEX2_R {
        AEX2_R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - ALTEX3 Always Excite Enable"]
    #[inline(always)]
    pub fn aex3(&self) -> AEX3_R {
        AEX3_R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 20 - ALTEX4 Always Excite Enable"]
    #[inline(always)]
    pub fn aex4(&self) -> AEX4_R {
        AEX4_R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 21 - ALTEX5 Always Excite Enable"]
    #[inline(always)]
    pub fn aex5(&self) -> AEX5_R {
        AEX5_R::new(((self.bits >> 21) & 1) != 0)
    }
    #[doc = "Bit 22 - ALTEX6 Always Excite Enable"]
    #[inline(always)]
    pub fn aex6(&self) -> AEX6_R {
        AEX6_R::new(((self.bits >> 22) & 1) != 0)
    }
    #[doc = "Bit 23 - ALTEX7 Always Excite Enable"]
    #[inline(always)]
    pub fn aex7(&self) -> AEX7_R {
        AEX7_R::new(((self.bits >> 23) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:1 - ALTEX0 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf0(&mut self) -> IDLECONF0_W<0> {
        IDLECONF0_W::new(self)
    }
    #[doc = "Bits 2:3 - ALTEX1 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf1(&mut self) -> IDLECONF1_W<2> {
        IDLECONF1_W::new(self)
    }
    #[doc = "Bits 4:5 - ALTEX2 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf2(&mut self) -> IDLECONF2_W<4> {
        IDLECONF2_W::new(self)
    }
    #[doc = "Bits 6:7 - ALTEX3 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf3(&mut self) -> IDLECONF3_W<6> {
        IDLECONF3_W::new(self)
    }
    #[doc = "Bits 8:9 - ALTEX4 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf4(&mut self) -> IDLECONF4_W<8> {
        IDLECONF4_W::new(self)
    }
    #[doc = "Bits 10:11 - ALTEX5 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf5(&mut self) -> IDLECONF5_W<10> {
        IDLECONF5_W::new(self)
    }
    #[doc = "Bits 12:13 - ALTEX6 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf6(&mut self) -> IDLECONF6_W<12> {
        IDLECONF6_W::new(self)
    }
    #[doc = "Bits 14:15 - ALTEX7 Idle Phase Configuration"]
    #[inline(always)]
    #[must_use]
    pub fn idleconf7(&mut self) -> IDLECONF7_W<14> {
        IDLECONF7_W::new(self)
    }
    #[doc = "Bit 16 - ALTEX0 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex0(&mut self) -> AEX0_W<16> {
        AEX0_W::new(self)
    }
    #[doc = "Bit 17 - ALTEX1 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex1(&mut self) -> AEX1_W<17> {
        AEX1_W::new(self)
    }
    #[doc = "Bit 18 - ALTEX2 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex2(&mut self) -> AEX2_W<18> {
        AEX2_W::new(self)
    }
    #[doc = "Bit 19 - ALTEX3 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex3(&mut self) -> AEX3_W<19> {
        AEX3_W::new(self)
    }
    #[doc = "Bit 20 - ALTEX4 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex4(&mut self) -> AEX4_W<20> {
        AEX4_W::new(self)
    }
    #[doc = "Bit 21 - ALTEX5 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex5(&mut self) -> AEX5_W<21> {
        AEX5_W::new(self)
    }
    #[doc = "Bit 22 - ALTEX6 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex6(&mut self) -> AEX6_W<22> {
        AEX6_W::new(self)
    }
    #[doc = "Bit 23 - ALTEX7 Always Excite Enable"]
    #[inline(always)]
    #[must_use]
    pub fn aex7(&mut self) -> AEX7_W<23> {
        AEX7_W::new(self)
    }
    #[doc = "Writes raw bits to the register."]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.0.bits(bits);
        self
    }
}
#[doc = "Alternative Excite Pin Configuration\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 [altexconf](index.html) module"]
pub struct ALTEXCONF_SPEC;
impl crate::RegisterSpec for ALTEXCONF_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [altexconf::R](R) reader structure"]
impl crate::Readable for ALTEXCONF_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [altexconf::W](W) writer structure"]
impl crate::Writable for ALTEXCONF_SPEC {
    type Writer = W;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets ALTEXCONF to value 0"]
impl crate::Resettable for ALTEXCONF_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}