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
#[doc = r" Value read from the register"]
pub struct R {
    bits: u32,
}
#[doc = r" Value to write to the register"]
pub struct W {
    bits: u32,
}
impl super::SERCTRL {
    #[doc = r" Modifies the contents of the register"]
    #[inline]
    pub fn modify<F>(&self, f: F)
    where
        for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
    {
        let bits = self.register.get();
        let r = R { bits };
        let mut w = W { bits };
        f(&r, &mut w);
        self.register.set(w.bits);
    }
    #[doc = r" Reads the contents of the register"]
    #[inline]
    pub fn read(&self) -> R {
        R {
            bits: self.register.get(),
        }
    }
    #[doc = r" Writes to the register"]
    #[inline]
    pub fn write<F>(&self, f: F)
    where
        F: FnOnce(&mut W) -> &mut W,
    {
        let mut w = W::reset_value();
        f(&mut w);
        self.register.set(w.bits);
    }
    #[doc = r" Writes the reset value to the register"]
    #[inline]
    pub fn reset(&self) {
        self.write(|w| w)
    }
}
#[doc = "Possible values of the field `SERMODE`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SERMODER {
    #[doc = "Receive"]
    RX,
    #[doc = "Transmit"]
    TX,
    #[doc = "Receive one PDM data on each serial clock edge"]
    PDM2,
    #[doc = r" Reserved"]
    _Reserved(u8),
}
impl SERMODER {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bits(&self) -> u8 {
        match *self {
            SERMODER::RX => 0,
            SERMODER::TX => 1,
            SERMODER::PDM2 => 2,
            SERMODER::_Reserved(bits) => bits,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: u8) -> SERMODER {
        match value {
            0 => SERMODER::RX,
            1 => SERMODER::TX,
            2 => SERMODER::PDM2,
            i => SERMODER::_Reserved(i),
        }
    }
    #[doc = "Checks if the value of the field is `RX`"]
    #[inline]
    pub fn is_rx(&self) -> bool {
        *self == SERMODER::RX
    }
    #[doc = "Checks if the value of the field is `TX`"]
    #[inline]
    pub fn is_tx(&self) -> bool {
        *self == SERMODER::TX
    }
    #[doc = "Checks if the value of the field is `PDM2`"]
    #[inline]
    pub fn is_pdm2(&self) -> bool {
        *self == SERMODER::PDM2
    }
}
#[doc = "Possible values of the field `TXDEFAULT`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TXDEFAULTR {
    #[doc = "Output Default Value is 0"]
    ZERO,
    #[doc = "Output Default Value is 1"]
    ONE,
    #[doc = "Output Default Value is high impedance"]
    HIZ,
    #[doc = r" Reserved"]
    _Reserved(u8),
}
impl TXDEFAULTR {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bits(&self) -> u8 {
        match *self {
            TXDEFAULTR::ZERO => 0,
            TXDEFAULTR::ONE => 1,
            TXDEFAULTR::HIZ => 3,
            TXDEFAULTR::_Reserved(bits) => bits,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: u8) -> TXDEFAULTR {
        match value {
            0 => TXDEFAULTR::ZERO,
            1 => TXDEFAULTR::ONE,
            3 => TXDEFAULTR::HIZ,
            i => TXDEFAULTR::_Reserved(i),
        }
    }
    #[doc = "Checks if the value of the field is `ZERO`"]
    #[inline]
    pub fn is_zero(&self) -> bool {
        *self == TXDEFAULTR::ZERO
    }
    #[doc = "Checks if the value of the field is `ONE`"]
    #[inline]
    pub fn is_one(&self) -> bool {
        *self == TXDEFAULTR::ONE
    }
    #[doc = "Checks if the value of the field is `HIZ`"]
    #[inline]
    pub fn is_hiz(&self) -> bool {
        *self == TXDEFAULTR::HIZ
    }
}
#[doc = "Possible values of the field `TXSAME`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TXSAMER {
    #[doc = "Zero data transmitted in case of underrun"]
    ZERO,
    #[doc = "Last data transmitted in case of underrun"]
    SAME,
}
impl TXSAMER {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            TXSAMER::ZERO => false,
            TXSAMER::SAME => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> TXSAMER {
        match value {
            false => TXSAMER::ZERO,
            true => TXSAMER::SAME,
        }
    }
    #[doc = "Checks if the value of the field is `ZERO`"]
    #[inline]
    pub fn is_zero(&self) -> bool {
        *self == TXSAMER::ZERO
    }
    #[doc = "Checks if the value of the field is `SAME`"]
    #[inline]
    pub fn is_same(&self) -> bool {
        *self == TXSAMER::SAME
    }
}
#[doc = "Possible values of the field `CLKSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLKSELR {
    #[doc = "Use Clock Unit 0"]
    CLK0,
    #[doc = "Use Clock Unit 1"]
    CLK1,
}
impl CLKSELR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            CLKSELR::CLK0 => false,
            CLKSELR::CLK1 => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> CLKSELR {
        match value {
            false => CLKSELR::CLK0,
            true => CLKSELR::CLK1,
        }
    }
    #[doc = "Checks if the value of the field is `CLK0`"]
    #[inline]
    pub fn is_clk0(&self) -> bool {
        *self == CLKSELR::CLK0
    }
    #[doc = "Checks if the value of the field is `CLK1`"]
    #[inline]
    pub fn is_clk1(&self) -> bool {
        *self == CLKSELR::CLK1
    }
}
#[doc = "Possible values of the field `SLOTADJ`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SLOTADJR {
    #[doc = "Data is right adjusted in slot"]
    RIGHT,
    #[doc = "Data is left adjusted in slot"]
    LEFT,
}
impl SLOTADJR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            SLOTADJR::RIGHT => false,
            SLOTADJR::LEFT => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> SLOTADJR {
        match value {
            false => SLOTADJR::RIGHT,
            true => SLOTADJR::LEFT,
        }
    }
    #[doc = "Checks if the value of the field is `RIGHT`"]
    #[inline]
    pub fn is_right(&self) -> bool {
        *self == SLOTADJR::RIGHT
    }
    #[doc = "Checks if the value of the field is `LEFT`"]
    #[inline]
    pub fn is_left(&self) -> bool {
        *self == SLOTADJR::LEFT
    }
}
#[doc = "Possible values of the field `DATASIZE`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DATASIZER {
    #[doc = "32 bits"]
    _32,
    #[doc = "24 bits"]
    _24,
    #[doc = "20 bits"]
    _20,
    #[doc = "18 bits"]
    _18,
    #[doc = "16 bits"]
    _16,
    #[doc = "16 bits compact stereo"]
    _16C,
    #[doc = "8 bits"]
    _8,
    #[doc = "8 bits compact stereo"]
    _8C,
}
impl DATASIZER {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bits(&self) -> u8 {
        match *self {
            DATASIZER::_32 => 0,
            DATASIZER::_24 => 1,
            DATASIZER::_20 => 2,
            DATASIZER::_18 => 3,
            DATASIZER::_16 => 4,
            DATASIZER::_16C => 5,
            DATASIZER::_8 => 6,
            DATASIZER::_8C => 7,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: u8) -> DATASIZER {
        match value {
            0 => DATASIZER::_32,
            1 => DATASIZER::_24,
            2 => DATASIZER::_20,
            3 => DATASIZER::_18,
            4 => DATASIZER::_16,
            5 => DATASIZER::_16C,
            6 => DATASIZER::_8,
            7 => DATASIZER::_8C,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `_32`"]
    #[inline]
    pub fn is_32(&self) -> bool {
        *self == DATASIZER::_32
    }
    #[doc = "Checks if the value of the field is `_24`"]
    #[inline]
    pub fn is_24(&self) -> bool {
        *self == DATASIZER::_24
    }
    #[doc = "Checks if the value of the field is `_20`"]
    #[inline]
    pub fn is_20(&self) -> bool {
        *self == DATASIZER::_20
    }
    #[doc = "Checks if the value of the field is `_18`"]
    #[inline]
    pub fn is_18(&self) -> bool {
        *self == DATASIZER::_18
    }
    #[doc = "Checks if the value of the field is `_16`"]
    #[inline]
    pub fn is_16(&self) -> bool {
        *self == DATASIZER::_16
    }
    #[doc = "Checks if the value of the field is `_16C`"]
    #[inline]
    pub fn is_16c(&self) -> bool {
        *self == DATASIZER::_16C
    }
    #[doc = "Checks if the value of the field is `_8`"]
    #[inline]
    pub fn is_8(&self) -> bool {
        *self == DATASIZER::_8
    }
    #[doc = "Checks if the value of the field is `_8C`"]
    #[inline]
    pub fn is_8c(&self) -> bool {
        *self == DATASIZER::_8C
    }
}
#[doc = "Possible values of the field `WORDADJ`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WORDADJR {
    #[doc = "Data is right adjusted in word"]
    RIGHT,
    #[doc = "Data is left adjusted in word"]
    LEFT,
}
impl WORDADJR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            WORDADJR::RIGHT => false,
            WORDADJR::LEFT => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> WORDADJR {
        match value {
            false => WORDADJR::RIGHT,
            true => WORDADJR::LEFT,
        }
    }
    #[doc = "Checks if the value of the field is `RIGHT`"]
    #[inline]
    pub fn is_right(&self) -> bool {
        *self == WORDADJR::RIGHT
    }
    #[doc = "Checks if the value of the field is `LEFT`"]
    #[inline]
    pub fn is_left(&self) -> bool {
        *self == WORDADJR::LEFT
    }
}
#[doc = "Possible values of the field `EXTEND`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum EXTENDR {
    #[doc = "Extend with zeroes"]
    ZERO,
    #[doc = "Extend with ones"]
    ONE,
    #[doc = "Extend with Most Significant Bit"]
    MSBIT,
    #[doc = "Extend with Least Significant Bit"]
    LSBIT,
}
impl EXTENDR {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bits(&self) -> u8 {
        match *self {
            EXTENDR::ZERO => 0,
            EXTENDR::ONE => 1,
            EXTENDR::MSBIT => 2,
            EXTENDR::LSBIT => 3,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: u8) -> EXTENDR {
        match value {
            0 => EXTENDR::ZERO,
            1 => EXTENDR::ONE,
            2 => EXTENDR::MSBIT,
            3 => EXTENDR::LSBIT,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `ZERO`"]
    #[inline]
    pub fn is_zero(&self) -> bool {
        *self == EXTENDR::ZERO
    }
    #[doc = "Checks if the value of the field is `ONE`"]
    #[inline]
    pub fn is_one(&self) -> bool {
        *self == EXTENDR::ONE
    }
    #[doc = "Checks if the value of the field is `MSBIT`"]
    #[inline]
    pub fn is_msbit(&self) -> bool {
        *self == EXTENDR::MSBIT
    }
    #[doc = "Checks if the value of the field is `LSBIT`"]
    #[inline]
    pub fn is_lsbit(&self) -> bool {
        *self == EXTENDR::LSBIT
    }
}
#[doc = "Possible values of the field `BITREV`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum BITREVR {
    #[doc = "Transfer Data Most Significant Bit (MSB) first (default for I2S protocol)"]
    MSBIT,
    #[doc = "Transfer Data Least Significant Bit (LSB) first"]
    LSBIT,
}
impl BITREVR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            BITREVR::MSBIT => false,
            BITREVR::LSBIT => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> BITREVR {
        match value {
            false => BITREVR::MSBIT,
            true => BITREVR::LSBIT,
        }
    }
    #[doc = "Checks if the value of the field is `MSBIT`"]
    #[inline]
    pub fn is_msbit(&self) -> bool {
        *self == BITREVR::MSBIT
    }
    #[doc = "Checks if the value of the field is `LSBIT`"]
    #[inline]
    pub fn is_lsbit(&self) -> bool {
        *self == BITREVR::LSBIT
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS0R {
    bits: bool,
}
impl SLOTDIS0R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS1R {
    bits: bool,
}
impl SLOTDIS1R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS2R {
    bits: bool,
}
impl SLOTDIS2R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS3R {
    bits: bool,
}
impl SLOTDIS3R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS4R {
    bits: bool,
}
impl SLOTDIS4R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS5R {
    bits: bool,
}
impl SLOTDIS5R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS6R {
    bits: bool,
}
impl SLOTDIS6R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = r" Value of the field"]
pub struct SLOTDIS7R {
    bits: bool,
}
impl SLOTDIS7R {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = "Possible values of the field `MONO`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum MONOR {
    #[doc = "Normal mode"]
    STEREO,
    #[doc = "Left channel data is duplicated to right channel"]
    MONO,
}
impl MONOR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            MONOR::STEREO => false,
            MONOR::MONO => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> MONOR {
        match value {
            false => MONOR::STEREO,
            true => MONOR::MONO,
        }
    }
    #[doc = "Checks if the value of the field is `STEREO`"]
    #[inline]
    pub fn is_stereo(&self) -> bool {
        *self == MONOR::STEREO
    }
    #[doc = "Checks if the value of the field is `MONO`"]
    #[inline]
    pub fn is_mono(&self) -> bool {
        *self == MONOR::MONO
    }
}
#[doc = "Possible values of the field `DMA`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DMAR {
    #[doc = "Single DMA channel"]
    SINGLE,
    #[doc = "One DMA channel per data channel"]
    MULTIPLE,
}
impl DMAR {
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        match *self {
            DMAR::SINGLE => false,
            DMAR::MULTIPLE => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _from(value: bool) -> DMAR {
        match value {
            false => DMAR::SINGLE,
            true => DMAR::MULTIPLE,
        }
    }
    #[doc = "Checks if the value of the field is `SINGLE`"]
    #[inline]
    pub fn is_single(&self) -> bool {
        *self == DMAR::SINGLE
    }
    #[doc = "Checks if the value of the field is `MULTIPLE`"]
    #[inline]
    pub fn is_multiple(&self) -> bool {
        *self == DMAR::MULTIPLE
    }
}
#[doc = r" Value of the field"]
pub struct RXLOOPR {
    bits: bool,
}
impl RXLOOPR {
    #[doc = r" Value of the field as raw bits"]
    #[inline]
    pub fn bit(&self) -> bool {
        self.bits
    }
    #[doc = r" Returns `true` if the bit is clear (0)"]
    #[inline]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r" Returns `true` if the bit is set (1)"]
    #[inline]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
}
#[doc = "Values that can be written to the field `SERMODE`"]
pub enum SERMODEW {
    #[doc = "Receive"]
    RX,
    #[doc = "Transmit"]
    TX,
    #[doc = "Receive one PDM data on each serial clock edge"]
    PDM2,
}
impl SERMODEW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> u8 {
        match *self {
            SERMODEW::RX => 0,
            SERMODEW::TX => 1,
            SERMODEW::PDM2 => 2,
        }
    }
}
#[doc = r" Proxy"]
pub struct _SERMODEW<'a> {
    w: &'a mut W,
}
impl<'a> _SERMODEW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: SERMODEW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "Receive"]
    #[inline]
    pub fn rx(self) -> &'a mut W {
        self.variant(SERMODEW::RX)
    }
    #[doc = "Transmit"]
    #[inline]
    pub fn tx(self) -> &'a mut W {
        self.variant(SERMODEW::TX)
    }
    #[doc = "Receive one PDM data on each serial clock edge"]
    #[inline]
    pub fn pdm2(self) -> &'a mut W {
        self.variant(SERMODEW::PDM2)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        const MASK: u8 = 3;
        const OFFSET: u8 = 0;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `TXDEFAULT`"]
