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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
#[doc = "Register `ADC14CLRIFGR0` writer"]
pub struct W(crate::W<ADC14CLRIFGR0_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<ADC14CLRIFGR0_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<ADC14CLRIFGR0_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<ADC14CLRIFGR0_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "clear ADC14IFG0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG0_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG0_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG0_1 = 1,
}
impl From<CLRADC14IFG0_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG0_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG0` writer - clear ADC14IFG0"]
pub type CLRADC14IFG0_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG0_AW, O>;
impl<'a, const O: u8> CLRADC14IFG0_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg0_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG0_AW::CLRADC14IFG0_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg0_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG0_AW::CLRADC14IFG0_1)
    }
}
#[doc = "clear ADC14IFG1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG1_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG1_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG1_1 = 1,
}
impl From<CLRADC14IFG1_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG1_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG1` writer - clear ADC14IFG1"]
pub type CLRADC14IFG1_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG1_AW, O>;
impl<'a, const O: u8> CLRADC14IFG1_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg1_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG1_AW::CLRADC14IFG1_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg1_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG1_AW::CLRADC14IFG1_1)
    }
}
#[doc = "clear ADC14IFG2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG2_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG2_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG2_1 = 1,
}
impl From<CLRADC14IFG2_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG2_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG2` writer - clear ADC14IFG2"]
pub type CLRADC14IFG2_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG2_AW, O>;
impl<'a, const O: u8> CLRADC14IFG2_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg2_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG2_AW::CLRADC14IFG2_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg2_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG2_AW::CLRADC14IFG2_1)
    }
}
#[doc = "clear ADC14IFG3\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG3_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG3_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG3_1 = 1,
}
impl From<CLRADC14IFG3_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG3_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG3` writer - clear ADC14IFG3"]
pub type CLRADC14IFG3_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG3_AW, O>;
impl<'a, const O: u8> CLRADC14IFG3_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg3_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG3_AW::CLRADC14IFG3_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg3_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG3_AW::CLRADC14IFG3_1)
    }
}
#[doc = "clear ADC14IFG4\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG4_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG4_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG4_1 = 1,
}
impl From<CLRADC14IFG4_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG4_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG4` writer - clear ADC14IFG4"]
pub type CLRADC14IFG4_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG4_AW, O>;
impl<'a, const O: u8> CLRADC14IFG4_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg4_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG4_AW::CLRADC14IFG4_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg4_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG4_AW::CLRADC14IFG4_1)
    }
}
#[doc = "clear ADC14IFG5\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG5_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG5_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG5_1 = 1,
}
impl From<CLRADC14IFG5_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG5_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG5` writer - clear ADC14IFG5"]
pub type CLRADC14IFG5_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG5_AW, O>;
impl<'a, const O: u8> CLRADC14IFG5_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg5_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG5_AW::CLRADC14IFG5_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg5_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG5_AW::CLRADC14IFG5_1)
    }
}
#[doc = "clear ADC14IFG6\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG6_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG6_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG6_1 = 1,
}
impl From<CLRADC14IFG6_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG6_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG6` writer - clear ADC14IFG6"]
pub type CLRADC14IFG6_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG6_AW, O>;
impl<'a, const O: u8> CLRADC14IFG6_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg6_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG6_AW::CLRADC14IFG6_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg6_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG6_AW::CLRADC14IFG6_1)
    }
}
#[doc = "clear ADC14IFG7\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG7_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG7_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG7_1 = 1,
}
impl From<CLRADC14IFG7_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG7_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG7` writer - clear ADC14IFG7"]
pub type CLRADC14IFG7_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG7_AW, O>;
impl<'a, const O: u8> CLRADC14IFG7_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg7_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG7_AW::CLRADC14IFG7_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg7_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG7_AW::CLRADC14IFG7_1)
    }
}
#[doc = "clear ADC14IFG8\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG8_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG8_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG8_1 = 1,
}
impl From<CLRADC14IFG8_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG8_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG8` writer - clear ADC14IFG8"]
pub type CLRADC14IFG8_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG8_AW, O>;
impl<'a, const O: u8> CLRADC14IFG8_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg8_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG8_AW::CLRADC14IFG8_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg8_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG8_AW::CLRADC14IFG8_1)
    }
}
#[doc = "clear ADC14IFG9\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG9_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG9_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG9_1 = 1,
}
impl From<CLRADC14IFG9_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG9_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG9` writer - clear ADC14IFG9"]
pub type CLRADC14IFG9_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG9_AW, O>;
impl<'a, const O: u8> CLRADC14IFG9_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg9_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG9_AW::CLRADC14IFG9_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg9_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG9_AW::CLRADC14IFG9_1)
    }
}
#[doc = "clear ADC14IFG10\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG10_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG10_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG10_1 = 1,
}
impl From<CLRADC14IFG10_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG10_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG10` writer - clear ADC14IFG10"]
pub type CLRADC14IFG10_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG10_AW, O>;
impl<'a, const O: u8> CLRADC14IFG10_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg10_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG10_AW::CLRADC14IFG10_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg10_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG10_AW::CLRADC14IFG10_1)
    }
}
#[doc = "clear ADC14IFG11\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG11_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG11_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG11_1 = 1,
}
impl From<CLRADC14IFG11_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG11_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG11` writer - clear ADC14IFG11"]
pub type CLRADC14IFG11_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG11_AW, O>;
impl<'a, const O: u8> CLRADC14IFG11_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg11_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG11_AW::CLRADC14IFG11_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg11_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG11_AW::CLRADC14IFG11_1)
    }
}
#[doc = "clear ADC14IFG12\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG12_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG12_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG12_1 = 1,
}
impl From<CLRADC14IFG12_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG12_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG12` writer - clear ADC14IFG12"]
pub type CLRADC14IFG12_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG12_AW, O>;
impl<'a, const O: u8> CLRADC14IFG12_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg12_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG12_AW::CLRADC14IFG12_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg12_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG12_AW::CLRADC14IFG12_1)
    }
}
#[doc = "clear ADC14IFG13\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG13_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG13_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG13_1 = 1,
}
impl From<CLRADC14IFG13_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG13_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG13` writer - clear ADC14IFG13"]
pub type CLRADC14IFG13_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG13_AW, O>;
impl<'a, const O: u8> CLRADC14IFG13_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg13_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG13_AW::CLRADC14IFG13_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg13_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG13_AW::CLRADC14IFG13_1)
    }
}
#[doc = "clear ADC14IFG14\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG14_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG14_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG14_1 = 1,
}
impl From<CLRADC14IFG14_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG14_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG14` writer - clear ADC14IFG14"]
pub type CLRADC14IFG14_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG14_AW, O>;
impl<'a, const O: u8> CLRADC14IFG14_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg14_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG14_AW::CLRADC14IFG14_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg14_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG14_AW::CLRADC14IFG14_1)
    }
}
#[doc = "clear ADC14IFG15\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG15_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG15_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG15_1 = 1,
}
impl From<CLRADC14IFG15_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG15_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG15` writer - clear ADC14IFG15"]
pub type CLRADC14IFG15_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG15_AW, O>;
impl<'a, const O: u8> CLRADC14IFG15_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg15_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG15_AW::CLRADC14IFG15_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg15_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG15_AW::CLRADC14IFG15_1)
    }
}
#[doc = "clear ADC14IFG16\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG16_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG16_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG16_1 = 1,
}
impl From<CLRADC14IFG16_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG16_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG16` writer - clear ADC14IFG16"]
pub type CLRADC14IFG16_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG16_AW, O>;
impl<'a, const O: u8> CLRADC14IFG16_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg16_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG16_AW::CLRADC14IFG16_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg16_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG16_AW::CLRADC14IFG16_1)
    }
}
#[doc = "clear ADC14IFG17\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG17_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG17_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG17_1 = 1,
}
impl From<CLRADC14IFG17_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG17_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG17` writer - clear ADC14IFG17"]
pub type CLRADC14IFG17_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG17_AW, O>;
impl<'a, const O: u8> CLRADC14IFG17_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg17_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG17_AW::CLRADC14IFG17_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg17_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG17_AW::CLRADC14IFG17_1)
    }
}
#[doc = "clear ADC14IFG18\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG18_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG18_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG18_1 = 1,
}
impl From<CLRADC14IFG18_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG18_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG18` writer - clear ADC14IFG18"]
pub type CLRADC14IFG18_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG18_AW, O>;
impl<'a, const O: u8> CLRADC14IFG18_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg18_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG18_AW::CLRADC14IFG18_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg18_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG18_AW::CLRADC14IFG18_1)
    }
}
#[doc = "clear ADC14IFG19\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG19_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG19_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG19_1 = 1,
}
impl From<CLRADC14IFG19_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG19_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG19` writer - clear ADC14IFG19"]
pub type CLRADC14IFG19_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG19_AW, O>;
impl<'a, const O: u8> CLRADC14IFG19_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg19_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG19_AW::CLRADC14IFG19_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg19_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG19_AW::CLRADC14IFG19_1)
    }
}
#[doc = "clear ADC14IFG20\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG20_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG20_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG20_1 = 1,
}
impl From<CLRADC14IFG20_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG20_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG20` writer - clear ADC14IFG20"]
pub type CLRADC14IFG20_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG20_AW, O>;
impl<'a, const O: u8> CLRADC14IFG20_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg20_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG20_AW::CLRADC14IFG20_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg20_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG20_AW::CLRADC14IFG20_1)
    }
}
#[doc = "clear ADC14IFG21\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG21_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG21_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG21_1 = 1,
}
impl From<CLRADC14IFG21_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG21_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG21` writer - clear ADC14IFG21"]
pub type CLRADC14IFG21_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG21_AW, O>;
impl<'a, const O: u8> CLRADC14IFG21_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg21_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG21_AW::CLRADC14IFG21_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg21_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG21_AW::CLRADC14IFG21_1)
    }
}
#[doc = "clear ADC14IFG22\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG22_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG22_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG22_1 = 1,
}
impl From<CLRADC14IFG22_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG22_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG22` writer - clear ADC14IFG22"]
pub type CLRADC14IFG22_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG22_AW, O>;
impl<'a, const O: u8> CLRADC14IFG22_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg22_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG22_AW::CLRADC14IFG22_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg22_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG22_AW::CLRADC14IFG22_1)
    }
}
#[doc = "clear ADC14IFG23\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG23_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG23_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG23_1 = 1,
}
impl From<CLRADC14IFG23_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG23_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG23` writer - clear ADC14IFG23"]
pub type CLRADC14IFG23_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG23_AW, O>;
impl<'a, const O: u8> CLRADC14IFG23_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg23_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG23_AW::CLRADC14IFG23_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg23_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG23_AW::CLRADC14IFG23_1)
    }
}
#[doc = "clear ADC14IFG24\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG24_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG24_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG24_1 = 1,
}
impl From<CLRADC14IFG24_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG24_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG24` writer - clear ADC14IFG24"]
pub type CLRADC14IFG24_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG24_AW, O>;
impl<'a, const O: u8> CLRADC14IFG24_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg24_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG24_AW::CLRADC14IFG24_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg24_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG24_AW::CLRADC14IFG24_1)
    }
}
#[doc = "clear ADC14IFG25\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG25_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG25_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG25_1 = 1,
}
impl From<CLRADC14IFG25_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG25_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG25` writer - clear ADC14IFG25"]
pub type CLRADC14IFG25_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG25_AW, O>;
impl<'a, const O: u8> CLRADC14IFG25_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg25_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG25_AW::CLRADC14IFG25_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg25_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG25_AW::CLRADC14IFG25_1)
    }
}
#[doc = "clear ADC14IFG26\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG26_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG26_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG26_1 = 1,
}
impl From<CLRADC14IFG26_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG26_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG26` writer - clear ADC14IFG26"]
pub type CLRADC14IFG26_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG26_AW, O>;
impl<'a, const O: u8> CLRADC14IFG26_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg26_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG26_AW::CLRADC14IFG26_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg26_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG26_AW::CLRADC14IFG26_1)
    }
}
#[doc = "clear ADC14IFG27\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG27_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG27_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG27_1 = 1,
}
impl From<CLRADC14IFG27_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG27_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG27` writer - clear ADC14IFG27"]
pub type CLRADC14IFG27_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG27_AW, O>;
impl<'a, const O: u8> CLRADC14IFG27_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg27_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG27_AW::CLRADC14IFG27_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg27_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG27_AW::CLRADC14IFG27_1)
    }
}
#[doc = "clear ADC14IFG28\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG28_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG28_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG28_1 = 1,
}
impl From<CLRADC14IFG28_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG28_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG28` writer - clear ADC14IFG28"]
pub type CLRADC14IFG28_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG28_AW, O>;
impl<'a, const O: u8> CLRADC14IFG28_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg28_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG28_AW::CLRADC14IFG28_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg28_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG28_AW::CLRADC14IFG28_1)
    }
}
#[doc = "clear ADC14IFG29\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG29_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG29_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG29_1 = 1,
}
impl From<CLRADC14IFG29_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG29_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG29` writer - clear ADC14IFG29"]
pub type CLRADC14IFG29_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG29_AW, O>;
impl<'a, const O: u8> CLRADC14IFG29_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg29_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG29_AW::CLRADC14IFG29_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg29_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG29_AW::CLRADC14IFG29_1)
    }
}
#[doc = "clear ADC14IFG30\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG30_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG30_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG30_1 = 1,
}
impl From<CLRADC14IFG30_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG30_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG30` writer - clear ADC14IFG30"]
pub type CLRADC14IFG30_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG30_AW, O>;
impl<'a, const O: u8> CLRADC14IFG30_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg30_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG30_AW::CLRADC14IFG30_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg30_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG30_AW::CLRADC14IFG30_1)
    }
}
#[doc = "clear ADC14IFG31\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRADC14IFG31_AW {
    #[doc = "0: no effect"]
    CLRADC14IFG31_0 = 0,
    #[doc = "1: clear pending interrupt flag"]
    CLRADC14IFG31_1 = 1,
}
impl From<CLRADC14IFG31_AW> for bool {
    #[inline(always)]
    fn from(variant: CLRADC14IFG31_AW) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CLRADC14IFG31` writer - clear ADC14IFG31"]
