cc13x2 0.2.0

Peripheral Access Crate for CC13x2 MCUs.
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
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    _reserved0: [u8; 28usize],
    #[doc = "0x1c - FMC and Efuse Status"]
    pub stat: STAT,
    _reserved1: [u8; 4usize],
    #[doc = "0x24 - Internal. Only to be used through TI provided API."]
    pub cfg: CFG,
    #[doc = "0x28 - Internal. Only to be used through TI provided API."]
    pub syscode_start: SYSCODE_START,
    #[doc = "0x2c - Internal. Only to be used through TI provided API."]
    pub flash_size: FLASH_SIZE,
    _reserved4: [u8; 12usize],
    #[doc = "0x3c - Internal. Only to be used through TI provided API."]
    pub fwlock: FWLOCK,
    #[doc = "0x40 - Internal. Only to be used through TI provided API."]
    pub fwflag: FWFLAG,
    _reserved6: [u8; 4028usize],
    #[doc = "0x1000 - Internal. Only to be used through TI provided API."]
    pub efuse: EFUSE,
    #[doc = "0x1004 - Internal. Only to be used through TI provided API."]
    pub efuseaddr: EFUSEADDR,
    #[doc = "0x1008 - Internal. Only to be used through TI provided API."]
    pub dataupper: DATAUPPER,
    #[doc = "0x100c - Internal. Only to be used through TI provided API."]
    pub datalower: DATALOWER,
    #[doc = "0x1010 - Internal. Only to be used through TI provided API."]
    pub efusecfg: EFUSECFG,
    #[doc = "0x1014 - Internal. Only to be used through TI provided API."]
    pub efusestat: EFUSESTAT,
    #[doc = "0x1018 - Internal. Only to be used through TI provided API."]
    pub acc: ACC,
    #[doc = "0x101c - Internal. Only to be used through TI provided API."]
    pub boundary: BOUNDARY,
    #[doc = "0x1020 - Internal. Only to be used through TI provided API."]
    pub efuseflag: EFUSEFLAG,
    #[doc = "0x1024 - Internal. Only to be used through TI provided API."]
    pub efusekey: EFUSEKEY,
    #[doc = "0x1028 - Internal. Only to be used through TI provided API."]
    pub efuserelease: EFUSERELEASE,
    #[doc = "0x102c - Internal. Only to be used through TI provided API."]
    pub efusepins: EFUSEPINS,
    #[doc = "0x1030 - Internal. Only to be used through TI provided API."]
    pub efusecra: EFUSECRA,
    #[doc = "0x1034 - Internal. Only to be used through TI provided API."]
    pub efuseread: EFUSEREAD,
    #[doc = "0x1038 - Internal. Only to be used through TI provided API."]
    pub efuseprogram: EFUSEPROGRAM,
    #[doc = "0x103c - Internal. Only to be used through TI provided API."]
    pub efuseerror: EFUSEERROR,
    #[doc = "0x1040 - Internal. Only to be used through TI provided API."]
    pub singlebit: SINGLEBIT,
    #[doc = "0x1044 - Internal. Only to be used through TI provided API."]
    pub twobit: TWOBIT,
    #[doc = "0x1048 - Internal. Only to be used through TI provided API."]
    pub selftestcyc: SELFTESTCYC,
    #[doc = "0x104c - Internal. Only to be used through TI provided API."]
    pub selftestsign: SELFTESTSIGN,
    _reserved26: [u8; 4016usize],
    #[doc = "0x2000 - Internal. Only to be used through TI provided API."]
    pub frdctl: FRDCTL,
    #[doc = "0x2004 - Internal. Only to be used through TI provided API."]
    pub fsprd: FSPRD,
    #[doc = "0x2008 - Internal. Only to be used through TI provided API."]
    pub fedacctl1: FEDACCTL1,
    #[doc = "0x200c - Internal. Only to be used through TI provided API."]
    pub fedacctl2: FEDACCTL2,
    #[doc = "0x2010 - Internal. Only to be used through TI provided API."]
    pub fcor_err_cnt: FCOR_ERR_CNT,
    #[doc = "0x2014 - Internal. Only to be used through TI provided API."]
    pub fcor_err_add: FCOR_ERR_ADD,
    #[doc = "0x2018 - Internal. Only to be used through TI provided API."]
    pub fcor_err_pos: FCOR_ERR_POS,
    #[doc = "0x201c - Internal. Only to be used through TI provided API."]
    pub fedacstat: FEDACSTAT,
    #[doc = "0x2020 - Internal. Only to be used through TI provided API."]
    pub func_err_add: FUNC_ERR_ADD,
    #[doc = "0x2024 - Internal. Only to be used through TI provided API."]
    pub fedacsdis: FEDACSDIS,
    #[doc = "0x2028 - Internal. Only to be used through TI provided API."]
    pub fprim_add_tag: FPRIM_ADD_TAG,
    #[doc = "0x202c - Internal. Only to be used through TI provided API."]
    pub fredu_add_tag: FREDU_ADD_TAG,
    #[doc = "0x2030 - Internal. Only to be used through TI provided API."]
    pub fbprot: FBPROT,
    #[doc = "0x2034 - Internal. Only to be used through TI provided API."]
    pub fbse: FBSE,
    #[doc = "0x2038 - Internal. Only to be used through TI provided API."]
    pub fbbusy: FBBUSY,
    #[doc = "0x203c - Internal. Only to be used through TI provided API."]
    pub fbac: FBAC,
    #[doc = "0x2040 - Internal. Only to be used through TI provided API."]
    pub fbfallback: FBFALLBACK,
    #[doc = "0x2044 - Internal. Only to be used through TI provided API."]
    pub fbprdy: FBPRDY,
    #[doc = "0x2048 - Internal. Only to be used through TI provided API."]
    pub fpac1: FPAC1,
    #[doc = "0x204c - Internal. Only to be used through TI provided API."]
    pub fpac2: FPAC2,
    #[doc = "0x2050 - Internal. Only to be used through TI provided API."]
    pub fmac: FMAC,
    #[doc = "0x2054 - Internal. Only to be used through TI provided API."]
    pub fmstat: FMSTAT,
    #[doc = "0x2058 - Internal. Only to be used through TI provided API."]
    pub femu_dmsw: FEMU_DMSW,
    #[doc = "0x205c - Internal. Only to be used through TI provided API."]
    pub femu_dlsw: FEMU_DLSW,
    #[doc = "0x2060 - Internal. Only to be used through TI provided API."]
    pub femu_ecc: FEMU_ECC,
    #[doc = "0x2064 - Internal. Only to be used through TI provided API."]
    pub flock: FLOCK,
    #[doc = "0x2068 - Internal. Only to be used through TI provided API."]
    pub femu_addr: FEMU_ADDR,
    #[doc = "0x206c - Internal. Only to be used through TI provided API."]
    pub fdiagctl: FDIAGCTL,
    #[doc = "0x2070 - Internal. Only to be used through TI provided API."]
    pub fraw_datah: FRAW_DATAH,
    #[doc = "0x2074 - Internal. Only to be used through TI provided API."]
    pub fraw_datal: FRAW_DATAL,
    #[doc = "0x2078 - Internal. Only to be used through TI provided API."]
    pub fraw_ecc: FRAW_ECC,
    #[doc = "0x207c - Internal. Only to be used through TI provided API."]
    pub fpar_ovr: FPAR_OVR,
    #[doc = "0x2080 - Internal. Only to be used through TI provided API."]
    pub fvreadct: FVREADCT,
    #[doc = "0x2084 - Internal. Only to be used through TI provided API."]
    pub fvhvct1: FVHVCT1,
    #[doc = "0x2088 - Internal. Only to be used through TI provided API."]
    pub fvhvct2: FVHVCT2,
    #[doc = "0x208c - Internal. Only to be used through TI provided API."]
    pub fvhvct3: FVHVCT3,
    #[doc = "0x2090 - Internal. Only to be used through TI provided API."]
    pub fvnvct: FVNVCT,
    #[doc = "0x2094 - Internal. Only to be used through TI provided API."]
    pub fvslp: FVSLP,
    #[doc = "0x2098 - Internal. Only to be used through TI provided API."]
    pub fvwlct: FVWLCT,
    #[doc = "0x209c - Internal. Only to be used through TI provided API."]
    pub fefusectl: FEFUSECTL,
    #[doc = "0x20a0 - Internal. Only to be used through TI provided API."]
    pub fefusestat: FEFUSESTAT,
    #[doc = "0x20a4 - Internal. Only to be used through TI provided API."]
    pub fefusedata: FEFUSEDATA,
    #[doc = "0x20a8 - Internal. Only to be used through TI provided API."]
    pub fseqpmp: FSEQPMP,
    #[doc = "0x20ac - Internal. Only to be used through TI provided API."]
    pub fclktrim: FCLKTRIM,
    #[doc = "0x20b0 - Internal. Only to be used through TI provided API."]
    pub rom_test: ROM_TEST,
    _reserved71: [u8; 12usize],
    #[doc = "0x20c0 - Internal. Only to be used through TI provided API."]
    pub fedacsdis2: FEDACSDIS2,
    _reserved72: [u8; 60usize],
    #[doc = "0x2100 - Internal. Only to be used through TI provided API."]
    pub fbstrobes: FBSTROBES,
    #[doc = "0x2104 - Internal. Only to be used through TI provided API."]
    pub fpstrobes: FPSTROBES,
    #[doc = "0x2108 - Internal. Only to be used through TI provided API."]
    pub fbmode: FBMODE,
    #[doc = "0x210c - Internal. Only to be used through TI provided API."]
    pub ftcr: FTCR,
    #[doc = "0x2110 - Internal. Only to be used through TI provided API."]
    pub faddr: FADDR,
    #[doc = "0x2114 - Internal. Only to be used through TI provided API."]
    pub fpmtctl: FPMTCTL,
    #[doc = "0x2118 - Internal. Only to be used through TI provided API."]
    pub pbistctl: PBISTCTL,
    #[doc = "0x211c - Internal. Only to be used through TI provided API."]
    pub ftctl: FTCTL,
    #[doc = "0x2120 - Internal. Only to be used through TI provided API."]
    pub fwpwrite0: FWPWRITE0,
    #[doc = "0x2124 - Internal. Only to be used through TI provided API."]
    pub fwpwrite1: FWPWRITE1,
    #[doc = "0x2128 - Internal. Only to be used through TI provided API."]
    pub fwpwrite2: FWPWRITE2,
    #[doc = "0x212c - Internal. Only to be used through TI provided API."]
    pub fwpwrite3: FWPWRITE3,
    #[doc = "0x2130 - Internal. Only to be used through TI provided API."]
    pub fwpwrite4: FWPWRITE4,
    #[doc = "0x2134 - Internal. Only to be used through TI provided API."]
    pub fwpwrite5: FWPWRITE5,
    #[doc = "0x2138 - Internal. Only to be used through TI provided API."]
    pub fwpwrite6: FWPWRITE6,
    #[doc = "0x213c - Internal. Only to be used through TI provided API."]
    pub fwpwrite7: FWPWRITE7,
    #[doc = "0x2140 - Internal. Only to be used through TI provided API."]
    pub fwpwrite_ecc: FWPWRITE_ECC,
    #[doc = "0x2144 - Internal. Only to be used through TI provided API."]
    pub fswstat: FSWSTAT,
    _reserved90: [u8; 184usize],
    #[doc = "0x2200 - Internal. Only to be used through TI provided API."]
    pub fsm_glbctl: FSM_GLBCTL,
    #[doc = "0x2204 - Internal. Only to be used through TI provided API."]
    pub fsm_state: FSM_STATE,
    #[doc = "0x2208 - Internal. Only to be used through TI provided API."]
    pub fsm_stat: FSM_STAT,
    #[doc = "0x220c - Internal. Only to be used through TI provided API."]
    pub fsm_cmd: FSM_CMD,
    #[doc = "0x2210 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_osu: FSM_PE_OSU,
    #[doc = "0x2214 - Internal. Only to be used through TI provided API."]
    pub fsm_vstat: FSM_VSTAT,
    #[doc = "0x2218 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_vsu: FSM_PE_VSU,
    #[doc = "0x221c - Internal. Only to be used through TI provided API."]
    pub fsm_cmp_vsu: FSM_CMP_VSU,
    #[doc = "0x2220 - Internal. Only to be used through TI provided API."]
    pub fsm_ex_val: FSM_EX_VAL,
    #[doc = "0x2224 - Internal. Only to be used through TI provided API."]
    pub fsm_rd_h: FSM_RD_H,
    #[doc = "0x2228 - Internal. Only to be used through TI provided API."]
    pub fsm_p_oh: FSM_P_OH,
    #[doc = "0x222c - Internal. Only to be used through TI provided API."]
    pub fsm_era_oh: FSM_ERA_OH,
    #[doc = "0x2230 - Internal. Only to be used through TI provided API."]
    pub fsm_sav_ppul: FSM_SAV_PPUL,
    #[doc = "0x2234 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_vh: FSM_PE_VH,
    _reserved104: [u8; 8usize],
    #[doc = "0x2240 - Internal. Only to be used through TI provided API."]
    pub fsm_prg_pw: FSM_PRG_PW,
    #[doc = "0x2244 - Internal. Only to be used through TI provided API."]
    pub fsm_era_pw: FSM_ERA_PW,
    _reserved106: [u8; 12usize],
    #[doc = "0x2254 - Internal. Only to be used through TI provided API."]
    pub fsm_sav_era_pul: FSM_SAV_ERA_PUL,
    #[doc = "0x2258 - Internal. Only to be used through TI provided API."]
    pub fsm_timer: FSM_TIMER,
    #[doc = "0x225c - Internal. Only to be used through TI provided API."]
    pub fsm_mode: FSM_MODE,
    #[doc = "0x2260 - Internal. Only to be used through TI provided API."]
    pub fsm_pgm: FSM_PGM,
    #[doc = "0x2264 - Internal. Only to be used through TI provided API."]
    pub fsm_era: FSM_ERA,
    #[doc = "0x2268 - Internal. Only to be used through TI provided API."]
    pub fsm_prg_pul: FSM_PRG_PUL,
    #[doc = "0x226c - Internal. Only to be used through TI provided API."]
    pub fsm_era_pul: FSM_ERA_PUL,
    #[doc = "0x2270 - Internal. Only to be used through TI provided API."]
    pub fsm_step_size: FSM_STEP_SIZE,
    #[doc = "0x2274 - Internal. Only to be used through TI provided API."]
    pub fsm_pul_cntr: FSM_PUL_CNTR,
    #[doc = "0x2278 - Internal. Only to be used through TI provided API."]
    pub fsm_ec_step_height: FSM_EC_STEP_HEIGHT,
    #[doc = "0x227c - Internal. Only to be used through TI provided API."]
    pub fsm_st_machine: FSM_ST_MACHINE,
    #[doc = "0x2280 - Internal. Only to be used through TI provided API."]
    pub fsm_fles: FSM_FLES,
    _reserved118: [u8; 4usize],
    #[doc = "0x2288 - Internal. Only to be used through TI provided API."]
    pub fsm_wr_ena: FSM_WR_ENA,
    #[doc = "0x228c - Internal. Only to be used through TI provided API."]
    pub fsm_acc_pp: FSM_ACC_PP,
    #[doc = "0x2290 - Internal. Only to be used through TI provided API."]
    pub fsm_acc_ep: FSM_ACC_EP,
    _reserved121: [u8; 12usize],
    #[doc = "0x22a0 - Internal. Only to be used through TI provided API."]
    pub fsm_addr: FSM_ADDR,
    #[doc = "0x22a4 - Internal. Only to be used through TI provided API."]
    pub fsm_sector: FSM_SECTOR,
    #[doc = "0x22a8 - Internal. Only to be used through TI provided API."]
    pub fmc_rev_id: FMC_REV_ID,
    #[doc = "0x22ac - Internal. Only to be used through TI provided API."]
    pub fsm_err_addr: FSM_ERR_ADDR,
    #[doc = "0x22b0 - Internal. Only to be used through TI provided API."]
    pub fsm_pgm_maxpul: FSM_PGM_MAXPUL,
    #[doc = "0x22b4 - Internal. Only to be used through TI provided API."]
    pub fsm_execute: FSM_EXECUTE,
    #[doc = "0x22b8 - Internal. Only to be used through TI provided API."]
    pub eeprom_cfg: EEPROM_CFG,
    _reserved128: [u8; 4usize],
    #[doc = "0x22c0 - Internal. Only to be used through TI provided API."]
    pub fsm_sector1: FSM_SECTOR1,
    #[doc = "0x22c4 - Internal. Only to be used through TI provided API."]
    pub fsm_sector2: FSM_SECTOR2,
    _reserved130: [u8; 24usize],
    #[doc = "0x22e0 - Internal. Only to be used through TI provided API."]
    pub fsm_bsle0: FSM_BSLE0,
    #[doc = "0x22e4 - Internal. Only to be used through TI provided API."]
    pub fsm_bsle1: FSM_BSLE1,
    _reserved132: [u8; 8usize],
    #[doc = "0x22f0 - Internal. Only to be used through TI provided API."]
    pub fsm_bslp0: FSM_BSLP0,
    #[doc = "0x22f4 - Internal. Only to be used through TI provided API."]
    pub fsm_bslp1: FSM_BSLP1,
    #[doc = "0x22f8 - FMC FSM Enable 128-bit Wide Programming"]
    pub fsm_pgm128: FSM_PGM128,
    _reserved135: [u8; 260usize],
    #[doc = "0x2400 - Internal. Only to be used through TI provided API."]
    pub fcfg_bank: FCFG_BANK,
    #[doc = "0x2404 - Internal. Only to be used through TI provided API."]
    pub fcfg_wrapper: FCFG_WRAPPER,
    #[doc = "0x2408 - Internal. Only to be used through TI provided API."]
    pub fcfg_bnk_type: FCFG_BNK_TYPE,
    _reserved138: [u8; 4usize],
    #[doc = "0x2410 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_start: FCFG_B0_START,
    #[doc = "0x2414 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_start: FCFG_B1_START,
    #[doc = "0x2418 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_start: FCFG_B2_START,
    #[doc = "0x241c - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_start: FCFG_B3_START,
    #[doc = "0x2420 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_start: FCFG_B4_START,
    #[doc = "0x2424 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_start: FCFG_B5_START,
    #[doc = "0x2428 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_start: FCFG_B6_START,
    #[doc = "0x242c - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_start: FCFG_B7_START,
    #[doc = "0x2430 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize0: FCFG_B0_SSIZE0,
    #[doc = "0x2434 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize1: FCFG_B0_SSIZE1,
    #[doc = "0x2438 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize2: FCFG_B0_SSIZE2,
    #[doc = "0x243c - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize3: FCFG_B0_SSIZE3,
    #[doc = "0x2440 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize0: FCFG_B1_SSIZE0,
    #[doc = "0x2444 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize1: FCFG_B1_SSIZE1,
    #[doc = "0x2448 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize2: FCFG_B1_SSIZE2,
    #[doc = "0x244c - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize3: FCFG_B1_SSIZE3,
    #[doc = "0x2450 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize0: FCFG_B2_SSIZE0,
    #[doc = "0x2454 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize1: FCFG_B2_SSIZE1,
    #[doc = "0x2458 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize2: FCFG_B2_SSIZE2,
    #[doc = "0x245c - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize3: FCFG_B2_SSIZE3,
    #[doc = "0x2460 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize0: FCFG_B3_SSIZE0,
    #[doc = "0x2464 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize1: FCFG_B3_SSIZE1,
    #[doc = "0x2468 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize2: FCFG_B3_SSIZE2,
    #[doc = "0x246c - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize3: FCFG_B3_SSIZE3,
    #[doc = "0x2470 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize0: FCFG_B4_SSIZE0,
    #[doc = "0x2474 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize1: FCFG_B4_SSIZE1,
    #[doc = "0x2478 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize2: FCFG_B4_SSIZE2,
    #[doc = "0x247c - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize3: FCFG_B4_SSIZE3,
    #[doc = "0x2480 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize0: FCFG_B5_SSIZE0,
    #[doc = "0x2484 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize1: FCFG_B5_SSIZE1,
    #[doc = "0x2488 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize2: FCFG_B5_SSIZE2,
    #[doc = "0x248c - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize3: FCFG_B5_SSIZE3,
    #[doc = "0x2490 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize0: FCFG_B6_SSIZE0,
    #[doc = "0x2494 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize1: FCFG_B6_SSIZE1,
    #[doc = "0x2498 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize2: FCFG_B6_SSIZE2,
    #[doc = "0x249c - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize3: FCFG_B6_SSIZE3,
    #[doc = "0x24a0 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize0: FCFG_B7_SSIZE0,
    #[doc = "0x24a4 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize1: FCFG_B7_SSIZE1,
    #[doc = "0x24a8 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize2: FCFG_B7_SSIZE2,
    #[doc = "0x24ac - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize3: FCFG_B7_SSIZE3,
}
#[doc = "FMC and Efuse Status\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [stat](stat) module"]
pub type STAT = crate::Reg<u32, _STAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _STAT;
#[doc = "`read()` method returns [stat::R](stat::R) reader structure"]
impl crate::Readable for STAT {}
#[doc = "`write(|w| ..)` method takes [stat::W](stat::W) writer structure"]
impl crate::Writable for STAT {}
#[doc = "FMC and Efuse Status"]
pub mod stat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub type CFG = crate::Reg<u32, _CFG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CFG;
#[doc = "`read()` method returns [cfg::R](cfg::R) reader structure"]
impl crate::Readable for CFG {}
#[doc = "`write(|w| ..)` method takes [cfg::W](cfg::W) writer structure"]
impl crate::Writable for CFG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod cfg;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [syscode_start](syscode_start) module"]
pub type SYSCODE_START = crate::Reg<u32, _SYSCODE_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SYSCODE_START;
#[doc = "`read()` method returns [syscode_start::R](syscode_start::R) reader structure"]
impl crate::Readable for SYSCODE_START {}
#[doc = "`write(|w| ..)` method takes [syscode_start::W](syscode_start::W) writer structure"]
impl crate::Writable for SYSCODE_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod syscode_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [flash_size](flash_size) module"]
pub type FLASH_SIZE = crate::Reg<u32, _FLASH_SIZE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLASH_SIZE;
#[doc = "`read()` method returns [flash_size::R](flash_size::R) reader structure"]
impl crate::Readable for FLASH_SIZE {}
#[doc = "`write(|w| ..)` method takes [flash_size::W](flash_size::W) writer structure"]
impl crate::Writable for FLASH_SIZE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flash_size;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwlock](fwlock) module"]
pub type FWLOCK = crate::Reg<u32, _FWLOCK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWLOCK;
#[doc = "`read()` method returns [fwlock::R](fwlock::R) reader structure"]
impl crate::Readable for FWLOCK {}
#[doc = "`write(|w| ..)` method takes [fwlock::W](fwlock::W) writer structure"]
impl crate::Writable for FWLOCK {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwlock;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwflag](fwflag) module"]
pub type FWFLAG = crate::Reg<u32, _FWFLAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWFLAG;
#[doc = "`read()` method returns [fwflag::R](fwflag::R) reader structure"]
impl crate::Readable for FWFLAG {}
#[doc = "`write(|w| ..)` method takes [fwflag::W](fwflag::W) writer structure"]
impl crate::Writable for FWFLAG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwflag;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuse](efuse) module"]
pub type EFUSE = crate::Reg<u32, _EFUSE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSE;
#[doc = "`read()` method returns [efuse::R](efuse::R) reader structure"]
impl crate::Readable for EFUSE {}
#[doc = "`write(|w| ..)` method takes [efuse::W](efuse::W) writer structure"]
impl crate::Writable for EFUSE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuse;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuseaddr](efuseaddr) module"]
pub type EFUSEADDR = crate::Reg<u32, _EFUSEADDR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEADDR;
#[doc = "`read()` method returns [efuseaddr::R](efuseaddr::R) reader structure"]
impl crate::Readable for EFUSEADDR {}
#[doc = "`write(|w| ..)` method takes [efuseaddr::W](efuseaddr::W) writer structure"]
impl crate::Writable for EFUSEADDR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseaddr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [dataupper](dataupper) module"]
pub type DATAUPPER = crate::Reg<u32, _DATAUPPER>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DATAUPPER;
#[doc = "`read()` method returns [dataupper::R](dataupper::R) reader structure"]
impl crate::Readable for DATAUPPER {}
#[doc = "`write(|w| ..)` method takes [dataupper::W](dataupper::W) writer structure"]
impl crate::Writable for DATAUPPER {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod dataupper;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [datalower](datalower) module"]
pub type DATALOWER = crate::Reg<u32, _DATALOWER>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DATALOWER;
#[doc = "`read()` method returns [datalower::R](datalower::R) reader structure"]
impl crate::Readable for DATALOWER {}
#[doc = "`write(|w| ..)` method takes [datalower::W](datalower::W) writer structure"]
impl crate::Writable for DATALOWER {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod datalower;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efusecfg](efusecfg) module"]
pub type EFUSECFG = crate::Reg<u32, _EFUSECFG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSECFG;
#[doc = "`read()` method returns [efusecfg::R](efusecfg::R) reader structure"]
impl crate::Readable for EFUSECFG {}
#[doc = "`write(|w| ..)` method takes [efusecfg::W](efusecfg::W) writer structure"]
impl crate::Writable for EFUSECFG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecfg;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efusestat](efusestat) module"]
pub type EFUSESTAT = crate::Reg<u32, _EFUSESTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSESTAT;
#[doc = "`read()` method returns [efusestat::R](efusestat::R) reader structure"]
impl crate::Readable for EFUSESTAT {}
#[doc = "`write(|w| ..)` method takes [efusestat::W](efusestat::W) writer structure"]
impl crate::Writable for EFUSESTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusestat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [acc](acc) module"]
pub type ACC = crate::Reg<u32, _ACC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _ACC;
#[doc = "`read()` method returns [acc::R](acc::R) reader structure"]
impl crate::Readable for ACC {}
#[doc = "`write(|w| ..)` method takes [acc::W](acc::W) writer structure"]
impl crate::Writable for ACC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod acc;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [boundary](boundary) module"]
pub type BOUNDARY = crate::Reg<u32, _BOUNDARY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _BOUNDARY;
#[doc = "`read()` method returns [boundary::R](boundary::R) reader structure"]
impl crate::Readable for BOUNDARY {}
#[doc = "`write(|w| ..)` method takes [boundary::W](boundary::W) writer structure"]
impl crate::Writable for BOUNDARY {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod boundary;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuseflag](efuseflag) module"]
pub type EFUSEFLAG = crate::Reg<u32, _EFUSEFLAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEFLAG;
#[doc = "`read()` method returns [efuseflag::R](efuseflag::R) reader structure"]
impl crate::Readable for EFUSEFLAG {}
#[doc = "`write(|w| ..)` method takes [efuseflag::W](efuseflag::W) writer structure"]
impl crate::Writable for EFUSEFLAG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseflag;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efusekey](efusekey) module"]
pub type EFUSEKEY = crate::Reg<u32, _EFUSEKEY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEKEY;
#[doc = "`read()` method returns [efusekey::R](efusekey::R) reader structure"]
impl crate::Readable for EFUSEKEY {}
#[doc = "`write(|w| ..)` method takes [efusekey::W](efusekey::W) writer structure"]
impl crate::Writable for EFUSEKEY {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusekey;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuserelease](efuserelease) module"]
pub type EFUSERELEASE = crate::Reg<u32, _EFUSERELEASE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSERELEASE;
#[doc = "`read()` method returns [efuserelease::R](efuserelease::R) reader structure"]
impl crate::Readable for EFUSERELEASE {}
#[doc = "`write(|w| ..)` method takes [efuserelease::W](efuserelease::W) writer structure"]
impl crate::Writable for EFUSERELEASE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuserelease;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efusepins](efusepins) module"]
pub type EFUSEPINS = crate::Reg<u32, _EFUSEPINS>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEPINS;
#[doc = "`read()` method returns [efusepins::R](efusepins::R) reader structure"]
impl crate::Readable for EFUSEPINS {}
#[doc = "`write(|w| ..)` method takes [efusepins::W](efusepins::W) writer structure"]
impl crate::Writable for EFUSEPINS {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusepins;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efusecra](efusecra) module"]
pub type EFUSECRA = crate::Reg<u32, _EFUSECRA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSECRA;
#[doc = "`read()` method returns [efusecra::R](efusecra::R) reader structure"]
impl crate::Readable for EFUSECRA {}
#[doc = "`write(|w| ..)` method takes [efusecra::W](efusecra::W) writer structure"]
impl crate::Writable for EFUSECRA {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecra;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuseread](efuseread) module"]
pub type EFUSEREAD = crate::Reg<u32, _EFUSEREAD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEREAD;
#[doc = "`read()` method returns [efuseread::R](efuseread::R) reader structure"]
impl crate::Readable for EFUSEREAD {}
#[doc = "`write(|w| ..)` method takes [efuseread::W](efuseread::W) writer structure"]
impl crate::Writable for EFUSEREAD {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseread;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuseprogram](efuseprogram) module"]
pub type EFUSEPROGRAM = crate::Reg<u32, _EFUSEPROGRAM>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEPROGRAM;
#[doc = "`read()` method returns [efuseprogram::R](efuseprogram::R) reader structure"]
impl crate::Readable for EFUSEPROGRAM {}
#[doc = "`write(|w| ..)` method takes [efuseprogram::W](efuseprogram::W) writer structure"]
impl crate::Writable for EFUSEPROGRAM {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseprogram;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [efuseerror](efuseerror) module"]
pub type EFUSEERROR = crate::Reg<u32, _EFUSEERROR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EFUSEERROR;
#[doc = "`read()` method returns [efuseerror::R](efuseerror::R) reader structure"]
impl crate::Readable for EFUSEERROR {}
#[doc = "`write(|w| ..)` method takes [efuseerror::W](efuseerror::W) writer structure"]
impl crate::Writable for EFUSEERROR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseerror;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [singlebit](singlebit) module"]
pub type SINGLEBIT = crate::Reg<u32, _SINGLEBIT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SINGLEBIT;
#[doc = "`read()` method returns [singlebit::R](singlebit::R) reader structure"]
impl crate::Readable for SINGLEBIT {}
#[doc = "`write(|w| ..)` method takes [singlebit::W](singlebit::W) writer structure"]
impl crate::Writable for SINGLEBIT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod singlebit;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [twobit](twobit) module"]
pub type TWOBIT = crate::Reg<u32, _TWOBIT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _TWOBIT;
#[doc = "`read()` method returns [twobit::R](twobit::R) reader structure"]
impl crate::Readable for TWOBIT {}
#[doc = "`write(|w| ..)` method takes [twobit::W](twobit::W) writer structure"]
impl crate::Writable for TWOBIT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod twobit;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [selftestcyc](selftestcyc) module"]
pub type SELFTESTCYC = crate::Reg<u32, _SELFTESTCYC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SELFTESTCYC;
#[doc = "`read()` method returns [selftestcyc::R](selftestcyc::R) reader structure"]
impl crate::Readable for SELFTESTCYC {}
#[doc = "`write(|w| ..)` method takes [selftestcyc::W](selftestcyc::W) writer structure"]
impl crate::Writable for SELFTESTCYC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestcyc;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [selftestsign](selftestsign) module"]
pub type SELFTESTSIGN = crate::Reg<u32, _SELFTESTSIGN>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SELFTESTSIGN;
#[doc = "`read()` method returns [selftestsign::R](selftestsign::R) reader structure"]
impl crate::Readable for SELFTESTSIGN {}
#[doc = "`write(|w| ..)` method takes [selftestsign::W](selftestsign::W) writer structure"]
impl crate::Writable for SELFTESTSIGN {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestsign;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [frdctl](frdctl) module"]
pub type FRDCTL = crate::Reg<u32, _FRDCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FRDCTL;
#[doc = "`read()` method returns [frdctl::R](frdctl::R) reader structure"]
impl crate::Readable for FRDCTL {}
#[doc = "`write(|w| ..)` method takes [frdctl::W](frdctl::W) writer structure"]
impl crate::Writable for FRDCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod frdctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsprd](fsprd) module"]
pub type FSPRD = crate::Reg<u32, _FSPRD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSPRD;
#[doc = "`read()` method returns [fsprd::R](fsprd::R) reader structure"]
impl crate::Readable for FSPRD {}
#[doc = "`write(|w| ..)` method takes [fsprd::W](fsprd::W) writer structure"]
impl crate::Writable for FSPRD {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsprd;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fedacctl1](fedacctl1) module"]
pub type FEDACCTL1 = crate::Reg<u32, _FEDACCTL1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEDACCTL1;
#[doc = "`read()` method returns [fedacctl1::R](fedacctl1::R) reader structure"]
impl crate::Readable for FEDACCTL1 {}
#[doc = "`write(|w| ..)` method takes [fedacctl1::W](fedacctl1::W) writer structure"]
impl crate::Writable for FEDACCTL1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fedacctl2](fedacctl2) module"]
pub type FEDACCTL2 = crate::Reg<u32, _FEDACCTL2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEDACCTL2;
#[doc = "`read()` method returns [fedacctl2::R](fedacctl2::R) reader structure"]
impl crate::Readable for FEDACCTL2 {}
#[doc = "`write(|w| ..)` method takes [fedacctl2::W](fedacctl2::W) writer structure"]
impl crate::Writable for FEDACCTL2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcor_err_cnt](fcor_err_cnt) module"]
pub type FCOR_ERR_CNT = crate::Reg<u32, _FCOR_ERR_CNT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCOR_ERR_CNT;
#[doc = "`read()` method returns [fcor_err_cnt::R](fcor_err_cnt::R) reader structure"]
impl crate::Readable for FCOR_ERR_CNT {}
#[doc = "`write(|w| ..)` method takes [fcor_err_cnt::W](fcor_err_cnt::W) writer structure"]
impl crate::Writable for FCOR_ERR_CNT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_cnt;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcor_err_add](fcor_err_add) module"]
pub type FCOR_ERR_ADD = crate::Reg<u32, _FCOR_ERR_ADD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCOR_ERR_ADD;
#[doc = "`read()` method returns [fcor_err_add::R](fcor_err_add::R) reader structure"]
impl crate::Readable for FCOR_ERR_ADD {}
#[doc = "`write(|w| ..)` method takes [fcor_err_add::W](fcor_err_add::W) writer structure"]
impl crate::Writable for FCOR_ERR_ADD {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_add;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcor_err_pos](fcor_err_pos) module"]
pub type FCOR_ERR_POS = crate::Reg<u32, _FCOR_ERR_POS>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCOR_ERR_POS;
#[doc = "`read()` method returns [fcor_err_pos::R](fcor_err_pos::R) reader structure"]
impl crate::Readable for FCOR_ERR_POS {}
#[doc = "`write(|w| ..)` method takes [fcor_err_pos::W](fcor_err_pos::W) writer structure"]
impl crate::Writable for FCOR_ERR_POS {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_pos;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fedacstat](fedacstat) module"]
pub type FEDACSTAT = crate::Reg<u32, _FEDACSTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEDACSTAT;
#[doc = "`read()` method returns [fedacstat::R](fedacstat::R) reader structure"]
impl crate::Readable for FEDACSTAT {}
#[doc = "`write(|w| ..)` method takes [fedacstat::W](fedacstat::W) writer structure"]
impl crate::Writable for FEDACSTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacstat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [func_err_add](func_err_add) module"]
pub type FUNC_ERR_ADD = crate::Reg<u32, _FUNC_ERR_ADD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FUNC_ERR_ADD;
#[doc = "`read()` method returns [func_err_add::R](func_err_add::R) reader structure"]
impl crate::Readable for FUNC_ERR_ADD {}
#[doc = "`write(|w| ..)` method takes [func_err_add::W](func_err_add::W) writer structure"]
impl crate::Writable for FUNC_ERR_ADD {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod func_err_add;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fedacsdis](fedacsdis) module"]
pub type FEDACSDIS = crate::Reg<u32, _FEDACSDIS>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEDACSDIS;
#[doc = "`read()` method returns [fedacsdis::R](fedacsdis::R) reader structure"]
impl crate::Readable for FEDACSDIS {}
#[doc = "`write(|w| ..)` method takes [fedacsdis::W](fedacsdis::W) writer structure"]
impl crate::Writable for FEDACSDIS {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fprim_add_tag](fprim_add_tag) module"]
pub type FPRIM_ADD_TAG = crate::Reg<u32, _FPRIM_ADD_TAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPRIM_ADD_TAG;
#[doc = "`read()` method returns [fprim_add_tag::R](fprim_add_tag::R) reader structure"]
impl crate::Readable for FPRIM_ADD_TAG {}
#[doc = "`write(|w| ..)` method takes [fprim_add_tag::W](fprim_add_tag::W) writer structure"]
impl crate::Writable for FPRIM_ADD_TAG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fprim_add_tag;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fredu_add_tag](fredu_add_tag) module"]
pub type FREDU_ADD_TAG = crate::Reg<u32, _FREDU_ADD_TAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FREDU_ADD_TAG;
#[doc = "`read()` method returns [fredu_add_tag::R](fredu_add_tag::R) reader structure"]
impl crate::Readable for FREDU_ADD_TAG {}
#[doc = "`write(|w| ..)` method takes [fredu_add_tag::W](fredu_add_tag::W) writer structure"]
impl crate::Writable for FREDU_ADD_TAG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fredu_add_tag;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbprot](fbprot) module"]
pub type FBPROT = crate::Reg<u32, _FBPROT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBPROT;
#[doc = "`read()` method returns [fbprot::R](fbprot::R) reader structure"]
impl crate::Readable for FBPROT {}
#[doc = "`write(|w| ..)` method takes [fbprot::W](fbprot::W) writer structure"]
impl crate::Writable for FBPROT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprot;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbse](fbse) module"]
pub type FBSE = crate::Reg<u32, _FBSE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBSE;
#[doc = "`read()` method returns [fbse::R](fbse::R) reader structure"]
impl crate::Readable for FBSE {}
#[doc = "`write(|w| ..)` method takes [fbse::W](fbse::W) writer structure"]
impl crate::Writable for FBSE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbse;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbbusy](fbbusy) module"]
pub type FBBUSY = crate::Reg<u32, _FBBUSY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBBUSY;
#[doc = "`read()` method returns [fbbusy::R](fbbusy::R) reader structure"]
impl crate::Readable for FBBUSY {}
#[doc = "`write(|w| ..)` method takes [fbbusy::W](fbbusy::W) writer structure"]
impl crate::Writable for FBBUSY {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbbusy;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbac](fbac) module"]
pub type FBAC = crate::Reg<u32, _FBAC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBAC;
#[doc = "`read()` method returns [fbac::R](fbac::R) reader structure"]
impl crate::Readable for FBAC {}
#[doc = "`write(|w| ..)` method takes [fbac::W](fbac::W) writer structure"]
impl crate::Writable for FBAC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbac;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbfallback](fbfallback) module"]
pub type FBFALLBACK = crate::Reg<u32, _FBFALLBACK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBFALLBACK;
#[doc = "`read()` method returns [fbfallback::R](fbfallback::R) reader structure"]
impl crate::Readable for FBFALLBACK {}
#[doc = "`write(|w| ..)` method takes [fbfallback::W](fbfallback::W) writer structure"]
impl crate::Writable for FBFALLBACK {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbfallback;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbprdy](fbprdy) module"]
pub type FBPRDY = crate::Reg<u32, _FBPRDY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBPRDY;
#[doc = "`read()` method returns [fbprdy::R](fbprdy::R) reader structure"]
impl crate::Readable for FBPRDY {}
#[doc = "`write(|w| ..)` method takes [fbprdy::W](fbprdy::W) writer structure"]
impl crate::Writable for FBPRDY {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprdy;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fpac1](fpac1) module"]
pub type FPAC1 = crate::Reg<u32, _FPAC1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPAC1;
#[doc = "`read()` method returns [fpac1::R](fpac1::R) reader structure"]
impl crate::Readable for FPAC1 {}
#[doc = "`write(|w| ..)` method takes [fpac1::W](fpac1::W) writer structure"]
impl crate::Writable for FPAC1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fpac2](fpac2) module"]
pub type FPAC2 = crate::Reg<u32, _FPAC2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPAC2;
#[doc = "`read()` method returns [fpac2::R](fpac2::R) reader structure"]
impl crate::Readable for FPAC2 {}
#[doc = "`write(|w| ..)` method takes [fpac2::W](fpac2::W) writer structure"]
impl crate::Writable for FPAC2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fmac](fmac) module"]
pub type FMAC = crate::Reg<u32, _FMAC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FMAC;
#[doc = "`read()` method returns [fmac::R](fmac::R) reader structure"]
impl crate::Readable for FMAC {}
#[doc = "`write(|w| ..)` method takes [fmac::W](fmac::W) writer structure"]
impl crate::Writable for FMAC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmac;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fmstat](fmstat) module"]
pub type FMSTAT = crate::Reg<u32, _FMSTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FMSTAT;
#[doc = "`read()` method returns [fmstat::R](fmstat::R) reader structure"]
impl crate::Readable for FMSTAT {}
#[doc = "`write(|w| ..)` method takes [fmstat::W](fmstat::W) writer structure"]
impl crate::Writable for FMSTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmstat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [femu_dmsw](femu_dmsw) module"]
pub type FEMU_DMSW = crate::Reg<u32, _FEMU_DMSW>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEMU_DMSW;
#[doc = "`read()` method returns [femu_dmsw::R](femu_dmsw::R) reader structure"]
impl crate::Readable for FEMU_DMSW {}
#[doc = "`write(|w| ..)` method takes [femu_dmsw::W](femu_dmsw::W) writer structure"]
impl crate::Writable for FEMU_DMSW {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dmsw;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [femu_dlsw](femu_dlsw) module"]
pub type FEMU_DLSW = crate::Reg<u32, _FEMU_DLSW>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEMU_DLSW;
#[doc = "`read()` method returns [femu_dlsw::R](femu_dlsw::R) reader structure"]
impl crate::Readable for FEMU_DLSW {}
#[doc = "`write(|w| ..)` method takes [femu_dlsw::W](femu_dlsw::W) writer structure"]
impl crate::Writable for FEMU_DLSW {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dlsw;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [femu_ecc](femu_ecc) module"]
pub type FEMU_ECC = crate::Reg<u32, _FEMU_ECC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEMU_ECC;
#[doc = "`read()` method returns [femu_ecc::R](femu_ecc::R) reader structure"]
impl crate::Readable for FEMU_ECC {}
#[doc = "`write(|w| ..)` method takes [femu_ecc::W](femu_ecc::W) writer structure"]
impl crate::Writable for FEMU_ECC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_ecc;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [flock](flock) module"]
pub type FLOCK = crate::Reg<u32, _FLOCK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FLOCK;
#[doc = "`read()` method returns [flock::R](flock::R) reader structure"]
impl crate::Readable for FLOCK {}
#[doc = "`write(|w| ..)` method takes [flock::W](flock::W) writer structure"]
impl crate::Writable for FLOCK {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flock;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [femu_addr](femu_addr) module"]
pub type FEMU_ADDR = crate::Reg<u32, _FEMU_ADDR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEMU_ADDR;
#[doc = "`read()` method returns [femu_addr::R](femu_addr::R) reader structure"]
impl crate::Readable for FEMU_ADDR {}
#[doc = "`write(|w| ..)` method takes [femu_addr::W](femu_addr::W) writer structure"]
impl crate::Writable for FEMU_ADDR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_addr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fdiagctl](fdiagctl) module"]
pub type FDIAGCTL = crate::Reg<u32, _FDIAGCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FDIAGCTL;
#[doc = "`read()` method returns [fdiagctl::R](fdiagctl::R) reader structure"]
impl crate::Readable for FDIAGCTL {}
#[doc = "`write(|w| ..)` method takes [fdiagctl::W](fdiagctl::W) writer structure"]
impl crate::Writable for FDIAGCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fdiagctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fraw_datah](fraw_datah) module"]
pub type FRAW_DATAH = crate::Reg<u32, _FRAW_DATAH>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FRAW_DATAH;
#[doc = "`read()` method returns [fraw_datah::R](fraw_datah::R) reader structure"]
impl crate::Readable for FRAW_DATAH {}
#[doc = "`write(|w| ..)` method takes [fraw_datah::W](fraw_datah::W) writer structure"]
impl crate::Writable for FRAW_DATAH {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datah;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fraw_datal](fraw_datal) module"]
pub type FRAW_DATAL = crate::Reg<u32, _FRAW_DATAL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FRAW_DATAL;
#[doc = "`read()` method returns [fraw_datal::R](fraw_datal::R) reader structure"]
impl crate::Readable for FRAW_DATAL {}
#[doc = "`write(|w| ..)` method takes [fraw_datal::W](fraw_datal::W) writer structure"]
impl crate::Writable for FRAW_DATAL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datal;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fraw_ecc](fraw_ecc) module"]
pub type FRAW_ECC = crate::Reg<u32, _FRAW_ECC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FRAW_ECC;
#[doc = "`read()` method returns [fraw_ecc::R](fraw_ecc::R) reader structure"]
impl crate::Readable for FRAW_ECC {}
#[doc = "`write(|w| ..)` method takes [fraw_ecc::W](fraw_ecc::W) writer structure"]
impl crate::Writable for FRAW_ECC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_ecc;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fpar_ovr](fpar_ovr) module"]
pub type FPAR_OVR = crate::Reg<u32, _FPAR_OVR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPAR_OVR;
#[doc = "`read()` method returns [fpar_ovr::R](fpar_ovr::R) reader structure"]
impl crate::Readable for FPAR_OVR {}
#[doc = "`write(|w| ..)` method takes [fpar_ovr::W](fpar_ovr::W) writer structure"]
impl crate::Writable for FPAR_OVR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpar_ovr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvreadct](fvreadct) module"]
pub type FVREADCT = crate::Reg<u32, _FVREADCT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVREADCT;
#[doc = "`read()` method returns [fvreadct::R](fvreadct::R) reader structure"]
impl crate::Readable for FVREADCT {}
#[doc = "`write(|w| ..)` method takes [fvreadct::W](fvreadct::W) writer structure"]
impl crate::Writable for FVREADCT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvreadct;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvhvct1](fvhvct1) module"]
pub type FVHVCT1 = crate::Reg<u32, _FVHVCT1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVHVCT1;
#[doc = "`read()` method returns [fvhvct1::R](fvhvct1::R) reader structure"]
impl crate::Readable for FVHVCT1 {}
#[doc = "`write(|w| ..)` method takes [fvhvct1::W](fvhvct1::W) writer structure"]
impl crate::Writable for FVHVCT1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvhvct2](fvhvct2) module"]
pub type FVHVCT2 = crate::Reg<u32, _FVHVCT2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVHVCT2;
#[doc = "`read()` method returns [fvhvct2::R](fvhvct2::R) reader structure"]
impl crate::Readable for FVHVCT2 {}
#[doc = "`write(|w| ..)` method takes [fvhvct2::W](fvhvct2::W) writer structure"]
impl crate::Writable for FVHVCT2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvhvct3](fvhvct3) module"]
pub type FVHVCT3 = crate::Reg<u32, _FVHVCT3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVHVCT3;
#[doc = "`read()` method returns [fvhvct3::R](fvhvct3::R) reader structure"]
impl crate::Readable for FVHVCT3 {}
#[doc = "`write(|w| ..)` method takes [fvhvct3::W](fvhvct3::W) writer structure"]
impl crate::Writable for FVHVCT3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvnvct](fvnvct) module"]
pub type FVNVCT = crate::Reg<u32, _FVNVCT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVNVCT;
#[doc = "`read()` method returns [fvnvct::R](fvnvct::R) reader structure"]
impl crate::Readable for FVNVCT {}
#[doc = "`write(|w| ..)` method takes [fvnvct::W](fvnvct::W) writer structure"]
impl crate::Writable for FVNVCT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvnvct;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvslp](fvslp) module"]
pub type FVSLP = crate::Reg<u32, _FVSLP>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVSLP;
#[doc = "`read()` method returns [fvslp::R](fvslp::R) reader structure"]
impl crate::Readable for FVSLP {}
#[doc = "`write(|w| ..)` method takes [fvslp::W](fvslp::W) writer structure"]
impl crate::Writable for FVSLP {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvslp;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fvwlct](fvwlct) module"]
pub type FVWLCT = crate::Reg<u32, _FVWLCT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FVWLCT;
#[doc = "`read()` method returns [fvwlct::R](fvwlct::R) reader structure"]
impl crate::Readable for FVWLCT {}
#[doc = "`write(|w| ..)` method takes [fvwlct::W](fvwlct::W) writer structure"]
impl crate::Writable for FVWLCT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvwlct;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fefusectl](fefusectl) module"]
pub type FEFUSECTL = crate::Reg<u32, _FEFUSECTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEFUSECTL;
#[doc = "`read()` method returns [fefusectl::R](fefusectl::R) reader structure"]
impl crate::Readable for FEFUSECTL {}
#[doc = "`write(|w| ..)` method takes [fefusectl::W](fefusectl::W) writer structure"]
impl crate::Writable for FEFUSECTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusectl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fefusestat](fefusestat) module"]
pub type FEFUSESTAT = crate::Reg<u32, _FEFUSESTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEFUSESTAT;
#[doc = "`read()` method returns [fefusestat::R](fefusestat::R) reader structure"]
impl crate::Readable for FEFUSESTAT {}
#[doc = "`write(|w| ..)` method takes [fefusestat::W](fefusestat::W) writer structure"]
impl crate::Writable for FEFUSESTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusestat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fefusedata](fefusedata) module"]
pub type FEFUSEDATA = crate::Reg<u32, _FEFUSEDATA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEFUSEDATA;
#[doc = "`read()` method returns [fefusedata::R](fefusedata::R) reader structure"]
impl crate::Readable for FEFUSEDATA {}
#[doc = "`write(|w| ..)` method takes [fefusedata::W](fefusedata::W) writer structure"]
impl crate::Writable for FEFUSEDATA {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusedata;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fseqpmp](fseqpmp) module"]
pub type FSEQPMP = crate::Reg<u32, _FSEQPMP>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSEQPMP;
#[doc = "`read()` method returns [fseqpmp::R](fseqpmp::R) reader structure"]
impl crate::Readable for FSEQPMP {}
#[doc = "`write(|w| ..)` method takes [fseqpmp::W](fseqpmp::W) writer structure"]
impl crate::Writable for FSEQPMP {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fseqpmp;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fclktrim](fclktrim) module"]
pub type FCLKTRIM = crate::Reg<u32, _FCLKTRIM>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCLKTRIM;
#[doc = "`read()` method returns [fclktrim::R](fclktrim::R) reader structure"]
impl crate::Readable for FCLKTRIM {}
#[doc = "`write(|w| ..)` method takes [fclktrim::W](fclktrim::W) writer structure"]
impl crate::Writable for FCLKTRIM {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fclktrim;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [rom_test](rom_test) module"]
pub type ROM_TEST = crate::Reg<u32, _ROM_TEST>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _ROM_TEST;
#[doc = "`read()` method returns [rom_test::R](rom_test::R) reader structure"]
impl crate::Readable for ROM_TEST {}
#[doc = "`write(|w| ..)` method takes [rom_test::W](rom_test::W) writer structure"]
impl crate::Writable for ROM_TEST {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod rom_test;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fedacsdis2](fedacsdis2) module"]
pub type FEDACSDIS2 = crate::Reg<u32, _FEDACSDIS2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FEDACSDIS2;
#[doc = "`read()` method returns [fedacsdis2::R](fedacsdis2::R) reader structure"]
impl crate::Readable for FEDACSDIS2 {}
#[doc = "`write(|w| ..)` method takes [fedacsdis2::W](fedacsdis2::W) writer structure"]
impl crate::Writable for FEDACSDIS2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbstrobes](fbstrobes) module"]
pub type FBSTROBES = crate::Reg<u32, _FBSTROBES>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBSTROBES;
#[doc = "`read()` method returns [fbstrobes::R](fbstrobes::R) reader structure"]
impl crate::Readable for FBSTROBES {}
#[doc = "`write(|w| ..)` method takes [fbstrobes::W](fbstrobes::W) writer structure"]
impl crate::Writable for FBSTROBES {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbstrobes;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fpstrobes](fpstrobes) module"]
pub type FPSTROBES = crate::Reg<u32, _FPSTROBES>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPSTROBES;
#[doc = "`read()` method returns [fpstrobes::R](fpstrobes::R) reader structure"]
impl crate::Readable for FPSTROBES {}
#[doc = "`write(|w| ..)` method takes [fpstrobes::W](fpstrobes::W) writer structure"]
impl crate::Writable for FPSTROBES {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpstrobes;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fbmode](fbmode) module"]
pub type FBMODE = crate::Reg<u32, _FBMODE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FBMODE;
#[doc = "`read()` method returns [fbmode::R](fbmode::R) reader structure"]
impl crate::Readable for FBMODE {}
#[doc = "`write(|w| ..)` method takes [fbmode::W](fbmode::W) writer structure"]
impl crate::Writable for FBMODE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbmode;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [ftcr](ftcr) module"]
pub type FTCR = crate::Reg<u32, _FTCR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FTCR;
#[doc = "`read()` method returns [ftcr::R](ftcr::R) reader structure"]
impl crate::Readable for FTCR {}
#[doc = "`write(|w| ..)` method takes [ftcr::W](ftcr::W) writer structure"]
impl crate::Writable for FTCR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftcr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [faddr](faddr) module"]
pub type FADDR = crate::Reg<u32, _FADDR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FADDR;
#[doc = "`read()` method returns [faddr::R](faddr::R) reader structure"]
impl crate::Readable for FADDR {}
#[doc = "`write(|w| ..)` method takes [faddr::W](faddr::W) writer structure"]
impl crate::Writable for FADDR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod faddr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fpmtctl](fpmtctl) module"]
pub type FPMTCTL = crate::Reg<u32, _FPMTCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FPMTCTL;
#[doc = "`read()` method returns [fpmtctl::R](fpmtctl::R) reader structure"]
impl crate::Readable for FPMTCTL {}
#[doc = "`write(|w| ..)` method takes [fpmtctl::W](fpmtctl::W) writer structure"]
impl crate::Writable for FPMTCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpmtctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [pbistctl](pbistctl) module"]
pub type PBISTCTL = crate::Reg<u32, _PBISTCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _PBISTCTL;
#[doc = "`read()` method returns [pbistctl::R](pbistctl::R) reader structure"]
impl crate::Readable for PBISTCTL {}
#[doc = "`write(|w| ..)` method takes [pbistctl::W](pbistctl::W) writer structure"]
impl crate::Writable for PBISTCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod pbistctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [ftctl](ftctl) module"]
pub type FTCTL = crate::Reg<u32, _FTCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FTCTL;
#[doc = "`read()` method returns [ftctl::R](ftctl::R) reader structure"]
impl crate::Readable for FTCTL {}
#[doc = "`write(|w| ..)` method takes [ftctl::W](ftctl::W) writer structure"]
impl crate::Writable for FTCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite0](fwpwrite0) module"]
pub type FWPWRITE0 = crate::Reg<u32, _FWPWRITE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE0;
#[doc = "`read()` method returns [fwpwrite0::R](fwpwrite0::R) reader structure"]
impl crate::Readable for FWPWRITE0 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite0::W](fwpwrite0::W) writer structure"]
impl crate::Writable for FWPWRITE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite1](fwpwrite1) module"]
pub type FWPWRITE1 = crate::Reg<u32, _FWPWRITE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE1;
#[doc = "`read()` method returns [fwpwrite1::R](fwpwrite1::R) reader structure"]
impl crate::Readable for FWPWRITE1 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite1::W](fwpwrite1::W) writer structure"]
impl crate::Writable for FWPWRITE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite2](fwpwrite2) module"]
pub type FWPWRITE2 = crate::Reg<u32, _FWPWRITE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE2;
#[doc = "`read()` method returns [fwpwrite2::R](fwpwrite2::R) reader structure"]
impl crate::Readable for FWPWRITE2 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite2::W](fwpwrite2::W) writer structure"]
impl crate::Writable for FWPWRITE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite3](fwpwrite3) module"]
pub type FWPWRITE3 = crate::Reg<u32, _FWPWRITE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE3;
#[doc = "`read()` method returns [fwpwrite3::R](fwpwrite3::R) reader structure"]
impl crate::Readable for FWPWRITE3 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite3::W](fwpwrite3::W) writer structure"]
impl crate::Writable for FWPWRITE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite4](fwpwrite4) module"]
pub type FWPWRITE4 = crate::Reg<u32, _FWPWRITE4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE4;
#[doc = "`read()` method returns [fwpwrite4::R](fwpwrite4::R) reader structure"]
impl crate::Readable for FWPWRITE4 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite4::W](fwpwrite4::W) writer structure"]
impl crate::Writable for FWPWRITE4 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite4;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite5](fwpwrite5) module"]
pub type FWPWRITE5 = crate::Reg<u32, _FWPWRITE5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE5;
#[doc = "`read()` method returns [fwpwrite5::R](fwpwrite5::R) reader structure"]
impl crate::Readable for FWPWRITE5 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite5::W](fwpwrite5::W) writer structure"]
impl crate::Writable for FWPWRITE5 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite5;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite6](fwpwrite6) module"]
pub type FWPWRITE6 = crate::Reg<u32, _FWPWRITE6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE6;
#[doc = "`read()` method returns [fwpwrite6::R](fwpwrite6::R) reader structure"]
impl crate::Readable for FWPWRITE6 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite6::W](fwpwrite6::W) writer structure"]
impl crate::Writable for FWPWRITE6 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite6;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite7](fwpwrite7) module"]
pub type FWPWRITE7 = crate::Reg<u32, _FWPWRITE7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE7;
#[doc = "`read()` method returns [fwpwrite7::R](fwpwrite7::R) reader structure"]
impl crate::Readable for FWPWRITE7 {}
#[doc = "`write(|w| ..)` method takes [fwpwrite7::W](fwpwrite7::W) writer structure"]
impl crate::Writable for FWPWRITE7 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite7;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fwpwrite_ecc](fwpwrite_ecc) module"]
pub type FWPWRITE_ECC = crate::Reg<u32, _FWPWRITE_ECC>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FWPWRITE_ECC;
#[doc = "`read()` method returns [fwpwrite_ecc::R](fwpwrite_ecc::R) reader structure"]
impl crate::Readable for FWPWRITE_ECC {}
#[doc = "`write(|w| ..)` method takes [fwpwrite_ecc::W](fwpwrite_ecc::W) writer structure"]
impl crate::Writable for FWPWRITE_ECC {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite_ecc;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fswstat](fswstat) module"]
pub type FSWSTAT = crate::Reg<u32, _FSWSTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSWSTAT;
#[doc = "`read()` method returns [fswstat::R](fswstat::R) reader structure"]
impl crate::Readable for FSWSTAT {}
#[doc = "`write(|w| ..)` method takes [fswstat::W](fswstat::W) writer structure"]
impl crate::Writable for FSWSTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fswstat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_glbctl](fsm_glbctl) module"]
pub type FSM_GLBCTL = crate::Reg<u32, _FSM_GLBCTL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_GLBCTL;
#[doc = "`read()` method returns [fsm_glbctl::R](fsm_glbctl::R) reader structure"]
impl crate::Readable for FSM_GLBCTL {}
#[doc = "`write(|w| ..)` method takes [fsm_glbctl::W](fsm_glbctl::W) writer structure"]
impl crate::Writable for FSM_GLBCTL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_glbctl;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_state](fsm_state) module"]
pub type FSM_STATE = crate::Reg<u32, _FSM_STATE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_STATE;
#[doc = "`read()` method returns [fsm_state::R](fsm_state::R) reader structure"]
impl crate::Readable for FSM_STATE {}
#[doc = "`write(|w| ..)` method takes [fsm_state::W](fsm_state::W) writer structure"]
impl crate::Writable for FSM_STATE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_state;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_stat](fsm_stat) module"]
pub type FSM_STAT = crate::Reg<u32, _FSM_STAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_STAT;
#[doc = "`read()` method returns [fsm_stat::R](fsm_stat::R) reader structure"]
impl crate::Readable for FSM_STAT {}
#[doc = "`write(|w| ..)` method takes [fsm_stat::W](fsm_stat::W) writer structure"]
impl crate::Writable for FSM_STAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_stat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_cmd](fsm_cmd) module"]
pub type FSM_CMD = crate::Reg<u32, _FSM_CMD>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_CMD;
#[doc = "`read()` method returns [fsm_cmd::R](fsm_cmd::R) reader structure"]
impl crate::Readable for FSM_CMD {}
#[doc = "`write(|w| ..)` method takes [fsm_cmd::W](fsm_cmd::W) writer structure"]
impl crate::Writable for FSM_CMD {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmd;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pe_osu](fsm_pe_osu) module"]
pub type FSM_PE_OSU = crate::Reg<u32, _FSM_PE_OSU>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PE_OSU;
#[doc = "`read()` method returns [fsm_pe_osu::R](fsm_pe_osu::R) reader structure"]
impl crate::Readable for FSM_PE_OSU {}
#[doc = "`write(|w| ..)` method takes [fsm_pe_osu::W](fsm_pe_osu::W) writer structure"]
impl crate::Writable for FSM_PE_OSU {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_osu;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_vstat](fsm_vstat) module"]
pub type FSM_VSTAT = crate::Reg<u32, _FSM_VSTAT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_VSTAT;
#[doc = "`read()` method returns [fsm_vstat::R](fsm_vstat::R) reader structure"]
impl crate::Readable for FSM_VSTAT {}
#[doc = "`write(|w| ..)` method takes [fsm_vstat::W](fsm_vstat::W) writer structure"]
impl crate::Writable for FSM_VSTAT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_vstat;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pe_vsu](fsm_pe_vsu) module"]
pub type FSM_PE_VSU = crate::Reg<u32, _FSM_PE_VSU>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PE_VSU;
#[doc = "`read()` method returns [fsm_pe_vsu::R](fsm_pe_vsu::R) reader structure"]
impl crate::Readable for FSM_PE_VSU {}
#[doc = "`write(|w| ..)` method takes [fsm_pe_vsu::W](fsm_pe_vsu::W) writer structure"]
impl crate::Writable for FSM_PE_VSU {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vsu;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_cmp_vsu](fsm_cmp_vsu) module"]
pub type FSM_CMP_VSU = crate::Reg<u32, _FSM_CMP_VSU>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_CMP_VSU;
#[doc = "`read()` method returns [fsm_cmp_vsu::R](fsm_cmp_vsu::R) reader structure"]
impl crate::Readable for FSM_CMP_VSU {}
#[doc = "`write(|w| ..)` method takes [fsm_cmp_vsu::W](fsm_cmp_vsu::W) writer structure"]
impl crate::Writable for FSM_CMP_VSU {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmp_vsu;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_ex_val](fsm_ex_val) module"]
pub type FSM_EX_VAL = crate::Reg<u32, _FSM_EX_VAL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_EX_VAL;
#[doc = "`read()` method returns [fsm_ex_val::R](fsm_ex_val::R) reader structure"]
impl crate::Readable for FSM_EX_VAL {}
#[doc = "`write(|w| ..)` method takes [fsm_ex_val::W](fsm_ex_val::W) writer structure"]
impl crate::Writable for FSM_EX_VAL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ex_val;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_rd_h](fsm_rd_h) module"]
pub type FSM_RD_H = crate::Reg<u32, _FSM_RD_H>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_RD_H;
#[doc = "`read()` method returns [fsm_rd_h::R](fsm_rd_h::R) reader structure"]
impl crate::Readable for FSM_RD_H {}
#[doc = "`write(|w| ..)` method takes [fsm_rd_h::W](fsm_rd_h::W) writer structure"]
impl crate::Writable for FSM_RD_H {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_rd_h;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_p_oh](fsm_p_oh) module"]
pub type FSM_P_OH = crate::Reg<u32, _FSM_P_OH>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_P_OH;
#[doc = "`read()` method returns [fsm_p_oh::R](fsm_p_oh::R) reader structure"]
impl crate::Readable for FSM_P_OH {}
#[doc = "`write(|w| ..)` method takes [fsm_p_oh::W](fsm_p_oh::W) writer structure"]
impl crate::Writable for FSM_P_OH {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_p_oh;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_era_oh](fsm_era_oh) module"]
pub type FSM_ERA_OH = crate::Reg<u32, _FSM_ERA_OH>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ERA_OH;
#[doc = "`read()` method returns [fsm_era_oh::R](fsm_era_oh::R) reader structure"]
impl crate::Readable for FSM_ERA_OH {}
#[doc = "`write(|w| ..)` method takes [fsm_era_oh::W](fsm_era_oh::W) writer structure"]
impl crate::Writable for FSM_ERA_OH {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_oh;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_sav_ppul](fsm_sav_ppul) module"]
pub type FSM_SAV_PPUL = crate::Reg<u32, _FSM_SAV_PPUL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_SAV_PPUL;
#[doc = "`read()` method returns [fsm_sav_ppul::R](fsm_sav_ppul::R) reader structure"]
impl crate::Readable for FSM_SAV_PPUL {}
#[doc = "`write(|w| ..)` method takes [fsm_sav_ppul::W](fsm_sav_ppul::W) writer structure"]
impl crate::Writable for FSM_SAV_PPUL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_ppul;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pe_vh](fsm_pe_vh) module"]
pub type FSM_PE_VH = crate::Reg<u32, _FSM_PE_VH>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PE_VH;
#[doc = "`read()` method returns [fsm_pe_vh::R](fsm_pe_vh::R) reader structure"]
impl crate::Readable for FSM_PE_VH {}
#[doc = "`write(|w| ..)` method takes [fsm_pe_vh::W](fsm_pe_vh::W) writer structure"]
impl crate::Writable for FSM_PE_VH {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vh;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_prg_pw](fsm_prg_pw) module"]
pub type FSM_PRG_PW = crate::Reg<u32, _FSM_PRG_PW>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PRG_PW;
#[doc = "`read()` method returns [fsm_prg_pw::R](fsm_prg_pw::R) reader structure"]
impl crate::Readable for FSM_PRG_PW {}
#[doc = "`write(|w| ..)` method takes [fsm_prg_pw::W](fsm_prg_pw::W) writer structure"]
impl crate::Writable for FSM_PRG_PW {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pw;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_era_pw](fsm_era_pw) module"]
pub type FSM_ERA_PW = crate::Reg<u32, _FSM_ERA_PW>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ERA_PW;
#[doc = "`read()` method returns [fsm_era_pw::R](fsm_era_pw::R) reader structure"]
impl crate::Readable for FSM_ERA_PW {}
#[doc = "`write(|w| ..)` method takes [fsm_era_pw::W](fsm_era_pw::W) writer structure"]
impl crate::Writable for FSM_ERA_PW {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pw;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_sav_era_pul](fsm_sav_era_pul) module"]
pub type FSM_SAV_ERA_PUL = crate::Reg<u32, _FSM_SAV_ERA_PUL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_SAV_ERA_PUL;
#[doc = "`read()` method returns [fsm_sav_era_pul::R](fsm_sav_era_pul::R) reader structure"]
impl crate::Readable for FSM_SAV_ERA_PUL {}
#[doc = "`write(|w| ..)` method takes [fsm_sav_era_pul::W](fsm_sav_era_pul::W) writer structure"]
impl crate::Writable for FSM_SAV_ERA_PUL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_era_pul;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_timer](fsm_timer) module"]
pub type FSM_TIMER = crate::Reg<u32, _FSM_TIMER>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_TIMER;
#[doc = "`read()` method returns [fsm_timer::R](fsm_timer::R) reader structure"]
impl crate::Readable for FSM_TIMER {}
#[doc = "`write(|w| ..)` method takes [fsm_timer::W](fsm_timer::W) writer structure"]
impl crate::Writable for FSM_TIMER {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_timer;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_mode](fsm_mode) module"]
pub type FSM_MODE = crate::Reg<u32, _FSM_MODE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_MODE;
#[doc = "`read()` method returns [fsm_mode::R](fsm_mode::R) reader structure"]
impl crate::Readable for FSM_MODE {}
#[doc = "`write(|w| ..)` method takes [fsm_mode::W](fsm_mode::W) writer structure"]
impl crate::Writable for FSM_MODE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_mode;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pgm](fsm_pgm) module"]
pub type FSM_PGM = crate::Reg<u32, _FSM_PGM>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PGM;
#[doc = "`read()` method returns [fsm_pgm::R](fsm_pgm::R) reader structure"]
impl crate::Readable for FSM_PGM {}
#[doc = "`write(|w| ..)` method takes [fsm_pgm::W](fsm_pgm::W) writer structure"]
impl crate::Writable for FSM_PGM {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_era](fsm_era) module"]
pub type FSM_ERA = crate::Reg<u32, _FSM_ERA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ERA;
#[doc = "`read()` method returns [fsm_era::R](fsm_era::R) reader structure"]
impl crate::Readable for FSM_ERA {}
#[doc = "`write(|w| ..)` method takes [fsm_era::W](fsm_era::W) writer structure"]
impl crate::Writable for FSM_ERA {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_prg_pul](fsm_prg_pul) module"]
pub type FSM_PRG_PUL = crate::Reg<u32, _FSM_PRG_PUL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PRG_PUL;
#[doc = "`read()` method returns [fsm_prg_pul::R](fsm_prg_pul::R) reader structure"]
impl crate::Readable for FSM_PRG_PUL {}
#[doc = "`write(|w| ..)` method takes [fsm_prg_pul::W](fsm_prg_pul::W) writer structure"]
impl crate::Writable for FSM_PRG_PUL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pul;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_era_pul](fsm_era_pul) module"]
pub type FSM_ERA_PUL = crate::Reg<u32, _FSM_ERA_PUL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ERA_PUL;
#[doc = "`read()` method returns [fsm_era_pul::R](fsm_era_pul::R) reader structure"]
impl crate::Readable for FSM_ERA_PUL {}
#[doc = "`write(|w| ..)` method takes [fsm_era_pul::W](fsm_era_pul::W) writer structure"]
impl crate::Writable for FSM_ERA_PUL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pul;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_step_size](fsm_step_size) module"]
pub type FSM_STEP_SIZE = crate::Reg<u32, _FSM_STEP_SIZE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_STEP_SIZE;
#[doc = "`read()` method returns [fsm_step_size::R](fsm_step_size::R) reader structure"]
impl crate::Readable for FSM_STEP_SIZE {}
#[doc = "`write(|w| ..)` method takes [fsm_step_size::W](fsm_step_size::W) writer structure"]
impl crate::Writable for FSM_STEP_SIZE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_step_size;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pul_cntr](fsm_pul_cntr) module"]
pub type FSM_PUL_CNTR = crate::Reg<u32, _FSM_PUL_CNTR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PUL_CNTR;
#[doc = "`read()` method returns [fsm_pul_cntr::R](fsm_pul_cntr::R) reader structure"]
impl crate::Readable for FSM_PUL_CNTR {}
#[doc = "`write(|w| ..)` method takes [fsm_pul_cntr::W](fsm_pul_cntr::W) writer structure"]
impl crate::Writable for FSM_PUL_CNTR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pul_cntr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_ec_step_height](fsm_ec_step_height) module"]
pub type FSM_EC_STEP_HEIGHT = crate::Reg<u32, _FSM_EC_STEP_HEIGHT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_EC_STEP_HEIGHT;
#[doc = "`read()` method returns [fsm_ec_step_height::R](fsm_ec_step_height::R) reader structure"]
impl crate::Readable for FSM_EC_STEP_HEIGHT {}
#[doc = "`write(|w| ..)` method takes [fsm_ec_step_height::W](fsm_ec_step_height::W) writer structure"]
impl crate::Writable for FSM_EC_STEP_HEIGHT {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ec_step_height;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_st_machine](fsm_st_machine) module"]
pub type FSM_ST_MACHINE = crate::Reg<u32, _FSM_ST_MACHINE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ST_MACHINE;
#[doc = "`read()` method returns [fsm_st_machine::R](fsm_st_machine::R) reader structure"]
impl crate::Readable for FSM_ST_MACHINE {}
#[doc = "`write(|w| ..)` method takes [fsm_st_machine::W](fsm_st_machine::W) writer structure"]
impl crate::Writable for FSM_ST_MACHINE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_st_machine;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_fles](fsm_fles) module"]
pub type FSM_FLES = crate::Reg<u32, _FSM_FLES>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_FLES;
#[doc = "`read()` method returns [fsm_fles::R](fsm_fles::R) reader structure"]
impl crate::Readable for FSM_FLES {}
#[doc = "`write(|w| ..)` method takes [fsm_fles::W](fsm_fles::W) writer structure"]
impl crate::Writable for FSM_FLES {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_fles;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_wr_ena](fsm_wr_ena) module"]
pub type FSM_WR_ENA = crate::Reg<u32, _FSM_WR_ENA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_WR_ENA;
#[doc = "`read()` method returns [fsm_wr_ena::R](fsm_wr_ena::R) reader structure"]
impl crate::Readable for FSM_WR_ENA {}
#[doc = "`write(|w| ..)` method takes [fsm_wr_ena::W](fsm_wr_ena::W) writer structure"]
impl crate::Writable for FSM_WR_ENA {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_wr_ena;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_acc_pp](fsm_acc_pp) module"]
pub type FSM_ACC_PP = crate::Reg<u32, _FSM_ACC_PP>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ACC_PP;
#[doc = "`read()` method returns [fsm_acc_pp::R](fsm_acc_pp::R) reader structure"]
impl crate::Readable for FSM_ACC_PP {}
#[doc = "`write(|w| ..)` method takes [fsm_acc_pp::W](fsm_acc_pp::W) writer structure"]
impl crate::Writable for FSM_ACC_PP {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_pp;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_acc_ep](fsm_acc_ep) module"]
pub type FSM_ACC_EP = crate::Reg<u32, _FSM_ACC_EP>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ACC_EP;
#[doc = "`read()` method returns [fsm_acc_ep::R](fsm_acc_ep::R) reader structure"]
impl crate::Readable for FSM_ACC_EP {}
#[doc = "`write(|w| ..)` method takes [fsm_acc_ep::W](fsm_acc_ep::W) writer structure"]
impl crate::Writable for FSM_ACC_EP {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_ep;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_addr](fsm_addr) module"]
pub type FSM_ADDR = crate::Reg<u32, _FSM_ADDR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ADDR;
#[doc = "`read()` method returns [fsm_addr::R](fsm_addr::R) reader structure"]
impl crate::Readable for FSM_ADDR {}
#[doc = "`write(|w| ..)` method takes [fsm_addr::W](fsm_addr::W) writer structure"]
impl crate::Writable for FSM_ADDR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_addr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_sector](fsm_sector) module"]
pub type FSM_SECTOR = crate::Reg<u32, _FSM_SECTOR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_SECTOR;
#[doc = "`read()` method returns [fsm_sector::R](fsm_sector::R) reader structure"]
impl crate::Readable for FSM_SECTOR {}
#[doc = "`write(|w| ..)` method takes [fsm_sector::W](fsm_sector::W) writer structure"]
impl crate::Writable for FSM_SECTOR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fmc_rev_id](fmc_rev_id) module"]
pub type FMC_REV_ID = crate::Reg<u32, _FMC_REV_ID>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FMC_REV_ID;
#[doc = "`read()` method returns [fmc_rev_id::R](fmc_rev_id::R) reader structure"]
impl crate::Readable for FMC_REV_ID {}
#[doc = "`write(|w| ..)` method takes [fmc_rev_id::W](fmc_rev_id::W) writer structure"]
impl crate::Writable for FMC_REV_ID {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmc_rev_id;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_err_addr](fsm_err_addr) module"]
pub type FSM_ERR_ADDR = crate::Reg<u32, _FSM_ERR_ADDR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_ERR_ADDR;
#[doc = "`read()` method returns [fsm_err_addr::R](fsm_err_addr::R) reader structure"]
impl crate::Readable for FSM_ERR_ADDR {}
#[doc = "`write(|w| ..)` method takes [fsm_err_addr::W](fsm_err_addr::W) writer structure"]
impl crate::Writable for FSM_ERR_ADDR {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_err_addr;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pgm_maxpul](fsm_pgm_maxpul) module"]
pub type FSM_PGM_MAXPUL = crate::Reg<u32, _FSM_PGM_MAXPUL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PGM_MAXPUL;
#[doc = "`read()` method returns [fsm_pgm_maxpul::R](fsm_pgm_maxpul::R) reader structure"]
impl crate::Readable for FSM_PGM_MAXPUL {}
#[doc = "`write(|w| ..)` method takes [fsm_pgm_maxpul::W](fsm_pgm_maxpul::W) writer structure"]
impl crate::Writable for FSM_PGM_MAXPUL {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm_maxpul;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_execute](fsm_execute) module"]
pub type FSM_EXECUTE = crate::Reg<u32, _FSM_EXECUTE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_EXECUTE;
#[doc = "`read()` method returns [fsm_execute::R](fsm_execute::R) reader structure"]
impl crate::Readable for FSM_EXECUTE {}
#[doc = "`write(|w| ..)` method takes [fsm_execute::W](fsm_execute::W) writer structure"]
impl crate::Writable for FSM_EXECUTE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_execute;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [eeprom_cfg](eeprom_cfg) module"]
pub type EEPROM_CFG = crate::Reg<u32, _EEPROM_CFG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EEPROM_CFG;
#[doc = "`read()` method returns [eeprom_cfg::R](eeprom_cfg::R) reader structure"]
impl crate::Readable for EEPROM_CFG {}
#[doc = "`write(|w| ..)` method takes [eeprom_cfg::W](eeprom_cfg::W) writer structure"]
impl crate::Writable for EEPROM_CFG {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod eeprom_cfg;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_sector1](fsm_sector1) module"]
pub type FSM_SECTOR1 = crate::Reg<u32, _FSM_SECTOR1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_SECTOR1;
#[doc = "`read()` method returns [fsm_sector1::R](fsm_sector1::R) reader structure"]
impl crate::Readable for FSM_SECTOR1 {}
#[doc = "`write(|w| ..)` method takes [fsm_sector1::W](fsm_sector1::W) writer structure"]
impl crate::Writable for FSM_SECTOR1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_sector2](fsm_sector2) module"]
pub type FSM_SECTOR2 = crate::Reg<u32, _FSM_SECTOR2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_SECTOR2;
#[doc = "`read()` method returns [fsm_sector2::R](fsm_sector2::R) reader structure"]
impl crate::Readable for FSM_SECTOR2 {}
#[doc = "`write(|w| ..)` method takes [fsm_sector2::W](fsm_sector2::W) writer structure"]
impl crate::Writable for FSM_SECTOR2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_bsle0](fsm_bsle0) module"]
pub type FSM_BSLE0 = crate::Reg<u32, _FSM_BSLE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_BSLE0;
#[doc = "`read()` method returns [fsm_bsle0::R](fsm_bsle0::R) reader structure"]
impl crate::Readable for FSM_BSLE0 {}
#[doc = "`write(|w| ..)` method takes [fsm_bsle0::W](fsm_bsle0::W) writer structure"]
impl crate::Writable for FSM_BSLE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_bsle1](fsm_bsle1) module"]
pub type FSM_BSLE1 = crate::Reg<u32, _FSM_BSLE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_BSLE1;
#[doc = "`read()` method returns [fsm_bsle1::R](fsm_bsle1::R) reader structure"]
impl crate::Readable for FSM_BSLE1 {}
#[doc = "`write(|w| ..)` method takes [fsm_bsle1::W](fsm_bsle1::W) writer structure"]
impl crate::Writable for FSM_BSLE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_bslp0](fsm_bslp0) module"]
pub type FSM_BSLP0 = crate::Reg<u32, _FSM_BSLP0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_BSLP0;
#[doc = "`read()` method returns [fsm_bslp0::R](fsm_bslp0::R) reader structure"]
impl crate::Readable for FSM_BSLP0 {}
#[doc = "`write(|w| ..)` method takes [fsm_bslp0::W](fsm_bslp0::W) writer structure"]
impl crate::Writable for FSM_BSLP0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_bslp1](fsm_bslp1) module"]
pub type FSM_BSLP1 = crate::Reg<u32, _FSM_BSLP1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_BSLP1;
#[doc = "`read()` method returns [fsm_bslp1::R](fsm_bslp1::R) reader structure"]
impl crate::Readable for FSM_BSLP1 {}
#[doc = "`write(|w| ..)` method takes [fsm_bslp1::W](fsm_bslp1::W) writer structure"]
impl crate::Writable for FSM_BSLP1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp1;
#[doc = "FMC FSM Enable 128-bit Wide Programming\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fsm_pgm128](fsm_pgm128) module"]
pub type FSM_PGM128 = crate::Reg<u32, _FSM_PGM128>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FSM_PGM128;
#[doc = "`read()` method returns [fsm_pgm128::R](fsm_pgm128::R) reader structure"]
impl crate::Readable for FSM_PGM128 {}
#[doc = "`write(|w| ..)` method takes [fsm_pgm128::W](fsm_pgm128::W) writer structure"]
impl crate::Writable for FSM_PGM128 {}
#[doc = "FMC FSM Enable 128-bit Wide Programming"]
pub mod fsm_pgm128;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_bank](fcfg_bank) module"]
pub type FCFG_BANK = crate::Reg<u32, _FCFG_BANK>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_BANK;
#[doc = "`read()` method returns [fcfg_bank::R](fcfg_bank::R) reader structure"]
impl crate::Readable for FCFG_BANK {}
#[doc = "`write(|w| ..)` method takes [fcfg_bank::W](fcfg_bank::W) writer structure"]
impl crate::Writable for FCFG_BANK {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bank;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_wrapper](fcfg_wrapper) module"]
pub type FCFG_WRAPPER = crate::Reg<u32, _FCFG_WRAPPER>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_WRAPPER;
#[doc = "`read()` method returns [fcfg_wrapper::R](fcfg_wrapper::R) reader structure"]
impl crate::Readable for FCFG_WRAPPER {}
#[doc = "`write(|w| ..)` method takes [fcfg_wrapper::W](fcfg_wrapper::W) writer structure"]
impl crate::Writable for FCFG_WRAPPER {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_wrapper;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_bnk_type](fcfg_bnk_type) module"]
pub type FCFG_BNK_TYPE = crate::Reg<u32, _FCFG_BNK_TYPE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_BNK_TYPE;
#[doc = "`read()` method returns [fcfg_bnk_type::R](fcfg_bnk_type::R) reader structure"]
impl crate::Readable for FCFG_BNK_TYPE {}
#[doc = "`write(|w| ..)` method takes [fcfg_bnk_type::W](fcfg_bnk_type::W) writer structure"]
impl crate::Writable for FCFG_BNK_TYPE {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bnk_type;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b0_start](fcfg_b0_start) module"]
pub type FCFG_B0_START = crate::Reg<u32, _FCFG_B0_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B0_START;
#[doc = "`read()` method returns [fcfg_b0_start::R](fcfg_b0_start::R) reader structure"]
impl crate::Readable for FCFG_B0_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b0_start::W](fcfg_b0_start::W) writer structure"]
impl crate::Writable for FCFG_B0_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b1_start](fcfg_b1_start) module"]
pub type FCFG_B1_START = crate::Reg<u32, _FCFG_B1_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B1_START;
#[doc = "`read()` method returns [fcfg_b1_start::R](fcfg_b1_start::R) reader structure"]
impl crate::Readable for FCFG_B1_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b1_start::W](fcfg_b1_start::W) writer structure"]
impl crate::Writable for FCFG_B1_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b2_start](fcfg_b2_start) module"]
pub type FCFG_B2_START = crate::Reg<u32, _FCFG_B2_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B2_START;
#[doc = "`read()` method returns [fcfg_b2_start::R](fcfg_b2_start::R) reader structure"]
impl crate::Readable for FCFG_B2_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b2_start::W](fcfg_b2_start::W) writer structure"]
impl crate::Writable for FCFG_B2_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b3_start](fcfg_b3_start) module"]
pub type FCFG_B3_START = crate::Reg<u32, _FCFG_B3_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B3_START;
#[doc = "`read()` method returns [fcfg_b3_start::R](fcfg_b3_start::R) reader structure"]
impl crate::Readable for FCFG_B3_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b3_start::W](fcfg_b3_start::W) writer structure"]
impl crate::Writable for FCFG_B3_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b4_start](fcfg_b4_start) module"]
pub type FCFG_B4_START = crate::Reg<u32, _FCFG_B4_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B4_START;
#[doc = "`read()` method returns [fcfg_b4_start::R](fcfg_b4_start::R) reader structure"]
impl crate::Readable for FCFG_B4_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b4_start::W](fcfg_b4_start::W) writer structure"]
impl crate::Writable for FCFG_B4_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b5_start](fcfg_b5_start) module"]
pub type FCFG_B5_START = crate::Reg<u32, _FCFG_B5_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B5_START;
#[doc = "`read()` method returns [fcfg_b5_start::R](fcfg_b5_start::R) reader structure"]
impl crate::Readable for FCFG_B5_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b5_start::W](fcfg_b5_start::W) writer structure"]
impl crate::Writable for FCFG_B5_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b6_start](fcfg_b6_start) module"]
pub type FCFG_B6_START = crate::Reg<u32, _FCFG_B6_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B6_START;
#[doc = "`read()` method returns [fcfg_b6_start::R](fcfg_b6_start::R) reader structure"]
impl crate::Readable for FCFG_B6_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b6_start::W](fcfg_b6_start::W) writer structure"]
impl crate::Writable for FCFG_B6_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b7_start](fcfg_b7_start) module"]
pub type FCFG_B7_START = crate::Reg<u32, _FCFG_B7_START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B7_START;
#[doc = "`read()` method returns [fcfg_b7_start::R](fcfg_b7_start::R) reader structure"]
impl crate::Readable for FCFG_B7_START {}
#[doc = "`write(|w| ..)` method takes [fcfg_b7_start::W](fcfg_b7_start::W) writer structure"]
impl crate::Writable for FCFG_B7_START {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_start;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b0_ssize0](fcfg_b0_ssize0) module"]
pub type FCFG_B0_SSIZE0 = crate::Reg<u32, _FCFG_B0_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B0_SSIZE0;
#[doc = "`read()` method returns [fcfg_b0_ssize0::R](fcfg_b0_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B0_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b0_ssize0::W](fcfg_b0_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B0_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b0_ssize1](fcfg_b0_ssize1) module"]
pub type FCFG_B0_SSIZE1 = crate::Reg<u32, _FCFG_B0_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B0_SSIZE1;
#[doc = "`read()` method returns [fcfg_b0_ssize1::R](fcfg_b0_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B0_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b0_ssize1::W](fcfg_b0_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B0_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b0_ssize2](fcfg_b0_ssize2) module"]
pub type FCFG_B0_SSIZE2 = crate::Reg<u32, _FCFG_B0_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B0_SSIZE2;
#[doc = "`read()` method returns [fcfg_b0_ssize2::R](fcfg_b0_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B0_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b0_ssize2::W](fcfg_b0_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B0_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b0_ssize3](fcfg_b0_ssize3) module"]
pub type FCFG_B0_SSIZE3 = crate::Reg<u32, _FCFG_B0_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B0_SSIZE3;
#[doc = "`read()` method returns [fcfg_b0_ssize3::R](fcfg_b0_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B0_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b0_ssize3::W](fcfg_b0_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B0_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b1_ssize0](fcfg_b1_ssize0) module"]
pub type FCFG_B1_SSIZE0 = crate::Reg<u32, _FCFG_B1_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B1_SSIZE0;
#[doc = "`read()` method returns [fcfg_b1_ssize0::R](fcfg_b1_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B1_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b1_ssize0::W](fcfg_b1_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B1_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b1_ssize1](fcfg_b1_ssize1) module"]
pub type FCFG_B1_SSIZE1 = crate::Reg<u32, _FCFG_B1_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B1_SSIZE1;
#[doc = "`read()` method returns [fcfg_b1_ssize1::R](fcfg_b1_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B1_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b1_ssize1::W](fcfg_b1_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B1_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b1_ssize2](fcfg_b1_ssize2) module"]
pub type FCFG_B1_SSIZE2 = crate::Reg<u32, _FCFG_B1_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B1_SSIZE2;
#[doc = "`read()` method returns [fcfg_b1_ssize2::R](fcfg_b1_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B1_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b1_ssize2::W](fcfg_b1_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B1_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b1_ssize3](fcfg_b1_ssize3) module"]
pub type FCFG_B1_SSIZE3 = crate::Reg<u32, _FCFG_B1_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B1_SSIZE3;
#[doc = "`read()` method returns [fcfg_b1_ssize3::R](fcfg_b1_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B1_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b1_ssize3::W](fcfg_b1_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B1_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b2_ssize0](fcfg_b2_ssize0) module"]
pub type FCFG_B2_SSIZE0 = crate::Reg<u32, _FCFG_B2_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B2_SSIZE0;
#[doc = "`read()` method returns [fcfg_b2_ssize0::R](fcfg_b2_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B2_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b2_ssize0::W](fcfg_b2_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B2_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b2_ssize1](fcfg_b2_ssize1) module"]
pub type FCFG_B2_SSIZE1 = crate::Reg<u32, _FCFG_B2_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B2_SSIZE1;
#[doc = "`read()` method returns [fcfg_b2_ssize1::R](fcfg_b2_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B2_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b2_ssize1::W](fcfg_b2_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B2_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b2_ssize2](fcfg_b2_ssize2) module"]
pub type FCFG_B2_SSIZE2 = crate::Reg<u32, _FCFG_B2_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B2_SSIZE2;
#[doc = "`read()` method returns [fcfg_b2_ssize2::R](fcfg_b2_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B2_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b2_ssize2::W](fcfg_b2_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B2_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b2_ssize3](fcfg_b2_ssize3) module"]
pub type FCFG_B2_SSIZE3 = crate::Reg<u32, _FCFG_B2_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B2_SSIZE3;
#[doc = "`read()` method returns [fcfg_b2_ssize3::R](fcfg_b2_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B2_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b2_ssize3::W](fcfg_b2_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B2_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b3_ssize0](fcfg_b3_ssize0) module"]
pub type FCFG_B3_SSIZE0 = crate::Reg<u32, _FCFG_B3_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B3_SSIZE0;
#[doc = "`read()` method returns [fcfg_b3_ssize0::R](fcfg_b3_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B3_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b3_ssize0::W](fcfg_b3_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B3_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b3_ssize1](fcfg_b3_ssize1) module"]
pub type FCFG_B3_SSIZE1 = crate::Reg<u32, _FCFG_B3_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B3_SSIZE1;
#[doc = "`read()` method returns [fcfg_b3_ssize1::R](fcfg_b3_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B3_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b3_ssize1::W](fcfg_b3_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B3_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b3_ssize2](fcfg_b3_ssize2) module"]
pub type FCFG_B3_SSIZE2 = crate::Reg<u32, _FCFG_B3_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B3_SSIZE2;
#[doc = "`read()` method returns [fcfg_b3_ssize2::R](fcfg_b3_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B3_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b3_ssize2::W](fcfg_b3_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B3_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b3_ssize3](fcfg_b3_ssize3) module"]
pub type FCFG_B3_SSIZE3 = crate::Reg<u32, _FCFG_B3_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B3_SSIZE3;
#[doc = "`read()` method returns [fcfg_b3_ssize3::R](fcfg_b3_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B3_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b3_ssize3::W](fcfg_b3_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B3_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b4_ssize0](fcfg_b4_ssize0) module"]
pub type FCFG_B4_SSIZE0 = crate::Reg<u32, _FCFG_B4_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B4_SSIZE0;
#[doc = "`read()` method returns [fcfg_b4_ssize0::R](fcfg_b4_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B4_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b4_ssize0::W](fcfg_b4_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B4_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b4_ssize1](fcfg_b4_ssize1) module"]
pub type FCFG_B4_SSIZE1 = crate::Reg<u32, _FCFG_B4_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B4_SSIZE1;
#[doc = "`read()` method returns [fcfg_b4_ssize1::R](fcfg_b4_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B4_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b4_ssize1::W](fcfg_b4_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B4_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b4_ssize2](fcfg_b4_ssize2) module"]
pub type FCFG_B4_SSIZE2 = crate::Reg<u32, _FCFG_B4_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B4_SSIZE2;
#[doc = "`read()` method returns [fcfg_b4_ssize2::R](fcfg_b4_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B4_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b4_ssize2::W](fcfg_b4_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B4_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b4_ssize3](fcfg_b4_ssize3) module"]
pub type FCFG_B4_SSIZE3 = crate::Reg<u32, _FCFG_B4_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B4_SSIZE3;
#[doc = "`read()` method returns [fcfg_b4_ssize3::R](fcfg_b4_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B4_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b4_ssize3::W](fcfg_b4_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B4_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b5_ssize0](fcfg_b5_ssize0) module"]
pub type FCFG_B5_SSIZE0 = crate::Reg<u32, _FCFG_B5_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B5_SSIZE0;
#[doc = "`read()` method returns [fcfg_b5_ssize0::R](fcfg_b5_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B5_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b5_ssize0::W](fcfg_b5_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B5_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b5_ssize1](fcfg_b5_ssize1) module"]
pub type FCFG_B5_SSIZE1 = crate::Reg<u32, _FCFG_B5_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B5_SSIZE1;
#[doc = "`read()` method returns [fcfg_b5_ssize1::R](fcfg_b5_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B5_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b5_ssize1::W](fcfg_b5_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B5_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b5_ssize2](fcfg_b5_ssize2) module"]
pub type FCFG_B5_SSIZE2 = crate::Reg<u32, _FCFG_B5_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B5_SSIZE2;
#[doc = "`read()` method returns [fcfg_b5_ssize2::R](fcfg_b5_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B5_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b5_ssize2::W](fcfg_b5_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B5_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b5_ssize3](fcfg_b5_ssize3) module"]
pub type FCFG_B5_SSIZE3 = crate::Reg<u32, _FCFG_B5_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B5_SSIZE3;
#[doc = "`read()` method returns [fcfg_b5_ssize3::R](fcfg_b5_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B5_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b5_ssize3::W](fcfg_b5_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B5_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b6_ssize0](fcfg_b6_ssize0) module"]
pub type FCFG_B6_SSIZE0 = crate::Reg<u32, _FCFG_B6_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B6_SSIZE0;
#[doc = "`read()` method returns [fcfg_b6_ssize0::R](fcfg_b6_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B6_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b6_ssize0::W](fcfg_b6_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B6_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b6_ssize1](fcfg_b6_ssize1) module"]
pub type FCFG_B6_SSIZE1 = crate::Reg<u32, _FCFG_B6_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B6_SSIZE1;
#[doc = "`read()` method returns [fcfg_b6_ssize1::R](fcfg_b6_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B6_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b6_ssize1::W](fcfg_b6_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B6_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b6_ssize2](fcfg_b6_ssize2) module"]
pub type FCFG_B6_SSIZE2 = crate::Reg<u32, _FCFG_B6_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B6_SSIZE2;
#[doc = "`read()` method returns [fcfg_b6_ssize2::R](fcfg_b6_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B6_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b6_ssize2::W](fcfg_b6_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B6_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b6_ssize3](fcfg_b6_ssize3) module"]
pub type FCFG_B6_SSIZE3 = crate::Reg<u32, _FCFG_B6_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B6_SSIZE3;
#[doc = "`read()` method returns [fcfg_b6_ssize3::R](fcfg_b6_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B6_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b6_ssize3::W](fcfg_b6_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B6_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize3;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b7_ssize0](fcfg_b7_ssize0) module"]
pub type FCFG_B7_SSIZE0 = crate::Reg<u32, _FCFG_B7_SSIZE0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B7_SSIZE0;
#[doc = "`read()` method returns [fcfg_b7_ssize0::R](fcfg_b7_ssize0::R) reader structure"]
impl crate::Readable for FCFG_B7_SSIZE0 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b7_ssize0::W](fcfg_b7_ssize0::W) writer structure"]
impl crate::Writable for FCFG_B7_SSIZE0 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize0;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b7_ssize1](fcfg_b7_ssize1) module"]
pub type FCFG_B7_SSIZE1 = crate::Reg<u32, _FCFG_B7_SSIZE1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B7_SSIZE1;
#[doc = "`read()` method returns [fcfg_b7_ssize1::R](fcfg_b7_ssize1::R) reader structure"]
impl crate::Readable for FCFG_B7_SSIZE1 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b7_ssize1::W](fcfg_b7_ssize1::W) writer structure"]
impl crate::Writable for FCFG_B7_SSIZE1 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize1;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b7_ssize2](fcfg_b7_ssize2) module"]
pub type FCFG_B7_SSIZE2 = crate::Reg<u32, _FCFG_B7_SSIZE2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B7_SSIZE2;
#[doc = "`read()` method returns [fcfg_b7_ssize2::R](fcfg_b7_ssize2::R) reader structure"]
impl crate::Readable for FCFG_B7_SSIZE2 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b7_ssize2::W](fcfg_b7_ssize2::W) writer structure"]
impl crate::Writable for FCFG_B7_SSIZE2 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize2;
#[doc = "Internal. Only to be used through TI provided API.\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [fcfg_b7_ssize3](fcfg_b7_ssize3) module"]
pub type FCFG_B7_SSIZE3 = crate::Reg<u32, _FCFG_B7_SSIZE3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _FCFG_B7_SSIZE3;
#[doc = "`read()` method returns [fcfg_b7_ssize3::R](fcfg_b7_ssize3::R) reader structure"]
impl crate::Readable for FCFG_B7_SSIZE3 {}
#[doc = "`write(|w| ..)` method takes [fcfg_b7_ssize3::W](fcfg_b7_ssize3::W) writer structure"]
impl crate::Writable for FCFG_B7_SSIZE3 {}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize3;