pub enum TXDEFAULTW {
    #[doc = "Output Default Value is 0"]
    ZERO,
    #[doc = "Output Default Value is 1"]
    ONE,
    #[doc = "Output Default Value is high impedance"]
    HIZ,
}
impl TXDEFAULTW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> u8 {
        match *self {
            TXDEFAULTW::ZERO => 0,
            TXDEFAULTW::ONE => 1,
            TXDEFAULTW::HIZ => 3,
        }
    }
}
#[doc = r" Proxy"]
pub struct _TXDEFAULTW<'a> {
    w: &'a mut W,
}
impl<'a> _TXDEFAULTW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: TXDEFAULTW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "Output Default Value is 0"]
    #[inline]
    pub fn zero(self) -> &'a mut W {
        self.variant(TXDEFAULTW::ZERO)
    }
    #[doc = "Output Default Value is 1"]
    #[inline]
    pub fn one(self) -> &'a mut W {
        self.variant(TXDEFAULTW::ONE)
    }
    #[doc = "Output Default Value is high impedance"]
    #[inline]
    pub fn hiz(self) -> &'a mut W {
        self.variant(TXDEFAULTW::HIZ)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        const MASK: u8 = 3;
        const OFFSET: u8 = 2;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `TXSAME`"]
pub enum TXSAMEW {
    #[doc = "Zero data transmitted in case of underrun"]
    ZERO,
    #[doc = "Last data transmitted in case of underrun"]
    SAME,
}
impl TXSAMEW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            TXSAMEW::ZERO => false,
            TXSAMEW::SAME => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _TXSAMEW<'a> {
    w: &'a mut W,
}
impl<'a> _TXSAMEW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: TXSAMEW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Zero data transmitted in case of underrun"]
    #[inline]
    pub fn zero(self) -> &'a mut W {
        self.variant(TXSAMEW::ZERO)
    }
    #[doc = "Last data transmitted in case of underrun"]
    #[inline]
    pub fn same(self) -> &'a mut W {
        self.variant(TXSAMEW::SAME)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 4;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `CLKSEL`"]
