ra2e1 0.2.0

Peripheral access API for ra2e1 microcontrollers (generated using svd2rust)
Documentation
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
#[doc = "Register `CTSUCRA` reader"]
pub struct R(crate::R<CTSUCRA_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<CTSUCRA_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<CTSUCRA_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<CTSUCRA_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `CTSUCRA` writer"]
pub struct W(crate::W<CTSUCRA_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<CTSUCRA_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<CTSUCRA_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<CTSUCRA_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Field `STRT` reader - CTSU Measurement Operation Start"]
pub type STRT_R = crate::BitReader<STRT_A>;
#[doc = "CTSU Measurement Operation Start\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum STRT_A {
    #[doc = "0: Stop measurement operation"]
    _0 = 0,
    #[doc = "1: Start measurement operation"]
    _1 = 1,
}
impl From<STRT_A> for bool {
    #[inline(always)]
    fn from(variant: STRT_A) -> Self {
        variant as u8 != 0
    }
}
impl STRT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> STRT_A {
        match self.bits {
            false => STRT_A::_0,
            true => STRT_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == STRT_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == STRT_A::_1
    }
}
#[doc = "Field `STRT` writer - CTSU Measurement Operation Start"]
pub type STRT_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, STRT_A, O>;
impl<'a, const O: u8> STRT_W<'a, O> {
    #[doc = "Stop measurement operation"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(STRT_A::_0)
    }
    #[doc = "Start measurement operation"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(STRT_A::_1)
    }
}
#[doc = "Field `CAP` reader - CTSU Measurement Operation Start Trigger Select"]
pub type CAP_R = crate::BitReader<CAP_A>;
#[doc = "CTSU Measurement Operation Start Trigger Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CAP_A {
    #[doc = "0: Software trigger"]
    _0 = 0,
    #[doc = "1: External trigger"]
    _1 = 1,
}
impl From<CAP_A> for bool {
    #[inline(always)]
    fn from(variant: CAP_A) -> Self {
        variant as u8 != 0
    }
}
impl CAP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CAP_A {
        match self.bits {
            false => CAP_A::_0,
            true => CAP_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CAP_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CAP_A::_1
    }
}
#[doc = "Field `CAP` writer - CTSU Measurement Operation Start Trigger Select"]
pub type CAP_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, CAP_A, O>;
impl<'a, const O: u8> CAP_W<'a, O> {
    #[doc = "Software trigger"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(CAP_A::_0)
    }
    #[doc = "External trigger"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(CAP_A::_1)
    }
}
#[doc = "Field `SNZ` reader - CTSU Wait State Power-Saving Enable"]
pub type SNZ_R = crate::BitReader<SNZ_A>;
#[doc = "CTSU Wait State Power-Saving Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SNZ_A {
    #[doc = "0: Disable power-saving function during wait state"]
    _0 = 0,
    #[doc = "1: Enable power-saving function during wait state"]
    _1 = 1,
}
impl From<SNZ_A> for bool {
    #[inline(always)]
    fn from(variant: SNZ_A) -> Self {
        variant as u8 != 0
    }
}
impl SNZ_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SNZ_A {
        match self.bits {
            false => SNZ_A::_0,
            true => SNZ_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == SNZ_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == SNZ_A::_1
    }
}
#[doc = "Field `SNZ` writer - CTSU Wait State Power-Saving Enable"]
pub type SNZ_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, SNZ_A, O>;
impl<'a, const O: u8> SNZ_W<'a, O> {
    #[doc = "Disable power-saving function during wait state"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(SNZ_A::_0)
    }
    #[doc = "Enable power-saving function during wait state"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(SNZ_A::_1)
    }
}
#[doc = "Field `CFCON` reader - CTSU CFC Power On Control"]
pub type CFCON_R = crate::BitReader<CFCON_A>;
#[doc = "CTSU CFC Power On Control\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CFCON_A {
    #[doc = "0: CFC power off"]
    _0 = 0,
    #[doc = "1: CFC power on"]
    _1 = 1,
}
impl From<CFCON_A> for bool {
    #[inline(always)]
    fn from(variant: CFCON_A) -> Self {
        variant as u8 != 0
    }
}
impl CFCON_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CFCON_A {
        match self.bits {
            false => CFCON_A::_0,
            true => CFCON_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CFCON_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CFCON_A::_1
    }
}
#[doc = "Field `CFCON` writer - CTSU CFC Power On Control"]
pub type CFCON_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, CFCON_A, O>;
impl<'a, const O: u8> CFCON_W<'a, O> {
    #[doc = "CFC power off"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(CFCON_A::_0)
    }
    #[doc = "CFC power on"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(CFCON_A::_1)
    }
}
#[doc = "Field `INIT` writer - CTSU Control Block Initialization"]
pub type INIT_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, bool, O>;
#[doc = "Field `PUMPON` reader - CTSU Boost Circuit Control"]
pub type PUMPON_R = crate::BitReader<PUMPON_A>;
#[doc = "CTSU Boost Circuit Control\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PUMPON_A {
    #[doc = "0: Boost circuit off"]
    _0 = 0,
    #[doc = "1: Boost circuit on"]
    _1 = 1,
}
impl From<PUMPON_A> for bool {
    #[inline(always)]
    fn from(variant: PUMPON_A) -> Self {
        variant as u8 != 0
    }
}
impl PUMPON_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PUMPON_A {
        match self.bits {
            false => PUMPON_A::_0,
            true => PUMPON_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == PUMPON_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == PUMPON_A::_1
    }
}
#[doc = "Field `PUMPON` writer - CTSU Boost Circuit Control"]
pub type PUMPON_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, PUMPON_A, O>;
impl<'a, const O: u8> PUMPON_W<'a, O> {
    #[doc = "Boost circuit off"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(PUMPON_A::_0)
    }
    #[doc = "Boost circuit on"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(PUMPON_A::_1)
    }
}
#[doc = "Field `TXVSEL` reader - CTSU Transmission Power Supply Selection"]
pub type TXVSEL_R = crate::FieldReader<u8, TXVSEL_A>;
#[doc = "CTSU Transmission Power Supply Selection\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum TXVSEL_A {
    #[doc = "0: Selecting VCC as the power supply for the transmit pins of mutual capacitance method."]
    _00 = 0,
    #[doc = "1: Selecting VCC as the power supply for the transmit pins of the mutual capacitance method. In addition, noise is reduced during GPIO operation. (Recommended)"]
    _01 = 1,
    #[doc = "2: Select VCC as the power source for the transmitter pins used as the active shield."]
    _10 = 2,
    #[doc = "3: Setting prohibited"]
    _11 = 3,
}
impl From<TXVSEL_A> for u8 {
    #[inline(always)]
    fn from(variant: TXVSEL_A) -> Self {
        variant as _
    }
}
impl TXVSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TXVSEL_A {
        match self.bits {
            0 => TXVSEL_A::_00,
            1 => TXVSEL_A::_01,
            2 => TXVSEL_A::_10,
            3 => TXVSEL_A::_11,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_00`"]
    #[inline(always)]
    pub fn is_00(&self) -> bool {
        *self == TXVSEL_A::_00
    }
    #[doc = "Checks if the value of the field is `_01`"]
    #[inline(always)]
    pub fn is_01(&self) -> bool {
        *self == TXVSEL_A::_01
    }
    #[doc = "Checks if the value of the field is `_10`"]
    #[inline(always)]
    pub fn is_10(&self) -> bool {
        *self == TXVSEL_A::_10
    }
    #[doc = "Checks if the value of the field is `_11`"]
    #[inline(always)]
    pub fn is_11(&self) -> bool {
        *self == TXVSEL_A::_11
    }
}
#[doc = "Field `TXVSEL` writer - CTSU Transmission Power Supply Selection"]
pub type TXVSEL_W<'a, const O: u8> =
    crate::FieldWriterSafe<'a, u32, CTSUCRA_SPEC, u8, TXVSEL_A, 2, O>;
impl<'a, const O: u8> TXVSEL_W<'a, O> {
    #[doc = "Selecting VCC as the power supply for the transmit pins of mutual capacitance method."]
    #[inline(always)]
    pub fn _00(self) -> &'a mut W {
        self.variant(TXVSEL_A::_00)
    }
    #[doc = "Selecting VCC as the power supply for the transmit pins of the mutual capacitance method. In addition, noise is reduced during GPIO operation. (Recommended)"]
    #[inline(always)]
    pub fn _01(self) -> &'a mut W {
        self.variant(TXVSEL_A::_01)
    }
    #[doc = "Select VCC as the power source for the transmitter pins used as the active shield."]
    #[inline(always)]
    pub fn _10(self) -> &'a mut W {
        self.variant(TXVSEL_A::_10)
    }
    #[doc = "Setting prohibited"]
    #[inline(always)]
    pub fn _11(self) -> &'a mut W {
        self.variant(TXVSEL_A::_11)
    }
}
#[doc = "Field `PON` reader - CTSU Power On Control"]
pub type PON_R = crate::BitReader<PON_A>;
#[doc = "CTSU Power On Control\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PON_A {
    #[doc = "0: Power off the CTSU"]
    _0 = 0,
    #[doc = "1: Power on the CTSU"]
    _1 = 1,
}
impl From<PON_A> for bool {
    #[inline(always)]
    fn from(variant: PON_A) -> Self {
        variant as u8 != 0
    }
}
impl PON_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PON_A {
        match self.bits {
            false => PON_A::_0,
            true => PON_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == PON_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == PON_A::_1
    }
}
#[doc = "Field `PON` writer - CTSU Power On Control"]
pub type PON_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, PON_A, O>;
impl<'a, const O: u8> PON_W<'a, O> {
    #[doc = "Power off the CTSU"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(PON_A::_0)
    }
    #[doc = "Power on the CTSU"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(PON_A::_1)
    }
}
#[doc = "Field `CSW` reader - TSCAP Pin Enable"]
pub type CSW_R = crate::BitReader<CSW_A>;
#[doc = "TSCAP Pin Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum CSW_A {
    #[doc = "0: Disable"]
    _0 = 0,
    #[doc = "1: Enable"]
    _1 = 1,
}
impl From<CSW_A> for bool {
    #[inline(always)]
    fn from(variant: CSW_A) -> Self {
        variant as u8 != 0
    }
}
impl CSW_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CSW_A {
        match self.bits {
            false => CSW_A::_0,
            true => CSW_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == CSW_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == CSW_A::_1
    }
}
#[doc = "Field `CSW` writer - TSCAP Pin Enable"]
pub type CSW_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, CSW_A, O>;
impl<'a, const O: u8> CSW_W<'a, O> {
    #[doc = "Disable"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(CSW_A::_0)
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(CSW_A::_1)
    }
}
#[doc = "Field `ATUNE0` reader - CTSU Power Supply Operating Mode Setting"]
pub type ATUNE0_R = crate::BitReader<ATUNE0_A>;
#[doc = "CTSU Power Supply Operating Mode Setting\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ATUNE0_A {
    #[doc = "0: VCC ≥ 2.4 V: Normal voltage operating mode VCC < 2.4 V: Setting prohibited"]
    _0 = 0,
    #[doc = "1: Low-voltage operating mode"]
    _1 = 1,
}
impl From<ATUNE0_A> for bool {
    #[inline(always)]
    fn from(variant: ATUNE0_A) -> Self {
        variant as u8 != 0
    }
}
impl ATUNE0_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ATUNE0_A {
        match self.bits {
            false => ATUNE0_A::_0,
            true => ATUNE0_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == ATUNE0_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == ATUNE0_A::_1
    }
}
#[doc = "Field `ATUNE0` writer - CTSU Power Supply Operating Mode Setting"]
pub type ATUNE0_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, ATUNE0_A, O>;
impl<'a, const O: u8> ATUNE0_W<'a, O> {
    #[doc = "VCC ≥ 2.4 V: Normal voltage operating mode VCC < 2.4 V: Setting prohibited"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(ATUNE0_A::_0)
    }
    #[doc = "Low-voltage operating mode"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(ATUNE0_A::_1)
    }
}
#[doc = "Field `ATUNE1` reader - CTSU Current Range Adjustment"]
pub type ATUNE1_R = crate::BitReader<ATUNE1_A>;
#[doc = "CTSU Current Range Adjustment\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ATUNE1_A {
    #[doc = "0: 80 µA when CTSUATUNE2 = 0 20 µA when CTSUATUNE2 = 1"]
    _0 = 0,
    #[doc = "1: 40 µA when CTSUATUNE2 = 0 160 µA when CTSUATUNE2 = 1"]
    _1 = 1,
}
impl From<ATUNE1_A> for bool {
    #[inline(always)]
    fn from(variant: ATUNE1_A) -> Self {
        variant as u8 != 0
    }
}
impl ATUNE1_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ATUNE1_A {
        match self.bits {
            false => ATUNE1_A::_0,
            true => ATUNE1_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == ATUNE1_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == ATUNE1_A::_1
    }
}
#[doc = "Field `ATUNE1` writer - CTSU Current Range Adjustment"]
pub type ATUNE1_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, ATUNE1_A, O>;
impl<'a, const O: u8> ATUNE1_W<'a, O> {
    #[doc = "80 µA when CTSUATUNE2 = 0 20 µA when CTSUATUNE2 = 1"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(ATUNE1_A::_0)
    }
    #[doc = "40 µA when CTSUATUNE2 = 0 160 µA when CTSUATUNE2 = 1"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(ATUNE1_A::_1)
    }
}
#[doc = "Field `CLK` reader - CTSU Operating Clock Select"]
pub type CLK_R = crate::FieldReader<u8, CLK_A>;
#[doc = "CTSU Operating Clock Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum CLK_A {
    #[doc = "0: PCLKB"]
    _00 = 0,
    #[doc = "1: PCLKB/2 (PCLKB divided by 2)"]
    _01 = 1,
    #[doc = "2: PCLKB/4 (PCLKB divided by 4)"]
    _10 = 2,
    #[doc = "3: PCLKB/8 (PCLKB divided by 8)"]
    _11 = 3,
}
impl From<CLK_A> for u8 {
    #[inline(always)]
    fn from(variant: CLK_A) -> Self {
        variant as _
    }
}
impl CLK_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CLK_A {
        match self.bits {
            0 => CLK_A::_00,
            1 => CLK_A::_01,
            2 => CLK_A::_10,
            3 => CLK_A::_11,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_00`"]
    #[inline(always)]
    pub fn is_00(&self) -> bool {
        *self == CLK_A::_00
    }
    #[doc = "Checks if the value of the field is `_01`"]
    #[inline(always)]
    pub fn is_01(&self) -> bool {
        *self == CLK_A::_01
    }
    #[doc = "Checks if the value of the field is `_10`"]
    #[inline(always)]
    pub fn is_10(&self) -> bool {
        *self == CLK_A::_10
    }
    #[doc = "Checks if the value of the field is `_11`"]
    #[inline(always)]
    pub fn is_11(&self) -> bool {
        *self == CLK_A::_11
    }
}
#[doc = "Field `CLK` writer - CTSU Operating Clock Select"]
pub type CLK_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u32, CTSUCRA_SPEC, u8, CLK_A, 2, O>;
impl<'a, const O: u8> CLK_W<'a, O> {
    #[doc = "PCLKB"]
    #[inline(always)]
    pub fn _00(self) -> &'a mut W {
        self.variant(CLK_A::_00)
    }
    #[doc = "PCLKB/2 (PCLKB divided by 2)"]
    #[inline(always)]
    pub fn _01(self) -> &'a mut W {
        self.variant(CLK_A::_01)
    }
    #[doc = "PCLKB/4 (PCLKB divided by 4)"]
    #[inline(always)]
    pub fn _10(self) -> &'a mut W {
        self.variant(CLK_A::_10)
    }
    #[doc = "PCLKB/8 (PCLKB divided by 8)"]
    #[inline(always)]
    pub fn _11(self) -> &'a mut W {
        self.variant(CLK_A::_11)
    }
}
#[doc = "Field `MD0` reader - CTSU Measurement Mode Select 0"]
pub type MD0_R = crate::BitReader<MD0_A>;
#[doc = "CTSU Measurement Mode Select 0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MD0_A {
    #[doc = "0: Single scan mode"]
    _0 = 0,
    #[doc = "1: Multi-scan mode"]
    _1 = 1,
}
impl From<MD0_A> for bool {
    #[inline(always)]
    fn from(variant: MD0_A) -> Self {
        variant as u8 != 0
    }
}
impl MD0_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> MD0_A {
        match self.bits {
            false => MD0_A::_0,
            true => MD0_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == MD0_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == MD0_A::_1
    }
}
#[doc = "Field `MD0` writer - CTSU Measurement Mode Select 0"]
pub type MD0_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, MD0_A, O>;
impl<'a, const O: u8> MD0_W<'a, O> {
    #[doc = "Single scan mode"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(MD0_A::_0)
    }
    #[doc = "Multi-scan mode"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(MD0_A::_1)
    }
}
#[doc = "Field `MD1` reader - CTSU Measurement Mode Select 1"]
pub type MD1_R = crate::BitReader<MD1_A>;
#[doc = "CTSU Measurement Mode Select 1\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MD1_A {
    #[doc = "0: One-time measurement (self-capacitance method)"]
    _0 = 0,
    #[doc = "1: Two times measurement (mutual capacitance method)"]
    _1 = 1,
}
impl From<MD1_A> for bool {
    #[inline(always)]
    fn from(variant: MD1_A) -> Self {
        variant as u8 != 0
    }
}
impl MD1_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> MD1_A {
        match self.bits {
            false => MD1_A::_0,
            true => MD1_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == MD1_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == MD1_A::_1
    }
}
#[doc = "Field `MD1` writer - CTSU Measurement Mode Select 1"]
pub type MD1_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, MD1_A, O>;
impl<'a, const O: u8> MD1_W<'a, O> {
    #[doc = "One-time measurement (self-capacitance method)"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(MD1_A::_0)
    }
    #[doc = "Two times measurement (mutual capacitance method)"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(MD1_A::_1)
    }
}
#[doc = "Field `MD2` reader - CTSU Measurement Mode Select 2"]
pub type MD2_R = crate::BitReader<MD2_A>;
#[doc = "CTSU Measurement Mode Select 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum MD2_A {
    #[doc = "0: Measure the switched capacitor current and the DC current"]
    _0 = 0,
    #[doc = "1: Measure the charge transfer by CFC circuit (parallel measurement)"]
    _1 = 1,
}
impl From<MD2_A> for bool {
    #[inline(always)]
    fn from(variant: MD2_A) -> Self {
        variant as u8 != 0
    }
}
impl MD2_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> MD2_A {
        match self.bits {
            false => MD2_A::_0,
            true => MD2_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == MD2_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == MD2_A::_1
    }
}
#[doc = "Field `MD2` writer - CTSU Measurement Mode Select 2"]
pub type MD2_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, MD2_A, O>;
impl<'a, const O: u8> MD2_W<'a, O> {
    #[doc = "Measure the switched capacitor current and the DC current"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(MD2_A::_0)
    }
    #[doc = "Measure the charge transfer by CFC circuit (parallel measurement)"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(MD2_A::_1)
    }
}
#[doc = "Field `ATUNE2` reader - CTSU Current Range Adjustment"]
pub type ATUNE2_R = crate::BitReader<ATUNE2_A>;
#[doc = "CTSU Current Range Adjustment\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ATUNE2_A {
    #[doc = "0: 80 µA when CTSUATUNE1 = 0 40 µA when CTSUATUNE1 = 1"]
    _0 = 0,
    #[doc = "1: 20 µA when CTSUATUNE1 = 0 160 µA when CTSUATUNE1 = 1"]
    _1 = 1,
}
impl From<ATUNE2_A> for bool {
    #[inline(always)]
    fn from(variant: ATUNE2_A) -> Self {
        variant as u8 != 0
    }
}
impl ATUNE2_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ATUNE2_A {
        match self.bits {
            false => ATUNE2_A::_0,
            true => ATUNE2_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == ATUNE2_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == ATUNE2_A::_1
    }
}
#[doc = "Field `ATUNE2` writer - CTSU Current Range Adjustment"]
pub type ATUNE2_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, ATUNE2_A, O>;
impl<'a, const O: u8> ATUNE2_W<'a, O> {
    #[doc = "80 µA when CTSUATUNE1 = 0 40 µA when CTSUATUNE1 = 1"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(ATUNE2_A::_0)
    }
    #[doc = "20 µA when CTSUATUNE1 = 0 160 µA when CTSUATUNE1 = 1"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(ATUNE2_A::_1)
    }
}
#[doc = "Field `LOAD` reader - CTSU Load Control During Measurement"]
pub type LOAD_R = crate::FieldReader<u8, LOAD_A>;
#[doc = "CTSU Load Control During Measurement\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum LOAD_A {
    #[doc = "0: 2.5 µA constant current load"]
    _00 = 0,
    #[doc = "1: No load"]
    _01 = 1,
    #[doc = "2: 20 µA constant current load and overcurrent detector disabled"]
    _10 = 2,
    #[doc = "3: Resistance load for calibration. To set LOAD\\[1:0\\]