pub type CLRADC14IFG31_W<'a, const O: u8> =
    crate::BitWriter<'a, u32, ADC14CLRIFGR0_SPEC, CLRADC14IFG31_AW, O>;
impl<'a, const O: u8> CLRADC14IFG31_W<'a, O> {
    #[doc = "no effect"]
    #[inline(always)]
    pub fn clradc14ifg31_0(self) -> &'a mut W {
        self.variant(CLRADC14IFG31_AW::CLRADC14IFG31_0)
    }
    #[doc = "clear pending interrupt flag"]
    #[inline(always)]
    pub fn clradc14ifg31_1(self) -> &'a mut W {
        self.variant(CLRADC14IFG31_AW::CLRADC14IFG31_1)
    }
}
impl W {
    #[doc = "Bit 0 - clear ADC14IFG0"]
    #[inline(always)]
    pub fn clradc14ifg0(&mut self) -> CLRADC14IFG0_W<0> {
        CLRADC14IFG0_W::new(self)
    }
    #[doc = "Bit 1 - clear ADC14IFG1"]
    #[inline(always)]
    pub fn clradc14ifg1(&mut self) -> CLRADC14IFG1_W<1> {
        CLRADC14IFG1_W::new(self)
    }
    #[doc = "Bit 2 - clear ADC14IFG2"]
    #[inline(always)]
    pub fn clradc14ifg2(&mut self) -> CLRADC14IFG2_W<2> {
        CLRADC14IFG2_W::new(self)
    }
    #[doc = "Bit 3 - clear ADC14IFG3"]
    #[inline(always)]
    pub fn clradc14ifg3(&mut self) -> CLRADC14IFG3_W<3> {
        CLRADC14IFG3_W::new(self)
    }
    #[doc = "Bit 4 - clear ADC14IFG4"]
    #[inline(always)]
    pub fn clradc14ifg4(&mut self) -> CLRADC14IFG4_W<4> {
        CLRADC14IFG4_W::new(self)
    }
    #[doc = "Bit 5 - clear ADC14IFG5"]
    #[inline(always)]
    pub fn clradc14ifg5(&mut self) -> CLRADC14IFG5_W<5> {
        CLRADC14IFG5_W::new(self)
    }
    #[doc = "Bit 6 - clear ADC14IFG6"]
    #[inline(always)]
    pub fn clradc14ifg6(&mut self) -> CLRADC14IFG6_W<6> {
        CLRADC14IFG6_W::new(self)
    }
    #[doc = "Bit 7 - clear ADC14IFG7"]
    #[inline(always)]
    pub fn clradc14ifg7(&mut self) -> CLRADC14IFG7_W<7> {
        CLRADC14IFG7_W::new(self)
    }
    #[doc = "Bit 8 - clear ADC14IFG8"]
    #[inline(always)]
    pub fn clradc14ifg8(&mut self) -> CLRADC14IFG8_W<8> {
        CLRADC14IFG8_W::new(self)
    }
    #[doc = "Bit 9 - clear ADC14IFG9"]
    #[inline(always)]
    pub fn clradc14ifg9(&mut self) -> CLRADC14IFG9_W<9> {
        CLRADC14IFG9_W::new(self)
    }
    #[doc = "Bit 10 - clear ADC14IFG10"]
    #[inline(always)]
    pub fn clradc14ifg10(&mut self) -> CLRADC14IFG10_W<10> {
        CLRADC14IFG10_W::new(self)
    }
    #[doc = "Bit 11 - clear ADC14IFG11"]
    #[inline(always)]
    pub fn clradc14ifg11(&mut self) -> CLRADC14IFG11_W<11> {
        CLRADC14IFG11_W::new(self)
    }
    #[doc = "Bit 12 - clear ADC14IFG12"]
    #[inline(always)]
    pub fn clradc14ifg12(&mut self) -> CLRADC14IFG12_W<12> {
        CLRADC14IFG12_W::new(self)
    }
    #[doc = "Bit 13 - clear ADC14IFG13"]
    #[inline(always)]
    pub fn clradc14ifg13(&mut self) -> CLRADC14IFG13_W<13> {
        CLRADC14IFG13_W::new(self)
    }
    #[doc = "Bit 14 - clear ADC14IFG14"]
    #[inline(always)]
    pub fn clradc14ifg14(&mut self) -> CLRADC14IFG14_W<14> {
        CLRADC14IFG14_W::new(self)
    }
    #[doc = "Bit 15 - clear ADC14IFG15"]
    #[inline(always)]
    pub fn clradc14ifg15(&mut self) -> CLRADC14IFG15_W<15> {
        CLRADC14IFG15_W::new(self)
    }
    #[doc = "Bit 16 - clear ADC14IFG16"]
    #[inline(always)]
    pub fn clradc14ifg16(&mut self) -> CLRADC14IFG16_W<16> {
        CLRADC14IFG16_W::new(self)
    }
    #[doc = "Bit 17 - clear ADC14IFG17"]
    #[inline(always)]
    pub fn clradc14ifg17(&mut self) -> CLRADC14IFG17_W<17> {
        CLRADC14IFG17_W::new(self)
    }
    #[doc = "Bit 18 - clear ADC14IFG18"]
    #[inline(always)]
    pub fn clradc14ifg18(&mut self) -> CLRADC14IFG18_W<18> {
        CLRADC14IFG18_W::new(self)
    }
    #[doc = "Bit 19 - clear ADC14IFG19"]
    #[inline(always)]
    pub fn clradc14ifg19(&mut self) -> CLRADC14IFG19_W<19> {
        CLRADC14IFG19_W::new(self)
    }
    #[doc = "Bit 20 - clear ADC14IFG20"]
    #[inline(always)]
    pub fn clradc14ifg20(&mut self) -> CLRADC14IFG20_W<20> {
        CLRADC14IFG20_W::new(self)
    }
    #[doc = "Bit 21 - clear ADC14IFG21"]
    #[inline(always)]
    pub fn clradc14ifg21(&mut self) -> CLRADC14IFG21_W<21> {
        CLRADC14IFG21_W::new(self)
    }
    #[doc = "Bit 22 - clear ADC14IFG22"]
    #[inline(always)]
    pub fn clradc14ifg22(&mut self) -> CLRADC14IFG22_W<22> {
        CLRADC14IFG22_W::new(self)
    }
    #[doc = "Bit 23 - clear ADC14IFG23"]
    #[inline(always)]
    pub fn clradc14ifg23(&mut self) -> CLRADC14IFG23_W<23> {
        CLRADC14IFG23_W::new(self)
    }
    #[doc = "Bit 24 - clear ADC14IFG24"]
    #[inline(always)]
    pub fn clradc14ifg24(&mut self) -> CLRADC14IFG24_W<24> {
        CLRADC14IFG24_W::new(self)
    }
    #[doc = "Bit 25 - clear ADC14IFG25"]
    #[inline(always)]
    pub fn clradc14ifg25(&mut self) -> CLRADC14IFG25_W<25> {
        CLRADC14IFG25_W::new(self)
    }
    #[doc = "Bit 26 - clear ADC14IFG26"]
    #[inline(always)]
    pub fn clradc14ifg26(&mut self) -> CLRADC14IFG26_W<26> {
        CLRADC14IFG26_W::new(self)
    }
    #[doc = "Bit 27 - clear ADC14IFG27"]
    #[inline(always)]
    pub fn clradc14ifg27(&mut self) -> CLRADC14IFG27_W<27> {
        CLRADC14IFG27_W::new(self)
    }
    #[doc = "Bit 28 - clear ADC14IFG28"]
    #[inline(always)]
    pub fn clradc14ifg28(&mut self) -> CLRADC14IFG28_W<28> {
        CLRADC14IFG28_W::new(self)
    }
    #[doc = "Bit 29 - clear ADC14IFG29"]
    #[inline(always)]
    pub fn clradc14ifg29(&mut self) -> CLRADC14IFG29_W<29> {
        CLRADC14IFG29_W::new(self)
    }
    #[doc = "Bit 30 - clear ADC14IFG30"]
    #[inline(always)]
    pub fn clradc14ifg30(&mut self) -> CLRADC14IFG30_W<30> {
        CLRADC14IFG30_W::new(self)
    }
    #[doc = "Bit 31 - clear ADC14IFG31"]
    #[inline(always)]
    pub fn clradc14ifg31(&mut self) -> CLRADC14IFG31_W<31> {
        CLRADC14IFG31_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 = "Clear Interrupt Flag 0 Register\n\nThis register you can [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [adc14clrifgr0](index.html) module"]
pub struct ADC14CLRIFGR0_SPEC;
impl crate::RegisterSpec for ADC14CLRIFGR0_SPEC {
    type Ux = u32;
}
#[doc = "`write(|w| ..)` method takes [adc14clrifgr0::W](W) writer structure"]
impl crate::Writable for ADC14CLRIFGR0_SPEC {
    type Writer = W;
}
#[doc = "`reset()` method sets ADC14CLRIFGR0 to value 0"]
impl crate::Resettable for ADC14CLRIFGR0_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}