pub enum CLKSELW {
    #[doc = "Use Clock Unit 0"]
    CLK0,
    #[doc = "Use Clock Unit 1"]
    CLK1,
}
impl CLKSELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            CLKSELW::CLK0 => false,
            CLKSELW::CLK1 => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _CLKSELW<'a> {
    w: &'a mut W,
}
impl<'a> _CLKSELW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: CLKSELW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Use Clock Unit 0"]
    #[inline]
    pub fn clk0(self) -> &'a mut W {
        self.variant(CLKSELW::CLK0)
    }
    #[doc = "Use Clock Unit 1"]
    #[inline]
    pub fn clk1(self) -> &'a mut W {
        self.variant(CLKSELW::CLK1)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 5;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `SLOTADJ`"]
pub enum SLOTADJW {
    #[doc = "Data is right adjusted in slot"]
    RIGHT,
    #[doc = "Data is left adjusted in slot"]
    LEFT,
}
impl SLOTADJW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            SLOTADJW::RIGHT => false,
            SLOTADJW::LEFT => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _SLOTADJW<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTADJW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: SLOTADJW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Data is right adjusted in slot"]
    #[inline]
    pub fn right(self) -> &'a mut W {
        self.variant(SLOTADJW::RIGHT)
    }
    #[doc = "Data is left adjusted in slot"]
    #[inline]
    pub fn left(self) -> &'a mut W {
        self.variant(SLOTADJW::LEFT)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 7;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `DATASIZE`"]