bits to resistance load for calibration, set these bits to 10b before they are set to 11b."]
    _11 = 3,
}
impl From<LOAD_A> for u8 {
    #[inline(always)]
    fn from(variant: LOAD_A) -> Self {
        variant as _
    }
}
impl LOAD_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> LOAD_A {
        match self.bits {
            0 => LOAD_A::_00,
            1 => LOAD_A::_01,
            2 => LOAD_A::_10,
            3 => LOAD_A::_11,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_00`"]
    #[inline(always)]
    pub fn is_00(&self) -> bool {
        *self == LOAD_A::_00
    }
    #[doc = "Checks if the value of the field is `_01`"]
    #[inline(always)]
    pub fn is_01(&self) -> bool {
        *self == LOAD_A::_01
    }
    #[doc = "Checks if the value of the field is `_10`"]
    #[inline(always)]
    pub fn is_10(&self) -> bool {
        *self == LOAD_A::_10
    }
    #[doc = "Checks if the value of the field is `_11`"]
    #[inline(always)]
    pub fn is_11(&self) -> bool {
        *self == LOAD_A::_11
    }
}
#[doc = "Field `LOAD` writer - CTSU Load Control During Measurement"]
pub type LOAD_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u32, CTSUCRA_SPEC, u8, LOAD_A, 2, O>;
impl<'a, const O: u8> LOAD_W<'a, O> {
    #[doc = "2.5 µA constant current load"]
    #[inline(always)]
    pub fn _00(self) -> &'a mut W {
        self.variant(LOAD_A::_00)
    }
    #[doc = "No load"]
    #[inline(always)]
    pub fn _01(self) -> &'a mut W {
        self.variant(LOAD_A::_01)
    }
    #[doc = "20 µA constant current load and overcurrent detector disabled"]
    #[inline(always)]
    pub fn _10(self) -> &'a mut W {
        self.variant(LOAD_A::_10)
    }
    #[doc = "Resistance load for calibration. To set LOAD\\[1:0\\]
bits to resistance load for calibration, set these bits to 10b before they are set to 11b."]
    #[inline(always)]
    pub fn _11(self) -> &'a mut W {
        self.variant(LOAD_A::_11)
    }
}
#[doc = "Field `POSEL` reader - CTSU Non-Measured Channel Output Select"]
pub type POSEL_R = crate::FieldReader<u8, POSEL_A>;
#[doc = "CTSU Non-Measured Channel Output Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum POSEL_A {
    #[doc = "0: Output low"]
    _00 = 0,
    #[doc = "1: Hi-Z"]
    _01 = 1,
    #[doc = "2: Setting prohibited"]
    _10 = 2,
    #[doc = "3: Output a pulse in phase with the transmit channel"]
    _11 = 3,
}
impl From<POSEL_A> for u8 {
    #[inline(always)]
    fn from(variant: POSEL_A) -> Self {
        variant as _
    }
}
impl POSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> POSEL_A {
        match self.bits {
            0 => POSEL_A::_00,
            1 => POSEL_A::_01,
            2 => POSEL_A::_10,
            3 => POSEL_A::_11,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_00`"]
    #[inline(always)]
    pub fn is_00(&self) -> bool {
        *self == POSEL_A::_00
    }
    #[doc = "Checks if the value of the field is `_01`"]
    #[inline(always)]
    pub fn is_01(&self) -> bool {
        *self == POSEL_A::_01
    }
    #[doc = "Checks if the value of the field is `_10`"]
    #[inline(always)]
    pub fn is_10(&self) -> bool {
        *self == POSEL_A::_10
    }
    #[doc = "Checks if the value of the field is `_11`"]
    #[inline(always)]
    pub fn is_11(&self) -> bool {
        *self == POSEL_A::_11
    }
}
#[doc = "Field `POSEL` writer - CTSU Non-Measured Channel Output Select"]
pub type POSEL_W<'a, const O: u8> =
    crate::FieldWriterSafe<'a, u32, CTSUCRA_SPEC, u8, POSEL_A, 2, O>;
impl<'a, const O: u8> POSEL_W<'a, O> {
    #[doc = "Output low"]
    #[inline(always)]
    pub fn _00(self) -> &'a mut W {
        self.variant(POSEL_A::_00)
    }
    #[doc = "Hi-Z"]
    #[inline(always)]
    pub fn _01(self) -> &'a mut W {
        self.variant(POSEL_A::_01)
    }
    #[doc = "Setting prohibited"]
    #[inline(always)]
    pub fn _10(self) -> &'a mut W {
        self.variant(POSEL_A::_10)
    }
    #[doc = "Output a pulse in phase with the transmit channel"]
    #[inline(always)]
    pub fn _11(self) -> &'a mut W {
        self.variant(POSEL_A::_11)
    }
}
#[doc = "Field `SDPSEL` reader - CTSU Sensor Drive Pulse Select"]
pub type SDPSEL_R = crate::BitReader<SDPSEL_A>;
#[doc = "CTSU Sensor Drive Pulse Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SDPSEL_A {
    #[doc = "0: Random pulse"]
    _0 = 0,
    #[doc = "1: Normal pulse using the sensor unit clock"]
    _1 = 1,
}
impl From<SDPSEL_A> for bool {
    #[inline(always)]
    fn from(variant: SDPSEL_A) -> Self {
        variant as u8 != 0
    }
}
impl SDPSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SDPSEL_A {
        match self.bits {
            false => SDPSEL_A::_0,
            true => SDPSEL_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == SDPSEL_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == SDPSEL_A::_1
    }
}
#[doc = "Field `SDPSEL` writer - CTSU Sensor Drive Pulse Select"]
pub type SDPSEL_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, SDPSEL_A, O>;
impl<'a, const O: u8> SDPSEL_W<'a, O> {
    #[doc = "Random pulse"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(SDPSEL_A::_0)
    }
    #[doc = "Normal pulse using the sensor unit clock"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(SDPSEL_A::_1)
    }
}
#[doc = "Field `PCSEL` reader - CTSU Boost Circuit Clock Select"]
pub type PCSEL_R = crate::BitReader<PCSEL_A>;
#[doc = "CTSU Boost Circuit Clock Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum PCSEL_A {
    #[doc = "0: Sensor drive pulse divided by 2"]
    _0 = 0,
    #[doc = "1: STCLK"]
    _1 = 1,
}
impl From<PCSEL_A> for bool {
    #[inline(always)]
    fn from(variant: PCSEL_A) -> Self {
        variant as u8 != 0
    }
}
impl PCSEL_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> PCSEL_A {
        match self.bits {
            false => PCSEL_A::_0,
            true => PCSEL_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == PCSEL_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == PCSEL_A::_1
    }
}
#[doc = "Field `PCSEL` writer - CTSU Boost Circuit Clock Select"]
pub type PCSEL_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, PCSEL_A, O>;
impl<'a, const O: u8> PCSEL_W<'a, O> {
    #[doc = "Sensor drive pulse divided by 2"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(PCSEL_A::_0)
    }
    #[doc = "STCLK"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(PCSEL_A::_1)
    }
}
#[doc = "Field `STCLK` reader - CTSU STCLK Select"]
pub type STCLK_R = crate::FieldReader<u8, u8>;
#[doc = "Field `STCLK` writer - CTSU STCLK Select"]
pub type STCLK_W<'a, const O: u8> = crate::FieldWriter<'a, u32, CTSUCRA_SPEC, u8, u8, 6, O>;
#[doc = "Field `DCMODE` reader - CTSU Current Measurement Mode Select"]
pub type DCMODE_R = crate::BitReader<DCMODE_A>;
#[doc = "CTSU Current Measurement Mode Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DCMODE_A {
    #[doc = "0: Electrostatic capacitance measurement mode"]
    _0 = 0,
    #[doc = "1: Current measurement mode"]
    _1 = 1,
}
impl From<DCMODE_A> for bool {
    #[inline(always)]
    fn from(variant: DCMODE_A) -> Self {
        variant as u8 != 0
    }
}
impl DCMODE_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DCMODE_A {
        match self.bits {
            false => DCMODE_A::_0,
            true => DCMODE_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == DCMODE_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == DCMODE_A::_1
    }
}
#[doc = "Field `DCMODE` writer - CTSU Current Measurement Mode Select"]
pub type DCMODE_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, DCMODE_A, O>;
impl<'a, const O: u8> DCMODE_W<'a, O> {
    #[doc = "Electrostatic capacitance measurement mode"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(DCMODE_A::_0)
    }
    #[doc = "Current measurement mode"]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(DCMODE_A::_1)
    }
}
#[doc = "Field `DCBACK` reader - CTSU Current Measurement Feedback Select"]
pub type DCBACK_R = crate::BitReader<DCBACK_A>;
#[doc = "CTSU Current Measurement Feedback Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DCBACK_A {
    #[doc = "0: TSCAP pin is selected"]
    _0 = 0,
    #[doc = "1: Measurement pin is selected. It is recommended in the current measurement mode."]
    _1 = 1,
}
impl From<DCBACK_A> for bool {
    #[inline(always)]
    fn from(variant: DCBACK_A) -> Self {
        variant as u8 != 0
    }
}
impl DCBACK_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DCBACK_A {
        match self.bits {
            false => DCBACK_A::_0,
            true => DCBACK_A::_1,
        }
    }
    #[doc = "Checks if the value of the field is `_0`"]
    #[inline(always)]
    pub fn is_0(&self) -> bool {
        *self == DCBACK_A::_0
    }
    #[doc = "Checks if the value of the field is `_1`"]
    #[inline(always)]
    pub fn is_1(&self) -> bool {
        *self == DCBACK_A::_1
    }
}
#[doc = "Field `DCBACK` writer - CTSU Current Measurement Feedback Select"]
pub type DCBACK_W<'a, const O: u8> = crate::BitWriter<'a, u32, CTSUCRA_SPEC, DCBACK_A, O>;
impl<'a, const O: u8> DCBACK_W<'a, O> {
    #[doc = "TSCAP pin is selected"]
    #[inline(always)]
    pub fn _0(self) -> &'a mut W {
        self.variant(DCBACK_A::_0)
    }
    #[doc = "Measurement pin is selected. It is recommended in the current measurement mode."]
    #[inline(always)]
    pub fn _1(self) -> &'a mut W {
        self.variant(DCBACK_A::_1)
    }
}
impl R {
    #[doc = "Bit 0 - CTSU Measurement Operation Start"]
    #[inline(always)]
    pub fn strt(&self) -> STRT_R {
        STRT_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - CTSU Measurement Operation Start Trigger Select"]
    #[inline(always)]
    pub fn cap(&self) -> CAP_R {
        CAP_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - CTSU Wait State Power-Saving Enable"]
    #[inline(always)]
    pub fn snz(&self) -> SNZ_R {
        SNZ_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - CTSU CFC Power On Control"]
    #[inline(always)]
    pub fn cfcon(&self) -> CFCON_R {
        CFCON_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 5 - CTSU Boost Circuit Control"]
    #[inline(always)]
    pub fn pumpon(&self) -> PUMPON_R {
        PUMPON_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bits 6:7 - CTSU Transmission Power Supply Selection"]
    #[inline(always)]
    pub fn txvsel(&self) -> TXVSEL_R {
        TXVSEL_R::new(((self.bits >> 6) & 3) as u8)
    }
    #[doc = "Bit 8 - CTSU Power On Control"]
    #[inline(always)]
    pub fn pon(&self) -> PON_R {
        PON_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - TSCAP Pin Enable"]
    #[inline(always)]
    pub fn csw(&self) -> CSW_R {
        CSW_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - CTSU Power Supply Operating Mode Setting"]
    #[inline(always)]
    pub fn atune0(&self) -> ATUNE0_R {
        ATUNE0_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - CTSU Current Range Adjustment"]
    #[inline(always)]
    pub fn atune1(&self) -> ATUNE1_R {
        ATUNE1_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bits 12:13 - CTSU Operating Clock Select"]
    #[inline(always)]
    pub fn clk(&self) -> CLK_R {
        CLK_R::new(((self.bits >> 12) & 3) as u8)
    }
    #[doc = "Bit 14 - CTSU Measurement Mode Select 0"]
    #[inline(always)]
    pub fn md0(&self) -> MD0_R {
        MD0_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - CTSU Measurement Mode Select 1"]
    #[inline(always)]
    pub fn md1(&self) -> MD1_R {
        MD1_R::new(((self.bits >> 15) & 1) != 0)
    }
    #[doc = "Bit 16 - CTSU Measurement Mode Select 2"]
    #[inline(always)]
    pub fn md2(&self) -> MD2_R {
        MD2_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - CTSU Current Range Adjustment"]
    #[inline(always)]
    pub fn atune2(&self) -> ATUNE2_R {
        ATUNE2_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bits 18:19 - CTSU Load Control During Measurement"]
    #[inline(always)]
    pub fn load(&self) -> LOAD_R {
        LOAD_R::new(((self.bits >> 18) & 3) as u8)
    }
    #[doc = "Bits 20:21 - CTSU Non-Measured Channel Output Select"]
    #[inline(always)]
    pub fn posel(&self) -> POSEL_R {
        POSEL_R::new(((self.bits >> 20) & 3) as u8)
    }
    #[doc = "Bit 22 - CTSU Sensor Drive Pulse Select"]
    #[inline(always)]
    pub fn sdpsel(&self) -> SDPSEL_R {
        SDPSEL_R::new(((self.bits >> 22) & 1) != 0)
    }
    #[doc = "Bit 23 - CTSU Boost Circuit Clock Select"]
    #[inline(always)]
    pub fn pcsel(&self) -> PCSEL_R {
        PCSEL_R::new(((self.bits >> 23) & 1) != 0)
    }
    #[doc = "Bits 24:29 - CTSU STCLK Select"]
    #[inline(always)]
    pub fn stclk(&self) -> STCLK_R {
        STCLK_R::new(((self.bits >> 24) & 0x3f) as u8)
    }
    #[doc = "Bit 30 - CTSU Current Measurement Mode Select"]
    #[inline(always)]
    pub fn dcmode(&self) -> DCMODE_R {
        DCMODE_R::new(((self.bits >> 30) & 1) != 0)
    }
    #[doc = "Bit 31 - CTSU Current Measurement Feedback Select"]
    #[inline(always)]
    pub fn dcback(&self) -> DCBACK_R {
        DCBACK_R::new(((self.bits >> 31) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - CTSU Measurement Operation Start"]
    #[inline(always)]
    #[must_use]
    pub fn strt(&mut self) -> STRT_W<0> {
        STRT_W::new(self)
    }
    #[doc = "Bit 1 - CTSU Measurement Operation Start Trigger Select"]
    #[inline(always)]
    #[must_use]
    pub fn cap(&mut self) -> CAP_W<1> {
        CAP_W::new(self)
    }
    #[doc = "Bit 2 - CTSU Wait State Power-Saving Enable"]
    #[inline(always)]
    #[must_use]
    pub fn snz(&mut self) -> SNZ_W<2> {
        SNZ_W::new(self)
    }
    #[doc = "Bit 3 - CTSU CFC Power On Control"]
    #[inline(always)]
    #[must_use]
    pub fn cfcon(&mut self) -> CFCON_W<3> {
        CFCON_W::new(self)
    }
    #[doc = "Bit 4 - CTSU Control Block Initialization"]
    #[inline(always)]
    #[must_use]
    pub fn init(&mut self) -> INIT_W<4> {
        INIT_W::new(self)
    }
    #[doc = "Bit 5 - CTSU Boost Circuit Control"]
    #[inline(always)]
    #[must_use]
    pub fn pumpon(&mut self) -> PUMPON_W<5> {
        PUMPON_W::new(self)
    }
    #[doc = "Bits 6:7 - CTSU Transmission Power Supply Selection"]
    #[inline(always)]
    #[must_use]
    pub fn txvsel(&mut self) -> TXVSEL_W<6> {
        TXVSEL_W::new(self)
    }
    #[doc = "Bit 8 - CTSU Power On Control"]
    #[inline(always)]
    #[must_use]
    pub fn pon(&mut self) -> PON_W<8> {
        PON_W::new(self)
    }
    #[doc = "Bit 9 - TSCAP Pin Enable"]
    #[inline(always)]
    #[must_use]
    pub fn csw(&mut self) -> CSW_W<9> {
        CSW_W::new(self)
    }
    #[doc = "Bit 10 - CTSU Power Supply Operating Mode Setting"]
    #[inline(always)]
    #[must_use]
    pub fn atune0(&mut self) -> ATUNE0_W<10> {
        ATUNE0_W::new(self)
    }
    #[doc = "Bit 11 - CTSU Current Range Adjustment"]
    #[inline(always)]
    #[must_use]
    pub fn atune1(&mut self) -> ATUNE1_W<11> {
        ATUNE1_W::new(self)
    }
    #[doc = "Bits 12:13 - CTSU Operating Clock Select"]
    #[inline(always)]
    #[must_use]
    pub fn clk(&mut self) -> CLK_W<12> {
        CLK_W::new(self)
    }
    #[doc = "Bit 14 - CTSU Measurement Mode Select 0"]
    #[inline(always)]
    #[must_use]
    pub fn md0(&mut self) -> MD0_W<14> {
        MD0_W::new(self)
    }
    #[doc = "Bit 15 - CTSU Measurement Mode Select 1"]
    #[inline(always)]
    #[must_use]
    pub fn md1(&mut self) -> MD1_W<15> {
        MD1_W::new(self)
    }
    #[doc = "Bit 16 - CTSU Measurement Mode Select 2"]
    #[inline(always)]
    #[must_use]
    pub fn md2(&mut self) -> MD2_W<16> {
        MD2_W::new(self)
    }
    #[doc = "Bit 17 - CTSU Current Range Adjustment"]
    #[inline(always)]
    #[must_use]
    pub fn atune2(&mut self) -> ATUNE2_W<17> {
        ATUNE2_W::new(self)
    }
    #[doc = "Bits 18:19 - CTSU Load Control During Measurement"]
    #[inline(always)]
    #[must_use]
    pub fn load(&mut self) -> LOAD_W<18> {
        LOAD_W::new(self)
    }
    #[doc = "Bits 20:21 - CTSU Non-Measured Channel Output Select"]
    #[inline(always)]
    #[must_use]
    pub fn posel(&mut self) -> POSEL_W<20> {
        POSEL_W::new(self)
    }
    #[doc = "Bit 22 - CTSU Sensor Drive Pulse Select"]
    #[inline(always)]
    #[must_use]
    pub fn sdpsel(&mut self) -> SDPSEL_W<22> {
        SDPSEL_W::new(self)
    }
    #[doc = "Bit 23 - CTSU Boost Circuit Clock Select"]
    #[inline(always)]
    #[must_use]
    pub fn pcsel(&mut self) -> PCSEL_W<23> {
        PCSEL_W::new(self)
    }
    #[doc = "Bits 24:29 - CTSU STCLK Select"]
    #[inline(always)]
    #[must_use]
    pub fn stclk(&mut self) -> STCLK_W<24> {
        STCLK_W::new(self)
    }
    #[doc = "Bit 30 - CTSU Current Measurement Mode Select"]
    #[inline(always)]
    #[must_use]
    pub fn dcmode(&mut self) -> DCMODE_W<30> {
        DCMODE_W::new(self)
    }
    #[doc = "Bit 31 - CTSU Current Measurement Feedback Select"]
    #[inline(always)]
    #[must_use]
    pub fn dcback(&mut self) -> DCBACK_W<31> {
        DCBACK_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 = "CTSU Control Register A\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 [ctsucra](index.html) module"]
pub struct CTSUCRA_SPEC;
impl crate::RegisterSpec for CTSUCRA_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [ctsucra::R](R) reader structure"]
impl crate::Readable for CTSUCRA_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [ctsucra::W](W) writer structure"]
impl crate::Writable for CTSUCRA_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 CTSUCRA to value 0"]
impl crate::Resettable for CTSUCRA_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}