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
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
#[doc = "Register `MR` reader"]
pub struct R(crate::R<MR_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<MR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<MR_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<MR_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `MR` writer"]
pub struct W(crate::W<MR_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<MR_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<MR_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<MR_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Field `TRGEN` reader - Trigger Enable"]
pub type TRGEN_R = crate::BitReader<TRGEN_A>;
#[doc = "Trigger Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TRGEN_A {
    #[doc = "0: External trigger mode disabled. DACC in free-running mode."]
    DIS = 0,
    #[doc = "1: External trigger mode enabled."]
    EN = 1,
}
impl From<TRGEN_A> for bool {
    #[inline(always)]
    fn from(variant: TRGEN_A) -> Self {
        variant as u8 != 0
    }
}
impl TRGEN_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TRGEN_A {
        match self.bits {
            false => TRGEN_A::DIS,
            true => TRGEN_A::EN,
        }
    }
    #[doc = "Checks if the value of the field is `DIS`"]
    #[inline(always)]
    pub fn is_dis(&self) -> bool {
        *self == TRGEN_A::DIS
    }
    #[doc = "Checks if the value of the field is `EN`"]
    #[inline(always)]
    pub fn is_en(&self) -> bool {
        *self == TRGEN_A::EN
    }
}
#[doc = "Field `TRGEN` writer - Trigger Enable"]
pub type TRGEN_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, TRGEN_A, O>;
impl<'a, const O: u8> TRGEN_W<'a, O> {
    #[doc = "External trigger mode disabled. DACC in free-running mode."]
    #[inline(always)]
    pub fn dis(self) -> &'a mut W {
        self.variant(TRGEN_A::DIS)
    }
    #[doc = "External trigger mode enabled."]
    #[inline(always)]
    pub fn en(self) -> &'a mut W {
        self.variant(TRGEN_A::EN)
    }
}
#[doc = "Field `TRGSEL` reader - Trigger Selection"]
pub type TRGSEL_R = crate::FieldReader<u8, TRGSEL_A>;
#[doc = "Trigger Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum TRGSEL_A {
    #[doc = "0: External trigger"]
    TRGSEL0 = 0,
    #[doc = "1: TIO Output of the Timer Counter Channel 0"]
    TRGSEL1 = 1,
    #[doc = "2: TIO Output of the Timer Counter Channel 1"]
    TRGSEL2 = 2,
    #[doc = "3: TIO Output of the Timer Counter Channel 2"]
    TRGSEL3 = 3,
    #[doc = "4: PWM Event Line 0"]
    TRGSEL4 = 4,
    #[doc = "5: PWM Event Line 1"]
    TRGSEL5 = 5,
}
impl From<TRGSEL_A> for u8 {
    #[inline(always)]
    fn from(variant: TRGSEL_A) -> Self {
        variant as _
    }
}
impl TRGSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<TRGSEL_A> {
        match self.bits {
            0 => Some(TRGSEL_A::TRGSEL0),
            1 => Some(TRGSEL_A::TRGSEL1),
            2 => Some(TRGSEL_A::TRGSEL2),
            3 => Some(TRGSEL_A::TRGSEL3),
            4 => Some(TRGSEL_A::TRGSEL4),
            5 => Some(TRGSEL_A::TRGSEL5),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `TRGSEL0`"]
    #[inline(always)]
    pub fn is_trgsel0(&self) -> bool {
        *self == TRGSEL_A::TRGSEL0
    }
    #[doc = "Checks if the value of the field is `TRGSEL1`"]
    #[inline(always)]
    pub fn is_trgsel1(&self) -> bool {
        *self == TRGSEL_A::TRGSEL1
    }
    #[doc = "Checks if the value of the field is `TRGSEL2`"]
    #[inline(always)]
    pub fn is_trgsel2(&self) -> bool {
        *self == TRGSEL_A::TRGSEL2
    }
    #[doc = "Checks if the value of the field is `TRGSEL3`"]
    #[inline(always)]
    pub fn is_trgsel3(&self) -> bool {
        *self == TRGSEL_A::TRGSEL3
    }
    #[doc = "Checks if the value of the field is `TRGSEL4`"]
    #[inline(always)]
    pub fn is_trgsel4(&self) -> bool {
        *self == TRGSEL_A::TRGSEL4
    }
    #[doc = "Checks if the value of the field is `TRGSEL5`"]
    #[inline(always)]
    pub fn is_trgsel5(&self) -> bool {
        *self == TRGSEL_A::TRGSEL5
    }
}
#[doc = "Field `TRGSEL` writer - Trigger Selection"]
pub type TRGSEL_W<'a, const O: u8> = crate::FieldWriter<'a, u32, MR_SPEC, u8, TRGSEL_A, 3, O>;
impl<'a, const O: u8> TRGSEL_W<'a, O> {
    #[doc = "External trigger"]
    #[inline(always)]
    pub fn trgsel0(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL0)
    }
    #[doc = "TIO Output of the Timer Counter Channel 0"]
    #[inline(always)]
    pub fn trgsel1(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL1)
    }
    #[doc = "TIO Output of the Timer Counter Channel 1"]
    #[inline(always)]
    pub fn trgsel2(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL2)
    }
    #[doc = "TIO Output of the Timer Counter Channel 2"]
    #[inline(always)]
    pub fn trgsel3(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL3)
    }
    #[doc = "PWM Event Line 0"]
    #[inline(always)]
    pub fn trgsel4(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL4)
    }
    #[doc = "PWM Event Line 1"]
    #[inline(always)]
    pub fn trgsel5(self) -> &'a mut W {
        self.variant(TRGSEL_A::TRGSEL5)
    }
}
#[doc = "Field `WORD` reader - Word Transfer"]
pub type WORD_R = crate::BitReader<WORD_A>;
#[doc = "Word Transfer\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum WORD_A {
    #[doc = "0: Half-word transfer"]
    HALF = 0,
    #[doc = "1: Word transfer"]
    WORD = 1,
}
impl From<WORD_A> for bool {
    #[inline(always)]
    fn from(variant: WORD_A) -> Self {
        variant as u8 != 0
    }
}
impl WORD_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> WORD_A {
        match self.bits {
            false => WORD_A::HALF,
            true => WORD_A::WORD,
        }
    }
    #[doc = "Checks if the value of the field is `HALF`"]
    #[inline(always)]
    pub fn is_half(&self) -> bool {
        *self == WORD_A::HALF
    }
    #[doc = "Checks if the value of the field is `WORD`"]
    #[inline(always)]
    pub fn is_word(&self) -> bool {
        *self == WORD_A::WORD
    }
}
#[doc = "Field `WORD` writer - Word Transfer"]
pub type WORD_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, WORD_A, O>;
impl<'a, const O: u8> WORD_W<'a, O> {
    #[doc = "Half-word transfer"]
    #[inline(always)]
    pub fn half(self) -> &'a mut W {
        self.variant(WORD_A::HALF)
    }
    #[doc = "Word transfer"]
    #[inline(always)]
    pub fn word(self) -> &'a mut W {
        self.variant(WORD_A::WORD)
    }
}
#[doc = "Field `SLEEP` reader - Sleep Mode"]
pub type SLEEP_R = crate::BitReader<SLEEP_A>;
#[doc = "Sleep Mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SLEEP_A {
    #[doc = "0: Normal mode: the DAC core and reference voltage circuitry are kept ON between conversions."]
    DISABLED = 0,
    #[doc = "1: Sleep mode: the DAC core and/or reference voltage circuitry are OFF between conversions."]
    ENABLED = 1,
}
impl From<SLEEP_A> for bool {
    #[inline(always)]
    fn from(variant: SLEEP_A) -> Self {
        variant as u8 != 0
    }
}
impl SLEEP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SLEEP_A {
        match self.bits {
            false => SLEEP_A::DISABLED,
            true => SLEEP_A::ENABLED,
        }
    }
    #[doc = "Checks if the value of the field is `DISABLED`"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == SLEEP_A::DISABLED
    }
    #[doc = "Checks if the value of the field is `ENABLED`"]
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == SLEEP_A::ENABLED
    }
}
#[doc = "Field `SLEEP` writer - Sleep Mode"]
pub type SLEEP_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, SLEEP_A, O>;
impl<'a, const O: u8> SLEEP_W<'a, O> {
    #[doc = "Normal mode: the DAC core and reference voltage circuitry are kept ON between conversions."]
    #[inline(always)]
    pub fn disabled(self) -> &'a mut W {
        self.variant(SLEEP_A::DISABLED)
    }
    #[doc = "Sleep mode: the DAC core and/or reference voltage circuitry are OFF between conversions."]
    #[inline(always)]
    pub fn enabled(self) -> &'a mut W {
        self.variant(SLEEP_A::ENABLED)
    }
}
#[doc = "Field `FASTWKUP` reader - Fast Wake-up Mode"]
pub type FASTWKUP_R = crate::BitReader<FASTWKUP_A>;
#[doc = "Fast Wake-up Mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FASTWKUP_A {
    #[doc = "0: Normal sleep mode: the sleep mode is defined by the SLEEP bit. Voltage reference is OFF between conversions."]
    STAMODE = 0,
    #[doc = "1: Fast wake-up after sleep mode: voltage reference is kept ON between conversions; DAC core is OFF"]
    FASTWAKEUP = 1,
}
impl From<FASTWKUP_A> for bool {
    #[inline(always)]
    fn from(variant: FASTWKUP_A) -> Self {
        variant as u8 != 0
    }
}
impl FASTWKUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> FASTWKUP_A {
        match self.bits {
            false => FASTWKUP_A::STAMODE,
            true => FASTWKUP_A::FASTWAKEUP,
        }
    }
    #[doc = "Checks if the value of the field is `STAMODE`"]
    #[inline(always)]
    pub fn is_stamode(&self) -> bool {
        *self == FASTWKUP_A::STAMODE
    }
    #[doc = "Checks if the value of the field is `FASTWAKEUP`"]
    #[inline(always)]
    pub fn is_fastwakeup(&self) -> bool {
        *self == FASTWKUP_A::FASTWAKEUP
    }
}
#[doc = "Field `FASTWKUP` writer - Fast Wake-up Mode"]
pub type FASTWKUP_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, FASTWKUP_A, O>;
impl<'a, const O: u8> FASTWKUP_W<'a, O> {
    #[doc = "Normal sleep mode: the sleep mode is defined by the SLEEP bit. Voltage reference is OFF between conversions."]
    #[inline(always)]
    pub fn stamode(self) -> &'a mut W {
        self.variant(FASTWKUP_A::STAMODE)
    }
    #[doc = "Fast wake-up after sleep mode: voltage reference is kept ON between conversions; DAC core is OFF"]
    #[inline(always)]
    pub fn fastwakeup(self) -> &'a mut W {
        self.variant(FASTWKUP_A::FASTWAKEUP)
    }
}
#[doc = "Field `REFRESH` reader - Automatic Refresh Period"]
pub type REFRESH_R = crate::FieldReader<u8, u8>;
#[doc = "Field `REFRESH` writer - Automatic Refresh Period"]
pub type REFRESH_W<'a, const O: u8> = crate::FieldWriter<'a, u32, MR_SPEC, u8, u8, 8, O>;
#[doc = "Field `USER_SEL` reader - User Channel Selection"]
pub type USER_SEL_R = crate::FieldReader<u8, USER_SEL_A>;
#[doc = "User Channel Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum USER_SEL_A {
    #[doc = "0: Channel 0"]
    CHANNEL0 = 0,
    #[doc = "1: Channel 1"]
    CHANNEL1 = 1,
}
impl From<USER_SEL_A> for u8 {
    #[inline(always)]
    fn from(variant: USER_SEL_A) -> Self {
        variant as _
    }
}
impl USER_SEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<USER_SEL_A> {
        match self.bits {
            0 => Some(USER_SEL_A::CHANNEL0),
            1 => Some(USER_SEL_A::CHANNEL1),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `CHANNEL0`"]
    #[inline(always)]
    pub fn is_channel0(&self) -> bool {
        *self == USER_SEL_A::CHANNEL0
    }
    #[doc = "Checks if the value of the field is `CHANNEL1`"]
    #[inline(always)]
    pub fn is_channel1(&self) -> bool {
        *self == USER_SEL_A::CHANNEL1
    }
}
#[doc = "Field `USER_SEL` writer - User Channel Selection"]
pub type USER_SEL_W<'a, const O: u8> = crate::FieldWriter<'a, u32, MR_SPEC, u8, USER_SEL_A, 2, O>;
impl<'a, const O: u8> USER_SEL_W<'a, O> {
    #[doc = "Channel 0"]
    #[inline(always)]
    pub fn channel0(self) -> &'a mut W {
        self.variant(USER_SEL_A::CHANNEL0)
    }
    #[doc = "Channel 1"]
    #[inline(always)]
    pub fn channel1(self) -> &'a mut W {
        self.variant(USER_SEL_A::CHANNEL1)
    }
}
#[doc = "Field `TAG` reader - Tag Selection Mode"]
pub type TAG_R = crate::BitReader<TAG_A>;
#[doc = "Tag Selection Mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TAG_A {
    #[doc = "0: Tag selection mode disabled. Using USER_SEL to select the channel for the conversion."]
    DIS = 0,
    #[doc = "1: Tag selection mode enabled"]
    EN = 1,
}
impl From<TAG_A> for bool {
    #[inline(always)]
    fn from(variant: TAG_A) -> Self {
        variant as u8 != 0
    }
}
impl TAG_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TAG_A {
        match self.bits {
            false => TAG_A::DIS,
            true => TAG_A::EN,
        }
    }
    #[doc = "Checks if the value of the field is `DIS`"]
    #[inline(always)]
    pub fn is_dis(&self) -> bool {
        *self == TAG_A::DIS
    }
    #[doc = "Checks if the value of the field is `EN`"]
    #[inline(always)]
    pub fn is_en(&self) -> bool {
        *self == TAG_A::EN
    }
}
#[doc = "Field `TAG` writer - Tag Selection Mode"]
pub type TAG_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, TAG_A, O>;
impl<'a, const O: u8> TAG_W<'a, O> {
    #[doc = "Tag selection mode disabled. Using USER_SEL to select the channel for the conversion."]
    #[inline(always)]
    pub fn dis(self) -> &'a mut W {
        self.variant(TAG_A::DIS)
    }
    #[doc = "Tag selection mode enabled"]
    #[inline(always)]
    pub fn en(self) -> &'a mut W {
        self.variant(TAG_A::EN)
    }
}
#[doc = "Field `MAXS` reader - Max Speed Mode"]
pub type MAXS_R = crate::BitReader<MAXS_A>;
#[doc = "Max Speed Mode\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MAXS_A {
    #[doc = "0: Normal mode"]
    NORMAL = 0,
    #[doc = "1: Maximum speed mode enabled"]
    MAXIMUM = 1,
}
impl From<MAXS_A> for bool {
    #[inline(always)]
    fn from(variant: MAXS_A) -> Self {
        variant as u8 != 0
    }
}
impl MAXS_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> MAXS_A {
        match self.bits {
            false => MAXS_A::NORMAL,
            true => MAXS_A::MAXIMUM,
        }
    }
    #[doc = "Checks if the value of the field is `NORMAL`"]
    #[inline(always)]
    pub fn is_normal(&self) -> bool {
        *self == MAXS_A::NORMAL
    }
    #[doc = "Checks if the value of the field is `MAXIMUM`"]
    #[inline(always)]
    pub fn is_maximum(&self) -> bool {
        *self == MAXS_A::MAXIMUM
    }
}
#[doc = "Field `MAXS` writer - Max Speed Mode"]
pub type MAXS_W<'a, const O: u8> = crate::BitWriter<'a, u32, MR_SPEC, MAXS_A, O>;
impl<'a, const O: u8> MAXS_W<'a, O> {
    #[doc = "Normal mode"]
    #[inline(always)]
    pub fn normal(self) -> &'a mut W {
        self.variant(MAXS_A::NORMAL)
    }
    #[doc = "Maximum speed mode enabled"]
    #[inline(always)]
    pub fn maximum(self) -> &'a mut W {
        self.variant(MAXS_A::MAXIMUM)
    }
}
#[doc = "Field `STARTUP` reader - Startup Time Selection"]
pub type STARTUP_R = crate::FieldReader<u8, STARTUP_A>;
#[doc = "Startup Time Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum STARTUP_A {
    #[doc = "0: 0 periods of DACClock"]
    _0 = 0,
    #[doc = "1: 8 periods of DACClock"]
    _8 = 1,
    #[doc = "2: 16 periods of DACClock"]
    _16 = 2,
    #[doc = "3: 24 periods of DACClock"]
    _24 = 3,
    #[doc = "4: 64 periods of DACClock"]
    _64 = 4,
    #[doc = "5: 80 periods of DACClock"]
    _80 = 5,
    #[doc = "6: 96 periods of DACClock"]
    _96 = 6,
    #[doc = "7: 112 periods of DACClock"]
    _112 = 7,
    #[doc = "8: 512 periods of DACClock"]
    _512 = 8,
    #[doc = "9: 576 periods of DACClock"]
    _576 = 9,
    #[doc = "10: 640 periods of DACClock"]
    _640 = 10,
    #[doc = "11: 704 periods of DACClock"]
    _704 = 11,
    #[doc = "12: 768 periods of DACClock"]
    _768 = 12,
    #[doc = "13: 832 periods of DACClock"]
    _832 = 13,
    #[doc = "14: 896 periods of DACClock"]
    _896 = 14,
    #[doc = "15: 960 periods of DACClock"]
    _960 = 15,
    #[doc = "16: 1024 periods of DACClock"]
    _1024 = 16,
    #[doc = "17: 1088 periods of DACClock"]
    _1088 = 17,
    #[doc = "18: 1152 periods of DACClock"]
    _1152 = 18,
    #[doc = "19: 1216 periods of DACClock"]
    _1216 = 19,
    #[doc = "20: 1280 periods of DACClock"]
    _1280 = 20,
    #[doc = "21: 1344 periods of DACClock"]
    _1344 = 21,
    #[doc = "22: 1408 periods of DACClock"]
    _1408 = 22,
    #[doc = "23: 1472 periods of DACClock"]
    _1472 = 23,
    #[doc = "24: 1536 periods of DACClock"]
    _1536 = 24,
    #[doc = "25: 1600 periods of DACClock"]
    _1600 = 25,
    #[doc = "26: 1664 periods of DACClock"]
    _1664 = 26,
    #[doc = "27: 1728 periods of DACClock"]
    _1728 = 27,
    #[doc = "28: 1792 periods of DACClock"]
    _1792 = 28,
    #[doc = "29: 1856 periods of DACClock"]
    _1856 = 29,
    #[doc = "30: 1920 periods of DACClock"]
    _1920 = 30,
    #[doc = "31: 1984 periods of DACClock"]
    _1984 = 31,
    #[doc = "32: 2048 periods of DACClock"]
    _2048 = 32,
    #[doc = "33: 2112 periods of DACClock"]
    _2112 = 33,
    #[doc = "34: 2176 periods of DACClock"]
    _2176 = 34,
    #[doc = "35: 2240 periods of DACClock"]
    _2240 = 35,
    #[doc = "36: 2304 periods of DACClock"]
    _2304 = 36,
    #[doc = "37: 2368 periods of DACClock"]
    _2368 = 37,
    #[doc = "38: 2432 periods of DACClock"]
    _2432 = 38,
    #[doc = "39: 2496 periods of DACClock"]
    _2496 = 39,
    #[doc = "40: 2560 periods of DACClock"]
    _2560 = 40,
    #[doc = "41: 2624 periods of DACClock"]
    _2624 = 41,
    #[doc = "42: 2688 periods of DACClock"]
    _2688 = 42,
    #[doc = "43: 2752 periods of DACClock"]
    _2752 = 43,
    #[doc = "44: 2816 periods of DACClock"]
    _2816 = 44,
    #[doc = "45: 2880 periods of DACClock"]
    _2880 = 45,
    #[doc = "46: 2944 periods of DACClock"]
    _2944 = 46,
    #[doc = "47: 3008 periods of DACClock"]
    _3008 = 47,
    #[doc = "48: 3072 periods of DACClock"]
    _3072 = 48,
    #[doc = "49: 3136 periods of DACClock"]
    _3136 = 49,
    #[doc = "50: 3200 periods of DACClock"]
    _3200 = 50,
    #[doc = "51: 3264 periods of DACClock"]
    _3264 = 51,
    #[doc = "52: 3328 periods of DACClock"]
    _3328 = 52,
    #[doc = "53: 3392 periods of DACClock"]
    _3392 = 53,
    #[doc = "54: 3456 periods of DACClock"]
    _3456 = 54,
    #[doc = "55: 3520 periods of DACClock"]
    _3520 = 55,
    #[doc = "56: 3584 periods of DACClock"]
    _3584 = 56,
    #[doc = "57: 3648 periods of DACClock"]
    _3648 = 57,
    #[doc = "58: 3712 periods of DACClock"]
    _3712 = 58,
    #[doc = "59: 3776 periods of DACClock"]
    _3776 = 59,
    #[doc = "60: 3840 periods of DACClock"]
    _3840 = 60,
    #[doc = "61: 3904 periods of DACClock"]
    _3904 = 61,
    #[doc = "62: 3968 periods of DACClock"]
    _3968 = 62,
    #[doc = "63: 4032 periods of DACClock"]
    _4032 = 63,
}
impl From<STARTUP_A> for u8 {
    #[inline(always)]
    fn from(variant: STARTUP_A) -> Self {
        variant as _
    }
}
impl STARTUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> STARTUP_A {
        match self.bits {
            0 => STARTUP_A::_0,
            1 => STARTUP_A::_8,
            2 => STARTUP_A::_16,
            3 => STARTUP_A::_24,
            4 => STARTUP_A::_64,
            5 => STARTUP_A::_80,
            6 => STARTUP_A::_96,
            7 => STARTUP_A::_112,
            8 => STARTUP_A::_512,
            9 => STARTUP_A::_576,
            10 => STARTUP_A::_640,
            11 => STARTUP_A::_704,
            12 => STARTUP_A::_768,
            13 => STARTUP_A::_832,
            14 => STARTUP_A::_896,
            15 => STARTUP_A::_960,
            16 => STARTUP_A::_1024,
            17 => STARTUP_A::_1088,
            18 => STARTUP_A::_1152,
            19 => STARTUP_A::_1216,
            20 => STARTUP_A::_1280,
            21 => STARTUP_A::_1344,
            22 => STARTUP_A::_1408,
            23 => STARTUP_A::_1472,
            24 => STARTUP_A::_1536,
            25 => STARTUP_A::_1600,
            26 => STARTUP_A::_1664,
            27 => STARTUP_A::_1728,
            28 => STARTUP_A::_1792,
            29 => STARTUP_A::_1856,
            30 => STARTUP_A::_1920,
            31 => STARTUP_A::_1984,
            32 => STARTUP_A::_2048,
            33 => STARTUP_A::_2112,
            34 => STARTUP_A::_2176,
            35 => STARTUP_A::_2240,
            36 => STARTUP_A::_2304,
            37 => STARTUP_A::_2368,
            38 => STARTUP_A::_2432,
            39 => STARTUP_A::_2496,
            40 => STARTUP_A::_2560,
            41 => STARTUP_A::_2624,
            42 => STARTUP_A::_2688,
            43 => STARTUP_A::_2752,
            44 => STARTUP_A::_2816,
            45 => STARTUP_A::_2880,
            46 => STARTUP_A::_2944,
            47 => STARTUP_A::_3008,
            48 => STARTUP_A::_3072,
            49 => STARTUP_A::_3136,
            50 => STARTUP_A::_3200,
            51 => STARTUP_A::_3264,
            52 => STARTUP_A::_3328,
            53 => STARTUP_A::_3392,
            54 => STARTUP_A::_3456,
            55 => STARTUP_A::_3520,
            56 => STARTUP_A::_3584,
            57 => STARTUP_A::_3648,
            58 => STARTUP_A::_3712,
            59 => STARTUP_A::_3776,
            60 => STARTUP_A::_3840,
            61 => STARTUP_A::_3904,
            62 => STARTUP_A::_3968,
            63 => STARTUP_A::_4032,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == STARTUP_A::_0
    }
    #[doc = "Checks if the value of the field is `_8`"]
    #[inline(always)]
    pub fn is_8(&self) -> bool {
        *self == STARTUP_A::_8
    }
    #[doc = "Checks if the value of the field is `_16`"]
    #[inline(always)]
    pub fn is_16(&self) -> bool {
        *self == STARTUP_A::_16
    }
    #[doc = "Checks if the value of the field is `_24`"]
    #[inline(always)]
    pub fn is_24(&self) -> bool {
        *self == STARTUP_A::_24
    }
    #[doc = "Checks if the value of the field is `_64`"]
    #[inline(always)]
    pub fn is_64(&self) -> bool {
        *self == STARTUP_A::_64
    }
    #[doc = "Checks if the value of the field is `_80`"]
    #[inline(always)]
    pub fn is_80(&self) -> bool {
        *self == STARTUP_A::_80
    }
    #[doc = "Checks if the value of the field is `_96`"]
    #[inline(always)]
    pub fn is_96(&self) -> bool {
        *self == STARTUP_A::_96
    }
    #[doc = "Checks if the value of the field is `_112`"]
    #[inline(always)]
    pub fn is_112(&self) -> bool {
        *self == STARTUP_A::_112
    }
    #[doc = "Checks if the value of the field is `_512`"]
    #[inline(always)]
    pub fn is_512(&self) -> bool {
        *self == STARTUP_A::_512
    }
    #[doc = "Checks if the value of the field is `_576`"]
    #[inline(always)]
    pub fn is_576(&self) -> bool {
        *self == STARTUP_A::_576
    }
    #[doc = "Checks if the value of the field is `_640`"]
    #[inline(always)]
    pub fn is_640(&self) -> bool {
        *self == STARTUP_A::_640
    }
    #[doc = "Checks if the value of the field is `_704`"]
    #[inline(always)]
    pub fn is_704(&self) -> bool {
        *self == STARTUP_A::_704
    }
    #[doc = "Checks if the value of the field is `_768`"]
    #[inline(always)]
    pub fn is_768(&self) -> bool {
        *self == STARTUP_A::_768
    }
    #[doc = "Checks if the value of the field is `_832`"]
    #[inline(always)]
    pub fn is_832(&self) -> bool {
        *self == STARTUP_A::_832
    }
    #[doc = "Checks if the value of the field is `_896`"]
    #[inline(always)]
    pub fn is_896(&self) -> bool {
        *self == STARTUP_A::_896
    }
    #[doc = "Checks if the value of the field is `_960`"]
    #[inline(always)]
    pub fn is_960(&self) -> bool {
        *self == STARTUP_A::_960
    }
    #[doc = "Checks if the value of the field is `_1024`"]
    #[inline(always)]
    pub fn is_1024(&self) -> bool {
        *self == STARTUP_A::_1024
    }
    #[doc = "Checks if the value of the field is `_1088`"]
    #[inline(always)]
    pub fn is_1088(&self) -> bool {
        *self == STARTUP_A::_1088
    }
    #[doc = "Checks if the value of the field is `_1152`"]
    #[inline(always)]
    pub fn is_1152(&self) -> bool {
        *self == STARTUP_A::_1152
    }
    #[doc = "Checks if the value of the field is `_1216`"]
    #[inline(always)]
    pub fn is_1216(&self) -> bool {
        *self == STARTUP_A::_1216
    }
    #[doc = "Checks if the value of the field is `_1280`"]
    #[inline(always)]
    pub fn is_1280(&self) -> bool {
        *self == STARTUP_A::_1280
    }
    #[doc = "Checks if the value of the field is `_1344`"]
    #[inline(always)]
    pub fn is_1344(&self) -> bool {
        *self == STARTUP_A::_1344
    }
    #[doc = "Checks if the value of the field is `_1408`"]
    #[inline(always)]
    pub fn is_1408(&self) -> bool {
        *self == STARTUP_A::_1408
    }
    #[doc = "Checks if the value of the field is `_1472`"]
    #[inline(always)]
    pub fn is_1472(&self) -> bool {
        *self == STARTUP_A::_1472
    }
    #[doc = "Checks if the value of the field is `_1536`"]
    #[inline(always)]
    pub fn is_1536(&self) -> bool {
        *self == STARTUP_A::_1536
    }
    #[doc = "Checks if the value of the field is `_1600`"]
    #[inline(always)]
    pub fn is_1600(&self) -> bool {
        *self == STARTUP_A::_1600
    }
    #[doc = "Checks if the value of the field is `_1664`"]
    #[inline(always)]
    pub fn is_1664(&self) -> bool {
        *self == STARTUP_A::_1664
    }
    #[doc = "Checks if the value of the field is `_1728`"]
    #[inline(always)]
    pub fn is_1728(&self) -> bool {
        *self == STARTUP_A::_1728
    }
    #[doc = "Checks if the value of the field is `_1792`"]
    #[inline(always)]
    pub fn is_1792(&self) -> bool {
        *self == STARTUP_A::_1792
    }
    #[doc = "Checks if the value of the field is `_1856`"]
    #[inline(always)]
    pub fn is_1856(&self) -> bool {
        *self == STARTUP_A::_1856
    }
    #[doc = "Checks if the value of the field is `_1920`"]
    #[inline(always)]
    pub fn is_1920(&self) -> bool {
        *self == STARTUP_A::_1920
    }
    #[doc = "Checks if the value of the field is `_1984`"]
    #[inline(always)]
    pub fn is_1984(&self) -> bool {
        *self == STARTUP_A::_1984
    }
    #[doc = "Checks if the value of the field is `_2048`"]
    #[inline(always)]
    pub fn is_2048(&self) -> bool {
        *self == STARTUP_A::_2048
    }
    #[doc = "Checks if the value of the field is `_2112`"]
    #[inline(always)]
    pub fn is_2112(&self) -> bool {
        *self == STARTUP_A::_2112
    }
    #[doc = "Checks if the value of the field is `_2176`"]
    #[inline(always)]
    pub fn is_2176(&self) -> bool {
        *self == STARTUP_A::_2176
    }
    #[doc = "Checks if the value of the field is `_2240`"]
    #[inline(always)]
    pub fn is_2240(&self) -> bool {
        *self == STARTUP_A::_2240
    }
    #[doc = "Checks if the value of the field is `_2304`"]
    #[inline(always)]
    pub fn is_2304(&self) -> bool {
        *self == STARTUP_A::_2304
    }
    #[doc = "Checks if the value of the field is `_2368`"]
    #[inline(always)]
    pub fn is_2368(&self) -> bool {
        *self == STARTUP_A::_2368
    }
    #[doc = "Checks if the value of the field is `_2432`"]
    #[inline(always)]
    pub fn is_2432(&self) -> bool {
        *self == STARTUP_A::_2432
    }
    #[doc = "Checks if the value of the field is `_2496`"]
    #[inline(always)]
    pub fn is_2496(&self) -> bool {
        *self == STARTUP_A::_2496
    }
    #[doc = "Checks if the value of the field is `_2560`"]
    #[inline(always)]
    pub fn is_2560(&self) -> bool {
        *self == STARTUP_A::_2560
    }
    #[doc = "Checks if the value of the field is `_2624`"]
    #[inline(always)]
    pub fn is_2624(&self) -> bool {
        *self == STARTUP_A::_2624
    }
    #[doc = "Checks if the value of the field is `_2688`"]
    #[inline(always)]
    pub fn is_2688(&self) -> bool {
        *self == STARTUP_A::_2688
    }
    #[doc = "Checks if the value of the field is `_2752`"]
    #[inline(always)]
    pub fn is_2752(&self) -> bool {
        *self == STARTUP_A::_2752
    }
    #[doc = "Checks if the value of the field is `_2816`"]
    #[inline(always)]
    pub fn is_2816(&self) -> bool {
        *self == STARTUP_A::_2816
    }
    #[doc = "Checks if the value of the field is `_2880`"]
    #[inline(always)]
    pub fn is_2880(&self) -> bool {
        *self == STARTUP_A::_2880
    }
    #[doc = "Checks if the value of the field is `_2944`"]
    #[inline(always)]
    pub fn is_2944(&self) -> bool {
        *self == STARTUP_A::_2944
    }
    #[doc = "Checks if the value of the field is `_3008`"]
    #[inline(always)]
    pub fn is_3008(&self) -> bool {
        *self == STARTUP_A::_3008
    }
    #[doc = "Checks if the value of the field is `_3072`"]
    #[inline(always)]
    pub fn is_3072(&self) -> bool {
        *self == STARTUP_A::_3072
    }
    #[doc = "Checks if the value of the field is `_3136`"]
    #[inline(always)]
    pub fn is_3136(&self) -> bool {
        *self == STARTUP_A::_3136
    }
    #[doc = "Checks if the value of the field is `_3200`"]
    #[inline(always)]
    pub fn is_3200(&self) -> bool {
        *self == STARTUP_A::_3200
    }
    #[doc = "Checks if the value of the field is `_3264`"]
    #[inline(always)]
    pub fn is_3264(&self) -> bool {
        *self == STARTUP_A::_3264
    }
    #[doc = "Checks if the value of the field is `_3328`"]
    #[inline(always)]
    pub fn is_3328(&self) -> bool {
        *self == STARTUP_A::_3328
    }
    #[doc = "Checks if the value of the field is `_3392`"]
    #[inline(always)]
    pub fn is_3392(&self) -> bool {
        *self == STARTUP_A::_3392
    }
    #[doc = "Checks if the value of the field is `_3456`"]
    #[inline(always)]
    pub fn is_3456(&self) -> bool {
        *self == STARTUP_A::_3456
    }
    #[doc = "Checks if the value of the field is `_3520`"]
    #[inline(always)]
    pub fn is_3520(&self) -> bool {
        *self == STARTUP_A::_3520
    }
    #[doc = "Checks if the value of the field is `_3584`"]
    #[inline(always)]
    pub fn is_3584(&self) -> bool {
        *self == STARTUP_A::_3584
    }
    #[doc = "Checks if the value of the field is `_3648`"]
    #[inline(always)]
    pub fn is_3648(&self) -> bool {
        *self == STARTUP_A::_3648
    }
    #[doc = "Checks if the value of the field is `_3712`"]
    #[inline(always)]
    pub fn is_3712(&self) -> bool {
        *self == STARTUP_A::_3712
    }
    #[doc = "Checks if the value of the field is `_3776`"]
    #[inline(always)]
    pub fn is_3776(&self) -> bool {
        *self == STARTUP_A::_3776
    }
    #[doc = "Checks if the value of the field is `_3840`"]
    #[inline(always)]
    pub fn is_3840(&self) -> bool {
        *self == STARTUP_A::_3840
    }
    #[doc = "Checks if the value of the field is `_3904`"]
    #[inline(always)]
    pub fn is_3904(&self) -> bool {
        *self == STARTUP_A::_3904
    }
    #[doc = "Checks if the value of the field is `_3968`"]
    #[inline(always)]
    pub fn is_3968(&self) -> bool {
        *self == STARTUP_A::_3968
    }
    #[doc = "Checks if the value of the field is `_4032`"]
    #[inline(always)]
    pub fn is_4032(&self) -> bool {
        *self == STARTUP_A::_4032
    }
}
#[doc = "Field `STARTUP` writer - Startup Time Selection"]
pub type STARTUP_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u32, MR_SPEC, u8, STARTUP_A, 6, O>;
impl<'a, const O: u8> STARTUP_W<'a, O> {
    #[doc = "0 periods of DACClock"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(STARTUP_A::_0)
    }
    #[doc = "8 periods of DACClock"]
    #[inline(always)]
    pub fn _8(self) -> &'a mut W {
        self.variant(STARTUP_A::_8)
    }
    #[doc = "16 periods of DACClock"]
    #[inline(always)]
    pub fn _16(self) -> &'a mut W {
        self.variant(STARTUP_A::_16)
    }
    #[doc = "24 periods of DACClock"]
    #[inline(always)]
    pub fn _24(self) -> &'a mut W {
        self.variant(STARTUP_A::_24)
    }
    #[doc = "64 periods of DACClock"]
    #[inline(always)]
    pub fn _64(self) -> &'a mut W {
        self.variant(STARTUP_A::_64)
    }
    #[doc = "80 periods of DACClock"]
    #[inline(always)]
    pub fn _80(self) -> &'a mut W {
        self.variant(STARTUP_A::_80)
    }
    #[doc = "96 periods of DACClock"]
    #[inline(always)]
    pub fn _96(self) -> &'a mut W {
        self.variant(STARTUP_A::_96)
    }
    #[doc = "112 periods of DACClock"]
    #[inline(always)]
    pub fn _112(self) -> &'a mut W {
        self.variant(STARTUP_A::_112)
    }
    #[doc = "512 periods of DACClock"]
    #[inline(always)]
    pub fn _512(self) -> &'a mut W {
        self.variant(STARTUP_A::_512)
    }
    #[doc = "576 periods of DACClock"]
    #[inline(always)]
    pub fn _576(self) -> &'a mut W {
        self.variant(STARTUP_A::_576)
    }
    #[doc = "640 periods of DACClock"]
    #[inline(always)]
    pub fn _640(self) -> &'a mut W {
        self.variant(STARTUP_A::_640)
    }
    #[doc = "704 periods of DACClock"]
    #[inline(always)]
    pub fn _704(self) -> &'a mut W {
        self.variant(STARTUP_A::_704)
    }
    #[doc = "768 periods of DACClock"]
    #[inline(always)]
    pub fn _768(self) -> &'a mut W {
        self.variant(STARTUP_A::_768)
    }
    #[doc = "832 periods of DACClock"]
    #[inline(always)]
    pub fn _832(self) -> &'a mut W {
        self.variant(STARTUP_A::_832)
    }
    #[doc = "896 periods of DACClock"]
    #[inline(always)]
    pub fn _896(self) -> &'a mut W {
        self.variant(STARTUP_A::_896)
    }
    #[doc = "960 periods of DACClock"]
    #[inline(always)]
    pub fn _960(self) -> &'a mut W {
        self.variant(STARTUP_A::_960)
    }
    #[doc = "1024 periods of DACClock"]
    #[inline(always)]
    pub fn _1024(self) -> &'a mut W {
        self.variant(STARTUP_A::_1024)
    }
    #[doc = "1088 periods of DACClock"]
    #[inline(always)]
    pub fn _1088(self) -> &'a mut W {
        self.variant(STARTUP_A::_1088)
    }
    #[doc = "1152 periods of DACClock"]
    #[inline(always)]
    pub fn _1152(self) -> &'a mut W {
        self.variant(STARTUP_A::_1152)
    }
    #[doc = "1216 periods of DACClock"]
    #[inline(always)]
    pub fn _1216(self) -> &'a mut W {
        self.variant(STARTUP_A::_1216)
    }
    #[doc = "1280 periods of DACClock"]
    #[inline(always)]
    pub fn _1280(self) -> &'a mut W {
        self.variant(STARTUP_A::_1280)
    }
    #[doc = "1344 periods of DACClock"]
    #[inline(always)]
    pub fn _1344(self) -> &'a mut W {
        self.variant(STARTUP_A::_1344)
    }
    #[doc = "1408 periods of DACClock"]
    #[inline(always)]
    pub fn _1408(self) -> &'a mut W {
        self.variant(STARTUP_A::_1408)
    }
    #[doc = "1472 periods of DACClock"]
    #[inline(always)]
    pub fn _1472(self) -> &'a mut W {
        self.variant(STARTUP_A::_1472)
    }
    #[doc = "1536 periods of DACClock"]
    #[inline(always)]
    pub fn _1536(self) -> &'a mut W {
        self.variant(STARTUP_A::_1536)
    }
    #[doc = "1600 periods of DACClock"]
    #[inline(always)]
    pub fn _1600(self) -> &'a mut W {
        self.variant(STARTUP_A::_1600)
    }
    #[doc = "1664 periods of DACClock"]
    #[inline(always)]
    pub fn _1664(self) -> &'a mut W {
        self.variant(STARTUP_A::_1664)
    }
    #[doc = "1728 periods of DACClock"]
    #[inline(always)]
    pub fn _1728(self) -> &'a mut W {
        self.variant(STARTUP_A::_1728)
    }
    #[doc = "1792 periods of DACClock"]
    #[inline(always)]
    pub fn _1792(self) -> &'a mut W {
        self.variant(STARTUP_A::_1792)
    }
    #[doc = "1856 periods of DACClock"]
    #[inline(always)]
    pub fn _1856(self) -> &'a mut W {
        self.variant(STARTUP_A::_1856)
    }
    #[doc = "1920 periods of DACClock"]
    #[inline(always)]
    pub fn _1920(self) -> &'a mut W {
        self.variant(STARTUP_A::_1920)
    }
    #[doc = "1984 periods of DACClock"]
    #[inline(always)]
    pub fn _1984(self) -> &'a mut W {
        self.variant(STARTUP_A::_1984)
    }
    #[doc = "2048 periods of DACClock"]
    #[inline(always)]
    pub fn _2048(self) -> &'a mut W {
        self.variant(STARTUP_A::_2048)
    }
    #[doc = "2112 periods of DACClock"]
    #[inline(always)]
    pub fn _2112(self) -> &'a mut W {
        self.variant(STARTUP_A::_2112)
    }
    #[doc = "2176 periods of DACClock"]
    #[inline(always)]
    pub fn _2176(self) -> &'a mut W {
        self.variant(STARTUP_A::_2176)
    }
    #[doc = "2240 periods of DACClock"]
    #[inline(always)]
    pub fn _2240(self) -> &'a mut W {
        self.variant(STARTUP_A::_2240)
    }
    #[doc = "2304 periods of DACClock"]
    #[inline(always)]
    pub fn _2304(self) -> &'a mut W {
        self.variant(STARTUP_A::_2304)
    }
    #[doc = "2368 periods of DACClock"]
    #[inline(always)]
    pub fn _2368(self) -> &'a mut W {
        self.variant(STARTUP_A::_2368)
    }
    #[doc = "2432 periods of DACClock"]
    #[inline(always)]
    pub fn _2432(self) -> &'a mut W {
        self.variant(STARTUP_A::_2432)
    }
    #[doc = "2496 periods of DACClock"]
    #[inline(always)]
    pub fn _2496(self) -> &'a mut W {
        self.variant(STARTUP_A::_2496)
    }
    #[doc = "2560 periods of DACClock"]
    #[inline(always)]
    pub fn _2560(self) -> &'a mut W {
        self.variant(STARTUP_A::_2560)
    }
    #[doc = "2624 periods of DACClock"]
    #[inline(always)]
    pub fn _2624(self) -> &'a mut W {
        self.variant(STARTUP_A::_2624)
    }
    #[doc = "2688 periods of DACClock"]
    #[inline(always)]
    pub fn _2688(self) -> &'a mut W {
        self.variant(STARTUP_A::_2688)
    }
    #[doc = "2752 periods of DACClock"]
    #[inline(always)]
    pub fn _2752(self) -> &'a mut W {
        self.variant(STARTUP_A::_2752)
    }
    #[doc = "2816 periods of DACClock"]
    #[inline(always)]
    pub fn _2816(self) -> &'a mut W {
        self.variant(STARTUP_A::_2816)
    }
    #[doc = "2880 periods of DACClock"]
    #[inline(always)]
    pub fn _2880(self) -> &'a mut W {
        self.variant(STARTUP_A::_2880)
    }
    #[doc = "2944 periods of DACClock"]
    #[inline(always)]
    pub fn _2944(self) -> &'a mut W {
        self.variant(STARTUP_A::_2944)
    }
    #[doc = "3008 periods of DACClock"]
    #[inline(always)]
    pub fn _3008(self) -> &'a mut W {
        self.variant(STARTUP_A::_3008)
    }
    #[doc = "3072 periods of DACClock"]
    #[inline(always)]
    pub fn _3072(self) -> &'a mut W {
        self.variant(STARTUP_A::_3072)
    }
    #[doc = "3136 periods of DACClock"]
    #[inline(always)]
    pub fn _3136(self) -> &'a mut W {
        self.variant(STARTUP_A::_3136)
    }
    #[doc = "3200 periods of DACClock"]
    #[inline(always)]
    pub fn _3200(self) -> &'a mut W {
        self.variant(STARTUP_A::_3200)
    }
    #[doc = "3264 periods of DACClock"]
    #[inline(always)]
    pub fn _3264(self) -> &'a mut W {
        self.variant(STARTUP_A::_3264)
    }
    #[doc = "3328 periods of DACClock"]
    #[inline(always)]
    pub fn _3328(self) -> &'a mut W {
        self.variant(STARTUP_A::_3328)
    }
    #[doc = "3392 periods of DACClock"]
    #[inline(always)]
    pub fn _3392(self) -> &'a mut W {
        self.variant(STARTUP_A::_3392)
    }
    #[doc = "3456 periods of DACClock"]
    #[inline(always)]
    pub fn _3456(self) -> &'a mut W {
        self.variant(STARTUP_A::_3456)
    }
    #[doc = "3520 periods of DACClock"]
    #[inline(always)]
    pub fn _3520(self) -> &'a mut W {
        self.variant(STARTUP_A::_3520)
    }
    #[doc = "3584 periods of DACClock"]
    #[inline(always)]
    pub fn _3584(self) -> &'a mut W {
        self.variant(STARTUP_A::_3584)
    }
    #[doc = "3648 periods of DACClock"]
    #[inline(always)]
    pub fn _3648(self) -> &'a mut W {
        self.variant(STARTUP_A::_3648)
    }
    #[doc = "3712 periods of DACClock"]
    #[inline(always)]
    pub fn _3712(self) -> &'a mut W {
        self.variant(STARTUP_A::_3712)
    }
    #[doc = "3776 periods of DACClock"]
    #[inline(always)]
    pub fn _3776(self) -> &'a mut W {
        self.variant(STARTUP_A::_3776)
    }
    #[doc = "3840 periods of DACClock"]
    #[inline(always)]
    pub fn _3840(self) -> &'a mut W {
        self.variant(STARTUP_A::_3840)
    }
    #[doc = "3904 periods of DACClock"]
    #[inline(always)]
    pub fn _3904(self) -> &'a mut W {
        self.variant(STARTUP_A::_3904)
    }
    #[doc = "3968 periods of DACClock"]
    #[inline(always)]
    pub fn _3968(self) -> &'a mut W {
        self.variant(STARTUP_A::_3968)
    }
    #[doc = "4032 periods of DACClock"]
    #[inline(always)]
    pub fn _4032(self) -> &'a mut W {
        self.variant(STARTUP_A::_4032)
    }
}
impl R {
    #[doc = "Bit 0 - Trigger Enable"]
    #[inline(always)]
    pub fn trgen(&self) -> TRGEN_R {
        TRGEN_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bits 1:3 - Trigger Selection"]
    #[inline(always)]
    pub fn trgsel(&self) -> TRGSEL_R {
        TRGSEL_R::new(((self.bits >> 1) & 7) as u8)
    }
    #[doc = "Bit 4 - Word Transfer"]
    #[inline(always)]
    pub fn word(&self) -> WORD_R {
        WORD_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Sleep Mode"]
    #[inline(always)]
    pub fn sleep(&self) -> SLEEP_R {
        SLEEP_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Fast Wake-up Mode"]
    #[inline(always)]
    pub fn fastwkup(&self) -> FASTWKUP_R {
        FASTWKUP_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bits 8:15 - Automatic Refresh Period"]
    #[inline(always)]
    pub fn refresh(&self) -> REFRESH_R {
        REFRESH_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:17 - User Channel Selection"]
    #[inline(always)]
    pub fn user_sel(&self) -> USER_SEL_R {
        USER_SEL_R::new(((self.bits >> 16) & 3) as u8)
    }
    #[doc = "Bit 20 - Tag Selection Mode"]
    #[inline(always)]
    pub fn tag(&self) -> TAG_R {
        TAG_R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 21 - Max Speed Mode"]
    #[inline(always)]
    pub fn maxs(&self) -> MAXS_R {
        MAXS_R::new(((self.bits >> 21) & 1) != 0)
    }
    #[doc = "Bits 24:29 - Startup Time Selection"]
    #[inline(always)]
    pub fn startup(&self) -> STARTUP_R {
        STARTUP_R::new(((self.bits >> 24) & 0x3f) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Trigger Enable"]
    #[inline(always)]
    #[must_use]
    pub fn trgen(&mut self) -> TRGEN_W<0> {
        TRGEN_W::new(self)
    }
    #[doc = "Bits 1:3 - Trigger Selection"]
    #[inline(always)]
    #[must_use]
    pub fn trgsel(&mut self) -> TRGSEL_W<1> {
        TRGSEL_W::new(self)
    }
    #[doc = "Bit 4 - Word Transfer"]
    #[inline(always)]
    #[must_use]
    pub fn word(&mut self) -> WORD_W<4> {
        WORD_W::new(self)
    }
    #[doc = "Bit 5 - Sleep Mode"]
    #[inline(always)]
    #[must_use]
    pub fn sleep(&mut self) -> SLEEP_W<5> {
        SLEEP_W::new(self)
    }
    #[doc = "Bit 6 - Fast Wake-up Mode"]
    #[inline(always)]
    #[must_use]
    pub fn fastwkup(&mut self) -> FASTWKUP_W<6> {
        FASTWKUP_W::new(self)
    }
    #[doc = "Bits 8:15 - Automatic Refresh Period"]
    #[inline(always)]
    #[must_use]
    pub fn refresh(&mut self) -> REFRESH_W<8> {
        REFRESH_W::new(self)
    }
    #[doc = "Bits 16:17 - User Channel Selection"]
    #[inline(always)]
    #[must_use]
    pub fn user_sel(&mut self) -> USER_SEL_W<16> {
        USER_SEL_W::new(self)
    }
    #[doc = "Bit 20 - Tag Selection Mode"]
    #[inline(always)]
    #[must_use]
    pub fn tag(&mut self) -> TAG_W<20> {
        TAG_W::new(self)
    }
    #[doc = "Bit 21 - Max Speed Mode"]
    #[inline(always)]
    #[must_use]
    pub fn maxs(&mut self) -> MAXS_W<21> {
        MAXS_W::new(self)
    }
    #[doc = "Bits 24:29 - Startup Time Selection"]
    #[inline(always)]
    #[must_use]
    pub fn startup(&mut self) -> STARTUP_W<24> {
        STARTUP_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 = "Mode Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [mr](index.html) module"]
pub struct MR_SPEC;
impl crate::RegisterSpec for MR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [mr::R](R) reader structure"]
impl crate::Readable for MR_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [mr::W](W) writer structure"]
impl crate::Writable for MR_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 MR to value 0"]
impl crate::Resettable for MR_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}