pub enum DATASIZEW {
    #[doc = "32 bits"]
    _32,
    #[doc = "24 bits"]
    _24,
    #[doc = "20 bits"]
    _20,
    #[doc = "18 bits"]
    _18,
    #[doc = "16 bits"]
    _16,
    #[doc = "16 bits compact stereo"]
    _16C,
    #[doc = "8 bits"]
    _8,
    #[doc = "8 bits compact stereo"]
    _8C,
}
impl DATASIZEW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> u8 {
        match *self {
            DATASIZEW::_32 => 0,
            DATASIZEW::_24 => 1,
            DATASIZEW::_20 => 2,
            DATASIZEW::_18 => 3,
            DATASIZEW::_16 => 4,
            DATASIZEW::_16C => 5,
            DATASIZEW::_8 => 6,
            DATASIZEW::_8C => 7,
        }
    }
}
#[doc = r" Proxy"]
pub struct _DATASIZEW<'a> {
    w: &'a mut W,
}
impl<'a> _DATASIZEW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: DATASIZEW) -> &'a mut W {
        {
            self.bits(variant._bits())
        }
    }
    #[doc = "32 bits"]
    #[inline]
    pub fn _32(self) -> &'a mut W {
        self.variant(DATASIZEW::_32)
    }
    #[doc = "24 bits"]
    #[inline]
    pub fn _24(self) -> &'a mut W {
        self.variant(DATASIZEW::_24)
    }
    #[doc = "20 bits"]
    #[inline]
    pub fn _20(self) -> &'a mut W {
        self.variant(DATASIZEW::_20)
    }
    #[doc = "18 bits"]
    #[inline]
    pub fn _18(self) -> &'a mut W {
        self.variant(DATASIZEW::_18)
    }
    #[doc = "16 bits"]
    #[inline]
    pub fn _16(self) -> &'a mut W {
        self.variant(DATASIZEW::_16)
    }
    #[doc = "16 bits compact stereo"]
    #[inline]
    pub fn _16c(self) -> &'a mut W {
        self.variant(DATASIZEW::_16C)
    }
    #[doc = "8 bits"]
    #[inline]
    pub fn _8(self) -> &'a mut W {
        self.variant(DATASIZEW::_8)
    }
    #[doc = "8 bits compact stereo"]
    #[inline]
    pub fn _8c(self) -> &'a mut W {
        self.variant(DATASIZEW::_8C)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bits(self, value: u8) -> &'a mut W {
        const MASK: u8 = 7;
        const OFFSET: u8 = 8;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `WORDADJ`"]
pub enum WORDADJW {
    #[doc = "Data is right adjusted in word"]
    RIGHT,
    #[doc = "Data is left adjusted in word"]
    LEFT,
}
impl WORDADJW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            WORDADJW::RIGHT => false,
            WORDADJW::LEFT => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _WORDADJW<'a> {
    w: &'a mut W,
}
impl<'a> _WORDADJW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: WORDADJW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Data is right adjusted in word"]
    #[inline]
    pub fn right(self) -> &'a mut W {
        self.variant(WORDADJW::RIGHT)
    }
    #[doc = "Data is left adjusted in word"]
    #[inline]
    pub fn left(self) -> &'a mut W {
        self.variant(WORDADJW::LEFT)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 12;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `EXTEND`"]
pub enum EXTENDW {
    #[doc = "Extend with zeroes"]
    ZERO,
    #[doc = "Extend with ones"]
    ONE,
    #[doc = "Extend with Most Significant Bit"]
    MSBIT,
    #[doc = "Extend with Least Significant Bit"]
    LSBIT,
}
impl EXTENDW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> u8 {
        match *self {
            EXTENDW::ZERO => 0,
            EXTENDW::ONE => 1,
            EXTENDW::MSBIT => 2,
            EXTENDW::LSBIT => 3,
        }
    }
}
#[doc = r" Proxy"]
pub struct _EXTENDW<'a> {
    w: &'a mut W,
}
impl<'a> _EXTENDW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: EXTENDW) -> &'a mut W {
        {
            self.bits(variant._bits())
        }
    }
    #[doc = "Extend with zeroes"]
    #[inline]
    pub fn zero(self) -> &'a mut W {
        self.variant(EXTENDW::ZERO)
    }
    #[doc = "Extend with ones"]
    #[inline]
    pub fn one(self) -> &'a mut W {
        self.variant(EXTENDW::ONE)
    }
    #[doc = "Extend with Most Significant Bit"]
    #[inline]
    pub fn msbit(self) -> &'a mut W {
        self.variant(EXTENDW::MSBIT)
    }
    #[doc = "Extend with Least Significant Bit"]
    #[inline]
    pub fn lsbit(self) -> &'a mut W {
        self.variant(EXTENDW::LSBIT)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bits(self, value: u8) -> &'a mut W {
        const MASK: u8 = 3;
        const OFFSET: u8 = 13;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `BITREV`"]
pub enum BITREVW {
    #[doc = "Transfer Data Most Significant Bit (MSB) first (default for I2S protocol)"]
    MSBIT,
    #[doc = "Transfer Data Least Significant Bit (LSB) first"]
    LSBIT,
}
impl BITREVW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            BITREVW::MSBIT => false,
            BITREVW::LSBIT => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _BITREVW<'a> {
    w: &'a mut W,
}
impl<'a> _BITREVW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: BITREVW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Transfer Data Most Significant Bit (MSB) first (default for I2S protocol)"]
    #[inline]
    pub fn msbit(self) -> &'a mut W {
        self.variant(BITREVW::MSBIT)
    }
    #[doc = "Transfer Data Least Significant Bit (LSB) first"]
    #[inline]
    pub fn lsbit(self) -> &'a mut W {
        self.variant(BITREVW::LSBIT)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 15;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS0W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS0W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 16;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS1W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS1W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 17;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS2W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS2W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 18;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS3W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS3W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 19;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS4W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS4W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 20;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS5W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS5W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 21;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS6W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS6W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 22;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _SLOTDIS7W<'a> {
    w: &'a mut W,
}
impl<'a> _SLOTDIS7W<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 23;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `MONO`"]
pub enum MONOW {
    #[doc = "Normal mode"]
    STEREO,
    #[doc = "Left channel data is duplicated to right channel"]
    MONO,
}
impl MONOW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            MONOW::STEREO => false,
            MONOW::MONO => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _MONOW<'a> {
    w: &'a mut W,
}
impl<'a> _MONOW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: MONOW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Normal mode"]
    #[inline]
    pub fn stereo(self) -> &'a mut W {
        self.variant(MONOW::STEREO)
    }
    #[doc = "Left channel data is duplicated to right channel"]
    #[inline]
    pub fn mono(self) -> &'a mut W {
        self.variant(MONOW::MONO)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 24;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = "Values that can be written to the field `DMA`"]
pub enum DMAW {
    #[doc = "Single DMA channel"]
    SINGLE,
    #[doc = "One DMA channel per data channel"]
    MULTIPLE,
}
impl DMAW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline]
    pub fn _bits(&self) -> bool {
        match *self {
            DMAW::SINGLE => false,
            DMAW::MULTIPLE => true,
        }
    }
}
#[doc = r" Proxy"]
pub struct _DMAW<'a> {
    w: &'a mut W,
}
impl<'a> _DMAW<'a> {
    #[doc = r" Writes `variant` to the field"]
    #[inline]
    pub fn variant(self, variant: DMAW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "Single DMA channel"]
    #[inline]
    pub fn single(self) -> &'a mut W {
        self.variant(DMAW::SINGLE)
    }
    #[doc = "One DMA channel per data channel"]
    #[inline]
    pub fn multiple(self) -> &'a mut W {
        self.variant(DMAW::MULTIPLE)
    }
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 25;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
#[doc = r" Proxy"]
pub struct _RXLOOPW<'a> {
    w: &'a mut W,
}
impl<'a> _RXLOOPW<'a> {
    #[doc = r" Sets the field bit"]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r" Clears the field bit"]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r" Writes raw bits to the field"]
    #[inline]
    pub fn bit(self, value: bool) -> &'a mut W {
        const MASK: bool = true;
        const OFFSET: u8 = 26;
        self.w.bits &= !((MASK as u32) << OFFSET);
        self.w.bits |= ((value & MASK) as u32) << OFFSET;
        self.w
    }
}
impl R {
    #[doc = r" Value of the register as raw bits"]
    #[inline]
    pub fn bits(&self) -> u32 {
        self.bits
    }
    #[doc = "Bits 0:1 - Serializer Mode"]
    #[inline]
    pub fn sermode(&self) -> SERMODER {
        SERMODER::_from({
            const MASK: u8 = 3;
            const OFFSET: u8 = 0;
            ((self.bits >> OFFSET) & MASK as u32) as u8
        })
    }
    #[doc = "Bits 2:3 - Line Default Line when Slot Disabled"]
    #[inline]
    pub fn txdefault(&self) -> TXDEFAULTR {
        TXDEFAULTR::_from({
            const MASK: u8 = 3;
            const OFFSET: u8 = 2;
            ((self.bits >> OFFSET) & MASK as u32) as u8
        })
    }
    #[doc = "Bit 4 - Transmit Data when Underrun"]
    #[inline]
    pub fn txsame(&self) -> TXSAMER {
        TXSAMER::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 4;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bit 5 - Clock Unit Selection"]
    #[inline]
    pub fn clksel(&self) -> CLKSELR {
        CLKSELR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 5;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bit 7 - Data Slot Formatting Adjust"]
    #[inline]
    pub fn slotadj(&self) -> SLOTADJR {
        SLOTADJR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 7;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bits 8:10 - Data Word Size"]
    #[inline]
    pub fn datasize(&self) -> DATASIZER {
        DATASIZER::_from({
            const MASK: u8 = 7;
            const OFFSET: u8 = 8;
            ((self.bits >> OFFSET) & MASK as u32) as u8
        })
    }
    #[doc = "Bit 12 - Data Word Formatting Adjust"]
    #[inline]
    pub fn wordadj(&self) -> WORDADJR {
        WORDADJR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 12;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bits 13:14 - Data Formatting Bit Extension"]
    #[inline]
    pub fn extend(&self) -> EXTENDR {
        EXTENDR::_from({
            const MASK: u8 = 3;
            const OFFSET: u8 = 13;
            ((self.bits >> OFFSET) & MASK as u32) as u8
        })
    }
    #[doc = "Bit 15 - Data Formatting Bit Reverse"]
    #[inline]
    pub fn bitrev(&self) -> BITREVR {
        BITREVR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 15;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bit 16 - Slot 0 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis0(&self) -> SLOTDIS0R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 16;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS0R { bits }
    }
    #[doc = "Bit 17 - Slot 1 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis1(&self) -> SLOTDIS1R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 17;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS1R { bits }
    }
    #[doc = "Bit 18 - Slot 2 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis2(&self) -> SLOTDIS2R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 18;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS2R { bits }
    }
    #[doc = "Bit 19 - Slot 3 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis3(&self) -> SLOTDIS3R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 19;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS3R { bits }
    }
    #[doc = "Bit 20 - Slot 4 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis4(&self) -> SLOTDIS4R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 20;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS4R { bits }
    }
    #[doc = "Bit 21 - Slot 5 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis5(&self) -> SLOTDIS5R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 21;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS5R { bits }
    }
    #[doc = "Bit 22 - Slot 6 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis6(&self) -> SLOTDIS6R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 22;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS6R { bits }
    }
    #[doc = "Bit 23 - Slot 7 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis7(&self) -> SLOTDIS7R {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 23;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        SLOTDIS7R { bits }
    }
    #[doc = "Bit 24 - Mono Mode"]
    #[inline]
    pub fn mono(&self) -> MONOR {
        MONOR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 24;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bit 25 - Single or Multiple DMA Channels"]
    #[inline]
    pub fn dma(&self) -> DMAR {
        DMAR::_from({
            const MASK: bool = true;
            const OFFSET: u8 = 25;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        })
    }
    #[doc = "Bit 26 - Loop-back Test Mode"]
    #[inline]
    pub fn rxloop(&self) -> RXLOOPR {
        let bits = {
            const MASK: bool = true;
            const OFFSET: u8 = 26;
            ((self.bits >> OFFSET) & MASK as u32) != 0
        };
        RXLOOPR { bits }
    }
}
impl W {
    #[doc = r" Reset value of the register"]
    #[inline]
    pub fn reset_value() -> W {
        W { bits: 0 }
    }
    #[doc = r" Writes raw bits to the register"]
    #[inline]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
    #[doc = "Bits 0:1 - Serializer Mode"]
    #[inline]
    pub fn sermode(&mut self) -> _SERMODEW {
        _SERMODEW { w: self }
    }
    #[doc = "Bits 2:3 - Line Default Line when Slot Disabled"]
    #[inline]
    pub fn txdefault(&mut self) -> _TXDEFAULTW {
        _TXDEFAULTW { w: self }
    }
    #[doc = "Bit 4 - Transmit Data when Underrun"]
    #[inline]
    pub fn txsame(&mut self) -> _TXSAMEW {
        _TXSAMEW { w: self }
    }
    #[doc = "Bit 5 - Clock Unit Selection"]
    #[inline]
    pub fn clksel(&mut self) -> _CLKSELW {
        _CLKSELW { w: self }
    }
    #[doc = "Bit 7 - Data Slot Formatting Adjust"]
    #[inline]
    pub fn slotadj(&mut self) -> _SLOTADJW {
        _SLOTADJW { w: self }
    }
    #[doc = "Bits 8:10 - Data Word Size"]
    #[inline]
    pub fn datasize(&mut self) -> _DATASIZEW {
        _DATASIZEW { w: self }
    }
    #[doc = "Bit 12 - Data Word Formatting Adjust"]
    #[inline]
    pub fn wordadj(&mut self) -> _WORDADJW {
        _WORDADJW { w: self }
    }
    #[doc = "Bits 13:14 - Data Formatting Bit Extension"]
    #[inline]
    pub fn extend(&mut self) -> _EXTENDW {
        _EXTENDW { w: self }
    }
    #[doc = "Bit 15 - Data Formatting Bit Reverse"]
    #[inline]
    pub fn bitrev(&mut self) -> _BITREVW {
        _BITREVW { w: self }
    }
    #[doc = "Bit 16 - Slot 0 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis0(&mut self) -> _SLOTDIS0W {
        _SLOTDIS0W { w: self }
    }
    #[doc = "Bit 17 - Slot 1 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis1(&mut self) -> _SLOTDIS1W {
        _SLOTDIS1W { w: self }
    }
    #[doc = "Bit 18 - Slot 2 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis2(&mut self) -> _SLOTDIS2W {
        _SLOTDIS2W { w: self }
    }
    #[doc = "Bit 19 - Slot 3 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis3(&mut self) -> _SLOTDIS3W {
        _SLOTDIS3W { w: self }
    }
    #[doc = "Bit 20 - Slot 4 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis4(&mut self) -> _SLOTDIS4W {
        _SLOTDIS4W { w: self }
    }
    #[doc = "Bit 21 - Slot 5 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis5(&mut self) -> _SLOTDIS5W {
        _SLOTDIS5W { w: self }
    }
    #[doc = "Bit 22 - Slot 6 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis6(&mut self) -> _SLOTDIS6W {
        _SLOTDIS6W { w: self }
    }
    #[doc = "Bit 23 - Slot 7 Disabled for this Serializer"]
    #[inline]
    pub fn slotdis7(&mut self) -> _SLOTDIS7W {
        _SLOTDIS7W { w: self }
    }
    #[doc = "Bit 24 - Mono Mode"]
    #[inline]
    pub fn mono(&mut self) -> _MONOW {
        _MONOW { w: self }
    }
    #[doc = "Bit 25 - Single or Multiple DMA Channels"]
    #[inline]
    pub fn dma(&mut self) -> _DMAW {
        _DMAW { w: self }
    }
    #[doc = "Bit 26 - Loop-back Test Mode"]
    #[inline]
    pub fn rxloop(&mut self) -> _RXLOOPW {
        _RXLOOPW { w: self }
    }
}