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
#[doc = "Reader of register DMA_CTRL0[%s]"]
pub type R = crate::R<u32, super::DMA_CTRL0>;
#[doc = "Writer for register DMA_CTRL0[%s]"]
pub type W = crate::W<u32, super::DMA_CTRL0>;
#[doc = "Register DMA_CTRL0[%s]
`reset()`'s with value 0"]
impl crate::ResetValue for super::DMA_CTRL0 {
    type Type = u32;
    #[inline(always)]
    fn reset_value() -> Self::Type {
        0
    }
}
#[doc = "Select the destination address step size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum DEST_ADDR_STEP_SIZE_A {
    #[doc = "0: Set the step size of DMA channel to 1"]
    DMA_DEST_ADDR_STEP_SIZE_1 = 0,
    #[doc = "1: Set the step size of DMA channel to 2"]
    DMA_DEST_ADDR_STEP_SIZE_2 = 1,
    #[doc = "2: Set the step size of DMA channel to 3"]
    DMA_DEST_ADDR_STEP_SIZE_3 = 2,
    #[doc = "3: Set the step size of DMA channel to 4"]
    DMA_DEST_ADDR_STEP_SIZE_4 = 3,
}
impl From<DEST_ADDR_STEP_SIZE_A> for u8 {
    #[inline(always)]
    fn from(variant: DEST_ADDR_STEP_SIZE_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `DEST_ADDR_STEP_SIZE`"]
pub type DEST_ADDR_STEP_SIZE_R = crate::R<u8, DEST_ADDR_STEP_SIZE_A>;
impl DEST_ADDR_STEP_SIZE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DEST_ADDR_STEP_SIZE_A {
        match self.bits {
            0 => DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_1,
            1 => DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_2,
            2 => DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_3,
            3 => DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_4,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_STEP_SIZE_1`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_step_size_1(&self) -> bool {
        *self == DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_1
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_STEP_SIZE_2`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_step_size_2(&self) -> bool {
        *self == DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_2
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_STEP_SIZE_3`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_step_size_3(&self) -> bool {
        *self == DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_3
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_STEP_SIZE_4`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_step_size_4(&self) -> bool {
        *self == DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_4
    }
}
#[doc = "Write proxy for field `DEST_ADDR_STEP_SIZE`"]
pub struct DEST_ADDR_STEP_SIZE_W<'a> {
    w: &'a mut W,
}
impl<'a> DEST_ADDR_STEP_SIZE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DEST_ADDR_STEP_SIZE_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Set the step size of DMA channel to 1"]
    #[inline(always)]
    pub fn dma_dest_addr_step_size_1(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_1)
    }
    #[doc = "Set the step size of DMA channel to 2"]
    #[inline(always)]
    pub fn dma_dest_addr_step_size_2(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_2)
    }
    #[doc = "Set the step size of DMA channel to 3"]
    #[inline(always)]
    pub fn dma_dest_addr_step_size_3(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_3)
    }
    #[doc = "Set the step size of DMA channel to 4"]
    #[inline(always)]
    pub fn dma_dest_addr_step_size_4(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_SIZE_A::DMA_DEST_ADDR_STEP_SIZE_4)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 30)) | (((value as u32) & 0x03) << 30);
        self.w
    }
}
#[doc = "Select the source address step size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum SRC_ADDR_STEP_SIZE_A {
    #[doc = "0: Set the step size of DMA channel to 1"]
    DMA_SRC_ADDR_STEP_SIZE_1 = 0,
    #[doc = "1: Set the step size of DMA channel to 2"]
    DMA_SRC_ADDR_STEP_SIZE_2 = 1,
    #[doc = "2: Set the step size of DMA channel to 3"]
    DMA_SRC_ADDR_STEP_SIZE_3 = 2,
    #[doc = "3: Set the step size of DMA channel to 4"]
    DMA_SRC_ADDR_STEP_SIZE_4 = 3,
}
impl From<SRC_ADDR_STEP_SIZE_A> for u8 {
    #[inline(always)]
    fn from(variant: SRC_ADDR_STEP_SIZE_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `SRC_ADDR_STEP_SIZE`"]
pub type SRC_ADDR_STEP_SIZE_R = crate::R<u8, SRC_ADDR_STEP_SIZE_A>;
impl SRC_ADDR_STEP_SIZE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SRC_ADDR_STEP_SIZE_A {
        match self.bits {
            0 => SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_1,
            1 => SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_2,
            2 => SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_3,
            3 => SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_4,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_STEP_SIZE_1`"]
    #[inline(always)]
    pub fn is_dma_src_addr_step_size_1(&self) -> bool {
        *self == SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_1
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_STEP_SIZE_2`"]
    #[inline(always)]
    pub fn is_dma_src_addr_step_size_2(&self) -> bool {
        *self == SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_2
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_STEP_SIZE_3`"]
    #[inline(always)]
    pub fn is_dma_src_addr_step_size_3(&self) -> bool {
        *self == SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_3
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_STEP_SIZE_4`"]
    #[inline(always)]
    pub fn is_dma_src_addr_step_size_4(&self) -> bool {
        *self == SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_4
    }
}
#[doc = "Write proxy for field `SRC_ADDR_STEP_SIZE`"]
pub struct SRC_ADDR_STEP_SIZE_W<'a> {
    w: &'a mut W,
}
impl<'a> SRC_ADDR_STEP_SIZE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SRC_ADDR_STEP_SIZE_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Set the step size of DMA channel to 1"]
    #[inline(always)]
    pub fn dma_src_addr_step_size_1(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_1)
    }
    #[doc = "Set the step size of DMA channel to 2"]
    #[inline(always)]
    pub fn dma_src_addr_step_size_2(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_2)
    }
    #[doc = "Set the step size of DMA channel to 3"]
    #[inline(always)]
    pub fn dma_src_addr_step_size_3(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_3)
    }
    #[doc = "Set the step size of DMA channel to 4"]
    #[inline(always)]
    pub fn dma_src_addr_step_size_4(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_SIZE_A::DMA_SRC_ADDR_STEP_SIZE_4)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 28)) | (((value as u32) & 0x03) << 28);
        self.w
    }
}
#[doc = "Configure the destination address to either increment or decrement\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DEST_ADDR_STEP_MODE_A {
    #[doc = "0: Increment the destination address used by DMA channel"]
    DMA_DEST_ADDR_POS = 0,
    #[doc = "1: Decrement destination address used by DMA channel"]
    DMA_DEST_ADDR_NEG = 1,
}
impl From<DEST_ADDR_STEP_MODE_A> for bool {
    #[inline(always)]
    fn from(variant: DEST_ADDR_STEP_MODE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `DEST_ADDR_STEP_MODE`"]
pub type DEST_ADDR_STEP_MODE_R = crate::R<bool, DEST_ADDR_STEP_MODE_A>;
impl DEST_ADDR_STEP_MODE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DEST_ADDR_STEP_MODE_A {
        match self.bits {
            false => DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_POS,
            true => DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_NEG,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_POS`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_pos(&self) -> bool {
        *self == DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_POS
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_NEG`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_neg(&self) -> bool {
        *self == DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_NEG
    }
}
#[doc = "Write proxy for field `DEST_ADDR_STEP_MODE`"]
pub struct DEST_ADDR_STEP_MODE_W<'a> {
    w: &'a mut W,
}
impl<'a> DEST_ADDR_STEP_MODE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DEST_ADDR_STEP_MODE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Increment the destination address used by DMA channel"]
    #[inline(always)]
    pub fn dma_dest_addr_pos(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_POS)
    }
    #[doc = "Decrement destination address used by DMA channel"]
    #[inline(always)]
    pub fn dma_dest_addr_neg(self) -> &'a mut W {
        self.variant(DEST_ADDR_STEP_MODE_A::DMA_DEST_ADDR_NEG)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 27)) | (((value as u32) & 0x01) << 27);
        self.w
    }
}
#[doc = "Configure the source address to either increment or decrement\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SRC_ADDR_STEP_MODE_A {
    #[doc = "0: Increment the source address used by DMA channel"]
    DMA_SRC_ADDR_POS = 0,
    #[doc = "1: Decrement source address used by DMA channel"]
    DMA_SRC_ADDR_NEG = 1,
}
impl From<SRC_ADDR_STEP_MODE_A> for bool {
    #[inline(always)]
    fn from(variant: SRC_ADDR_STEP_MODE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SRC_ADDR_STEP_MODE`"]
pub type SRC_ADDR_STEP_MODE_R = crate::R<bool, SRC_ADDR_STEP_MODE_A>;
impl SRC_ADDR_STEP_MODE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SRC_ADDR_STEP_MODE_A {
        match self.bits {
            false => SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_POS,
            true => SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_NEG,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_POS`"]
    #[inline(always)]
    pub fn is_dma_src_addr_pos(&self) -> bool {
        *self == SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_POS
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_NEG`"]
    #[inline(always)]
    pub fn is_dma_src_addr_neg(&self) -> bool {
        *self == SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_NEG
    }
}
#[doc = "Write proxy for field `SRC_ADDR_STEP_MODE`"]
pub struct SRC_ADDR_STEP_MODE_W<'a> {
    w: &'a mut W,
}
impl<'a> SRC_ADDR_STEP_MODE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SRC_ADDR_STEP_MODE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Increment the source address used by DMA channel"]
    #[inline(always)]
    pub fn dma_src_addr_pos(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_POS)
    }
    #[doc = "Decrement source address used by DMA channel"]
    #[inline(always)]
    pub fn dma_src_addr_neg(self) -> &'a mut W {
        self.variant(SRC_ADDR_STEP_MODE_A::DMA_SRC_ADDR_NEG)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 26)) | (((value as u32) & 0x01) << 26);
        self.w
    }
}
#[doc = "Select the byte ordering for the DMA channel\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum BYTE_ORDER_A {
    #[doc = "0: DMA channel uses little endian mode"]
    DMA_LITTLE_ENDIAN = 0,
    #[doc = "1: DMA channel uses big endian mode"]
    DMA_BIG_ENDIAN = 1,
}
impl From<BYTE_ORDER_A> for bool {
    #[inline(always)]
    fn from(variant: BYTE_ORDER_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `BYTE_ORDER`"]
pub type BYTE_ORDER_R = crate::R<bool, BYTE_ORDER_A>;
impl BYTE_ORDER_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> BYTE_ORDER_A {
        match self.bits {
            false => BYTE_ORDER_A::DMA_LITTLE_ENDIAN,
            true => BYTE_ORDER_A::DMA_BIG_ENDIAN,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_LITTLE_ENDIAN`"]
    #[inline(always)]
    pub fn is_dma_little_endian(&self) -> bool {
        *self == BYTE_ORDER_A::DMA_LITTLE_ENDIAN
    }
    #[doc = "Checks if the value of the field is `DMA_BIG_ENDIAN`"]
    #[inline(always)]
    pub fn is_dma_big_endian(&self) -> bool {
        *self == BYTE_ORDER_A::DMA_BIG_ENDIAN
    }
}
#[doc = "Write proxy for field `BYTE_ORDER`"]
pub struct BYTE_ORDER_W<'a> {
    w: &'a mut W,
}
impl<'a> BYTE_ORDER_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: BYTE_ORDER_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "DMA channel uses little endian mode"]
    #[inline(always)]
    pub fn dma_little_endian(self) -> &'a mut W {
        self.variant(BYTE_ORDER_A::DMA_LITTLE_ENDIAN)
    }
    #[doc = "DMA channel uses big endian mode"]
    #[inline(always)]
    pub fn dma_big_endian(self) -> &'a mut W {
        self.variant(BYTE_ORDER_A::DMA_BIG_ENDIAN)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 25)) | (((value as u32) & 0x01) << 25);
        self.w
    }
}
#[doc = "Raise an interrupt when the DMA channel is disabled\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DISABLE_INT_ENABLE_A {
    #[doc = "0: Disable channel disable indicator interrupts for DMA channel"]
    DMA_DISABLE_INT_DISABLE = 0,
    #[doc = "1: Enable channel disable indicator interrupts for DMA channel"]
    DMA_DISABLE_INT_ENABLE = 1,
}
impl From<DISABLE_INT_ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: DISABLE_INT_ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `DISABLE_INT_ENABLE`"]
pub type DISABLE_INT_ENABLE_R = crate::R<bool, DISABLE_INT_ENABLE_A>;
impl DISABLE_INT_ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DISABLE_INT_ENABLE_A {
        match self.bits {
            false => DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_DISABLE,
            true => DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DISABLE_INT_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_disable_int_disable(&self) -> bool {
        *self == DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_DISABLE_INT_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_disable_int_enable(&self) -> bool {
        *self == DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_ENABLE
    }
}
#[doc = "Write proxy for field `DISABLE_INT_ENABLE`"]
pub struct DISABLE_INT_ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> DISABLE_INT_ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DISABLE_INT_ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable channel disable indicator interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_disable_int_disable(self) -> &'a mut W {
        self.variant(DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_DISABLE)
    }
    #[doc = "Enable channel disable indicator interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_disable_int_enable(self) -> &'a mut W {
        self.variant(DISABLE_INT_ENABLE_A::DMA_DISABLE_INT_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 24)) | (((value as u32) & 0x01) << 24);
        self.w
    }
}
#[doc = "Raise an interrupt when a state machine error occurs during a DMA transfer\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ERROR_INT_ENABLE_A {
    #[doc = "0: Disable error indicator interrupts for DMA channel"]
    DMA_ERROR_INT_DISABLE = 0,
    #[doc = "1: Enable error indicator interrupts for DMA channel"]
    DMA_ERROR_INT_ENABLE = 1,
}
impl From<ERROR_INT_ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: ERROR_INT_ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ERROR_INT_ENABLE`"]
pub type ERROR_INT_ENABLE_R = crate::R<bool, ERROR_INT_ENABLE_A>;
impl ERROR_INT_ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ERROR_INT_ENABLE_A {
        match self.bits {
            false => ERROR_INT_ENABLE_A::DMA_ERROR_INT_DISABLE,
            true => ERROR_INT_ENABLE_A::DMA_ERROR_INT_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_ERROR_INT_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_error_int_disable(&self) -> bool {
        *self == ERROR_INT_ENABLE_A::DMA_ERROR_INT_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_ERROR_INT_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_error_int_enable(&self) -> bool {
        *self == ERROR_INT_ENABLE_A::DMA_ERROR_INT_ENABLE
    }
}
#[doc = "Write proxy for field `ERROR_INT_ENABLE`"]
pub struct ERROR_INT_ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> ERROR_INT_ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ERROR_INT_ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable error indicator interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_error_int_disable(self) -> &'a mut W {
        self.variant(ERROR_INT_ENABLE_A::DMA_ERROR_INT_DISABLE)
    }
    #[doc = "Enable error indicator interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_error_int_enable(self) -> &'a mut W {
        self.variant(ERROR_INT_ENABLE_A::DMA_ERROR_INT_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 23)) | (((value as u32) & 0x01) << 23);
        self.w
    }
}
#[doc = "Raise an interrupt when the DMA transfer completes\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum COMPLETE_INT_ENABLE_A {
    #[doc = "0: Disable completion interrupts for DMA channel"]
    DMA_COMPLETE_INT_DISABLE = 0,
    #[doc = "1: Enable completion interrupts for DMA channel"]
    DMA_COMPLETE_INT_ENABLE = 1,
}
impl From<COMPLETE_INT_ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: COMPLETE_INT_ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `COMPLETE_INT_ENABLE`"]
pub type COMPLETE_INT_ENABLE_R = crate::R<bool, COMPLETE_INT_ENABLE_A>;
impl COMPLETE_INT_ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> COMPLETE_INT_ENABLE_A {
        match self.bits {
            false => COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_DISABLE,
            true => COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_COMPLETE_INT_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_complete_int_disable(&self) -> bool {
        *self == COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_COMPLETE_INT_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_complete_int_enable(&self) -> bool {
        *self == COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_ENABLE
    }
}
#[doc = "Write proxy for field `COMPLETE_INT_ENABLE`"]
pub struct COMPLETE_INT_ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> COMPLETE_INT_ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: COMPLETE_INT_ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable completion interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_complete_int_disable(self) -> &'a mut W {
        self.variant(COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_DISABLE)
    }
    #[doc = "Enable completion interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_complete_int_enable(self) -> &'a mut W {
        self.variant(COMPLETE_INT_ENABLE_A::DMA_COMPLETE_INT_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 22)) | (((value as u32) & 0x01) << 22);
        self.w
    }
}
#[doc = "Raise an interrupt when the DMA transfer reaches the counter value\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum COUNTER_INT_ENABLE_A {
    #[doc = "0: Disable counter interrupts for DMA channel"]
    DMA_COUNTER_INT_DISABLE = 0,
    #[doc = "1: Enable counter interrupts for DMA channel"]
    DMA_COUNTER_INT_ENABLE = 1,
}
impl From<COUNTER_INT_ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: COUNTER_INT_ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `COUNTER_INT_ENABLE`"]
pub type COUNTER_INT_ENABLE_R = crate::R<bool, COUNTER_INT_ENABLE_A>;
impl COUNTER_INT_ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> COUNTER_INT_ENABLE_A {
        match self.bits {
            false => COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_DISABLE,
            true => COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_COUNTER_INT_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_counter_int_disable(&self) -> bool {
        *self == COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_COUNTER_INT_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_counter_int_enable(&self) -> bool {
        *self == COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_ENABLE
    }
}
#[doc = "Write proxy for field `COUNTER_INT_ENABLE`"]
pub struct COUNTER_INT_ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> COUNTER_INT_ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: COUNTER_INT_ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable counter interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_counter_int_disable(self) -> &'a mut W {
        self.variant(COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_DISABLE)
    }
    #[doc = "Enable counter interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_counter_int_enable(self) -> &'a mut W {
        self.variant(COUNTER_INT_ENABLE_A::DMA_COUNTER_INT_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 21)) | (((value as u32) & 0x01) << 21);
        self.w
    }
}
#[doc = "Raise an interrupt when the DMA transfer starts\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum START_INT_ENABLE_A {
    #[doc = "0: Disable start interrupts for DMA channel"]
    DMA_START_INT_DISABLE = 0,
    #[doc = "1: Enable start interrupts for DMA channel"]
    DMA_START_INT_ENABLE = 1,
}
impl From<START_INT_ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: START_INT_ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `START_INT_ENABLE`"]
pub type START_INT_ENABLE_R = crate::R<bool, START_INT_ENABLE_A>;
impl START_INT_ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> START_INT_ENABLE_A {
        match self.bits {
            false => START_INT_ENABLE_A::DMA_START_INT_DISABLE,
            true => START_INT_ENABLE_A::DMA_START_INT_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_START_INT_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_start_int_disable(&self) -> bool {
        *self == START_INT_ENABLE_A::DMA_START_INT_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_START_INT_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_start_int_enable(&self) -> bool {
        *self == START_INT_ENABLE_A::DMA_START_INT_ENABLE
    }
}
#[doc = "Write proxy for field `START_INT_ENABLE`"]
pub struct START_INT_ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> START_INT_ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: START_INT_ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable start interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_start_int_disable(self) -> &'a mut W {
        self.variant(START_INT_ENABLE_A::DMA_START_INT_DISABLE)
    }
    #[doc = "Enable start interrupts for DMA channel"]
    #[inline(always)]
    pub fn dma_start_int_enable(self) -> &'a mut W {
        self.variant(START_INT_ENABLE_A::DMA_START_INT_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 20)) | (((value as u32) & 0x01) << 20);
        self.w
    }
}
#[doc = "Select the destination word size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum DEST_WORD_SIZE_A {
    #[doc = "0: Destination data uses 8-bit words"]
    DMA_DEST_WORD_SIZE_8 = 0,
    #[doc = "1: Destination data uses 16-bit words"]
    DMA_DEST_WORD_SIZE_16 = 1,
    #[doc = "2: Destination data uses 32-bit words"]
    DMA_DEST_WORD_SIZE_32 = 2,
    #[doc = "3: Destination data uses 4-bit words"]
    DMA_DEST_WORD_SIZE_4 = 3,
}
impl From<DEST_WORD_SIZE_A> for u8 {
    #[inline(always)]
    fn from(variant: DEST_WORD_SIZE_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `DEST_WORD_SIZE`"]
pub type DEST_WORD_SIZE_R = crate::R<u8, DEST_WORD_SIZE_A>;
impl DEST_WORD_SIZE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DEST_WORD_SIZE_A {
        match self.bits {
            0 => DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_8,
            1 => DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_16,
            2 => DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_32,
            3 => DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_4,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_WORD_SIZE_8`"]
    #[inline(always)]
    pub fn is_dma_dest_word_size_8(&self) -> bool {
        *self == DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_8
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_WORD_SIZE_16`"]
    #[inline(always)]
    pub fn is_dma_dest_word_size_16(&self) -> bool {
        *self == DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_16
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_WORD_SIZE_32`"]
    #[inline(always)]
    pub fn is_dma_dest_word_size_32(&self) -> bool {
        *self == DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_32
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_WORD_SIZE_4`"]
    #[inline(always)]
    pub fn is_dma_dest_word_size_4(&self) -> bool {
        *self == DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_4
    }
}
#[doc = "Write proxy for field `DEST_WORD_SIZE`"]
pub struct DEST_WORD_SIZE_W<'a> {
    w: &'a mut W,
}
impl<'a> DEST_WORD_SIZE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DEST_WORD_SIZE_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Destination data uses 8-bit words"]
    #[inline(always)]
    pub fn dma_dest_word_size_8(self) -> &'a mut W {
        self.variant(DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_8)
    }
    #[doc = "Destination data uses 16-bit words"]
    #[inline(always)]
    pub fn dma_dest_word_size_16(self) -> &'a mut W {
        self.variant(DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_16)
    }
    #[doc = "Destination data uses 32-bit words"]
    #[inline(always)]
    pub fn dma_dest_word_size_32(self) -> &'a mut W {
        self.variant(DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_32)
    }
    #[doc = "Destination data uses 4-bit words"]
    #[inline(always)]
    pub fn dma_dest_word_size_4(self) -> &'a mut W {
        self.variant(DEST_WORD_SIZE_A::DMA_DEST_WORD_SIZE_4)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 18)) | (((value as u32) & 0x03) << 18);
        self.w
    }
}
#[doc = "Select the source word size\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum SRC_WORD_SIZE_A {
    #[doc = "0: Source data uses 8-bit words"]
    DMA_SRC_WORD_SIZE_8 = 0,
    #[doc = "1: Source data uses 16-bit words"]
    DMA_SRC_WORD_SIZE_16 = 1,
    #[doc = "2: Source data uses 32-bit words"]
    DMA_SRC_WORD_SIZE_32 = 2,
    #[doc = "3: Source data uses 4-bit words"]
    DMA_SRC_WORD_SIZE_4 = 3,
}
impl From<SRC_WORD_SIZE_A> for u8 {
    #[inline(always)]
    fn from(variant: SRC_WORD_SIZE_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `SRC_WORD_SIZE`"]
pub type SRC_WORD_SIZE_R = crate::R<u8, SRC_WORD_SIZE_A>;
impl SRC_WORD_SIZE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SRC_WORD_SIZE_A {
        match self.bits {
            0 => SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_8,
            1 => SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_16,
            2 => SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_32,
            3 => SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_4,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_WORD_SIZE_8`"]
    #[inline(always)]
    pub fn is_dma_src_word_size_8(&self) -> bool {
        *self == SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_8
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_WORD_SIZE_16`"]
    #[inline(always)]
    pub fn is_dma_src_word_size_16(&self) -> bool {
        *self == SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_16
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_WORD_SIZE_32`"]
    #[inline(always)]
    pub fn is_dma_src_word_size_32(&self) -> bool {
        *self == SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_32
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_WORD_SIZE_4`"]
    #[inline(always)]
    pub fn is_dma_src_word_size_4(&self) -> bool {
        *self == SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_4
    }
}
#[doc = "Write proxy for field `SRC_WORD_SIZE`"]
pub struct SRC_WORD_SIZE_W<'a> {
    w: &'a mut W,
}
impl<'a> SRC_WORD_SIZE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SRC_WORD_SIZE_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Source data uses 8-bit words"]
    #[inline(always)]
    pub fn dma_src_word_size_8(self) -> &'a mut W {
        self.variant(SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_8)
    }
    #[doc = "Source data uses 16-bit words"]
    #[inline(always)]
    pub fn dma_src_word_size_16(self) -> &'a mut W {
        self.variant(SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_16)
    }
    #[doc = "Source data uses 32-bit words"]
    #[inline(always)]
    pub fn dma_src_word_size_32(self) -> &'a mut W {
        self.variant(SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_32)
    }
    #[doc = "Source data uses 4-bit words"]
    #[inline(always)]
    pub fn dma_src_word_size_4(self) -> &'a mut W {
        self.variant(SRC_WORD_SIZE_A::DMA_SRC_WORD_SIZE_4)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 16)) | (((value as u32) & 0x03) << 16);
        self.w
    }
}
#[doc = "Select the request line for the destination\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum DEST_SELECT_A {
    #[doc = "0: Data writes are triggered by the I2C request line"]
    DMA_DEST_I2C = 0,
    #[doc = "1: Data writes are triggered by the SPI0 request line"]
    DMA_DEST_SPI0 = 1,
    #[doc = "2: Data writes are triggered by the SPI1 request line"]
    DMA_DEST_SPI1 = 2,
    #[doc = "3: Data writes are triggered by the PCM request line"]
    DMA_DEST_PCM = 3,
    #[doc = "4: Data writes are triggered by the UART request line"]
    DMA_DEST_UART = 4,
    #[doc = "5: Data writes are triggered by the ASRC request line"]
    DMA_DEST_ASRC = 5,
    #[doc = "6: Data writes are triggered by the P bus request line"]
    DMA_DEST_PBUS = 6,
    #[doc = "7: Data writes are triggered by the OD request line"]
    DMA_DEST_OD = 7,
}
impl From<DEST_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: DEST_SELECT_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `DEST_SELECT`"]
pub type DEST_SELECT_R = crate::R<u8, DEST_SELECT_A>;
impl DEST_SELECT_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DEST_SELECT_A {
        match self.bits {
            0 => DEST_SELECT_A::DMA_DEST_I2C,
            1 => DEST_SELECT_A::DMA_DEST_SPI0,
            2 => DEST_SELECT_A::DMA_DEST_SPI1,
            3 => DEST_SELECT_A::DMA_DEST_PCM,
            4 => DEST_SELECT_A::DMA_DEST_UART,
            5 => DEST_SELECT_A::DMA_DEST_ASRC,
            6 => DEST_SELECT_A::DMA_DEST_PBUS,
            7 => DEST_SELECT_A::DMA_DEST_OD,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_I2C`"]
    #[inline(always)]
    pub fn is_dma_dest_i2c(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_I2C
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_SPI0`"]
    #[inline(always)]
    pub fn is_dma_dest_spi0(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_SPI0
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_SPI1`"]
    #[inline(always)]
    pub fn is_dma_dest_spi1(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_SPI1
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_PCM`"]
    #[inline(always)]
    pub fn is_dma_dest_pcm(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_PCM
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_UART`"]
    #[inline(always)]
    pub fn is_dma_dest_uart(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_UART
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ASRC`"]
    #[inline(always)]
    pub fn is_dma_dest_asrc(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_ASRC
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_PBUS`"]
    #[inline(always)]
    pub fn is_dma_dest_pbus(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_PBUS
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_OD`"]
    #[inline(always)]
    pub fn is_dma_dest_od(&self) -> bool {
        *self == DEST_SELECT_A::DMA_DEST_OD
    }
}
#[doc = "Write proxy for field `DEST_SELECT`"]
pub struct DEST_SELECT_W<'a> {
    w: &'a mut W,
}
impl<'a> DEST_SELECT_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DEST_SELECT_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Data writes are triggered by the I2C request line"]
    #[inline(always)]
    pub fn dma_dest_i2c(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_I2C)
    }
    #[doc = "Data writes are triggered by the SPI0 request line"]
    #[inline(always)]
    pub fn dma_dest_spi0(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_SPI0)
    }
    #[doc = "Data writes are triggered by the SPI1 request line"]
    #[inline(always)]
    pub fn dma_dest_spi1(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_SPI1)
    }
    #[doc = "Data writes are triggered by the PCM request line"]
    #[inline(always)]
    pub fn dma_dest_pcm(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_PCM)
    }
    #[doc = "Data writes are triggered by the UART request line"]
    #[inline(always)]
    pub fn dma_dest_uart(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_UART)
    }
    #[doc = "Data writes are triggered by the ASRC request line"]
    #[inline(always)]
    pub fn dma_dest_asrc(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_ASRC)
    }
    #[doc = "Data writes are triggered by the P bus request line"]
    #[inline(always)]
    pub fn dma_dest_pbus(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_PBUS)
    }
    #[doc = "Data writes are triggered by the OD request line"]
    #[inline(always)]
    pub fn dma_dest_od(self) -> &'a mut W {
        self.variant(DEST_SELECT_A::DMA_DEST_OD)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x07 << 12)) | (((value as u32) & 0x07) << 12);
        self.w
    }
}
#[doc = "Select the request line for the source\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum SRC_SELECT_A {
    #[doc = "0: Data reads are triggered by the I2C request line"]
    DMA_SRC_I2C = 0,
    #[doc = "1: Data reads are triggered by the SPI0 request line"]
    DMA_SRC_SPI0 = 1,
    #[doc = "2: Data reads are triggered by the SPI1 request line"]
    DMA_SRC_SPI1 = 2,
    #[doc = "3: Data reads are triggered by the PCM request line"]
    DMA_SRC_PCM = 3,
    #[doc = "4: Data reads are triggered by the UART request line"]
    DMA_SRC_UART = 4,
    #[doc = "5: Data reads are triggered by the ASRC request line"]
    DMA_SRC_ASRC = 5,
    #[doc = "6: Data reads are triggered by the P Bus request line"]
    DMA_SRC_PBUS = 6,
    #[doc = "7: Data reads are triggered by the DMIC request line"]
    DMA_SRC_DMIC = 7,
}
impl From<SRC_SELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: SRC_SELECT_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `SRC_SELECT`"]
pub type SRC_SELECT_R = crate::R<u8, SRC_SELECT_A>;
impl SRC_SELECT_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SRC_SELECT_A {
        match self.bits {
            0 => SRC_SELECT_A::DMA_SRC_I2C,
            1 => SRC_SELECT_A::DMA_SRC_SPI0,
            2 => SRC_SELECT_A::DMA_SRC_SPI1,
            3 => SRC_SELECT_A::DMA_SRC_PCM,
            4 => SRC_SELECT_A::DMA_SRC_UART,
            5 => SRC_SELECT_A::DMA_SRC_ASRC,
            6 => SRC_SELECT_A::DMA_SRC_PBUS,
            7 => SRC_SELECT_A::DMA_SRC_DMIC,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_I2C`"]
    #[inline(always)]
    pub fn is_dma_src_i2c(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_I2C
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_SPI0`"]
    #[inline(always)]
    pub fn is_dma_src_spi0(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_SPI0
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_SPI1`"]
    #[inline(always)]
    pub fn is_dma_src_spi1(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_SPI1
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_PCM`"]
    #[inline(always)]
    pub fn is_dma_src_pcm(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_PCM
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_UART`"]
    #[inline(always)]
    pub fn is_dma_src_uart(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_UART
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ASRC`"]
    #[inline(always)]
    pub fn is_dma_src_asrc(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_ASRC
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_PBUS`"]
    #[inline(always)]
    pub fn is_dma_src_pbus(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_PBUS
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_DMIC`"]
    #[inline(always)]
    pub fn is_dma_src_dmic(&self) -> bool {
        *self == SRC_SELECT_A::DMA_SRC_DMIC
    }
}
#[doc = "Write proxy for field `SRC_SELECT`"]
pub struct SRC_SELECT_W<'a> {
    w: &'a mut W,
}
impl<'a> SRC_SELECT_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SRC_SELECT_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Data reads are triggered by the I2C request line"]
    #[inline(always)]
    pub fn dma_src_i2c(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_I2C)
    }
    #[doc = "Data reads are triggered by the SPI0 request line"]
    #[inline(always)]
    pub fn dma_src_spi0(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_SPI0)
    }
    #[doc = "Data reads are triggered by the SPI1 request line"]
    #[inline(always)]
    pub fn dma_src_spi1(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_SPI1)
    }
    #[doc = "Data reads are triggered by the PCM request line"]
    #[inline(always)]
    pub fn dma_src_pcm(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_PCM)
    }
    #[doc = "Data reads are triggered by the UART request line"]
    #[inline(always)]
    pub fn dma_src_uart(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_UART)
    }
    #[doc = "Data reads are triggered by the ASRC request line"]
    #[inline(always)]
    pub fn dma_src_asrc(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_ASRC)
    }
    #[doc = "Data reads are triggered by the P Bus request line"]
    #[inline(always)]
    pub fn dma_src_pbus(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_PBUS)
    }
    #[doc = "Data reads are triggered by the DMIC request line"]
    #[inline(always)]
    pub fn dma_src_dmic(self) -> &'a mut W {
        self.variant(SRC_SELECT_A::DMA_SRC_DMIC)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x07 << 9)) | (((value as u32) & 0x07) << 9);
        self.w
    }
}
#[doc = "Select the priority level for this channel\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum CHANNEL_PRIORITY_A {
    #[doc = "0: Set the priority of DMA channel to 0 (Lowest)"]
    DMA_PRIORITY_0 = 0,
    #[doc = "1: Set the priority of DMA channel to 1"]
    DMA_PRIORITY_1 = 1,
    #[doc = "2: Set the priority of DMA channel to 2"]
    DMA_PRIORITY_2 = 2,
    #[doc = "3: Set the priority of DMA channel to 3 (Highest)"]
    DMA_PRIORITY_3 = 3,
}
impl From<CHANNEL_PRIORITY_A> for u8 {
    #[inline(always)]
    fn from(variant: CHANNEL_PRIORITY_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `CHANNEL_PRIORITY`"]
pub type CHANNEL_PRIORITY_R = crate::R<u8, CHANNEL_PRIORITY_A>;
impl CHANNEL_PRIORITY_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CHANNEL_PRIORITY_A {
        match self.bits {
            0 => CHANNEL_PRIORITY_A::DMA_PRIORITY_0,
            1 => CHANNEL_PRIORITY_A::DMA_PRIORITY_1,
            2 => CHANNEL_PRIORITY_A::DMA_PRIORITY_2,
            3 => CHANNEL_PRIORITY_A::DMA_PRIORITY_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_PRIORITY_0`"]
    #[inline(always)]
    pub fn is_dma_priority_0(&self) -> bool {
        *self == CHANNEL_PRIORITY_A::DMA_PRIORITY_0
    }
    #[doc = "Checks if the value of the field is `DMA_PRIORITY_1`"]
    #[inline(always)]
    pub fn is_dma_priority_1(&self) -> bool {
        *self == CHANNEL_PRIORITY_A::DMA_PRIORITY_1
    }
    #[doc = "Checks if the value of the field is `DMA_PRIORITY_2`"]
    #[inline(always)]
    pub fn is_dma_priority_2(&self) -> bool {
        *self == CHANNEL_PRIORITY_A::DMA_PRIORITY_2
    }
    #[doc = "Checks if the value of the field is `DMA_PRIORITY_3`"]
    #[inline(always)]
    pub fn is_dma_priority_3(&self) -> bool {
        *self == CHANNEL_PRIORITY_A::DMA_PRIORITY_3
    }
}
#[doc = "Write proxy for field `CHANNEL_PRIORITY`"]
pub struct CHANNEL_PRIORITY_W<'a> {
    w: &'a mut W,
}
impl<'a> CHANNEL_PRIORITY_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: CHANNEL_PRIORITY_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "Set the priority of DMA channel to 0 (Lowest)"]
    #[inline(always)]
    pub fn dma_priority_0(self) -> &'a mut W {
        self.variant(CHANNEL_PRIORITY_A::DMA_PRIORITY_0)
    }
    #[doc = "Set the priority of DMA channel to 1"]
    #[inline(always)]
    pub fn dma_priority_1(self) -> &'a mut W {
        self.variant(CHANNEL_PRIORITY_A::DMA_PRIORITY_1)
    }
    #[doc = "Set the priority of DMA channel to 2"]
    #[inline(always)]
    pub fn dma_priority_2(self) -> &'a mut W {
        self.variant(CHANNEL_PRIORITY_A::DMA_PRIORITY_2)
    }
    #[doc = "Set the priority of DMA channel to 3 (Highest)"]
    #[inline(always)]
    pub fn dma_priority_3(self) -> &'a mut W {
        self.variant(CHANNEL_PRIORITY_A::DMA_PRIORITY_3)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 6)) | (((value as u32) & 0x03) << 6);
        self.w
    }
}
#[doc = "Select the type of transfer implemented by DMA channel\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum TRANSFER_TYPE_A {
    #[doc = "0: DMA channel will provide a memory-to-memory data transfer"]
    DMA_TRANSFER_M_TO_M = 0,
    #[doc = "1: DMA channel will provide a memory-to-peripheral data transfer"]
    DMA_TRANSFER_M_TO_P = 1,
    #[doc = "2: DMA channel will provide a peripheral-to-memory data transfer"]
    DMA_TRANSFER_P_TO_M = 2,
    #[doc = "3: DMA channel will provide a peripheral-to-peripheral data transfer"]
    DMA_TRANSFER_P_TO_P = 3,
}
impl From<TRANSFER_TYPE_A> for u8 {
    #[inline(always)]
    fn from(variant: TRANSFER_TYPE_A) -> Self {
        variant as _
    }
}
#[doc = "Reader of field `TRANSFER_TYPE`"]
pub type TRANSFER_TYPE_R = crate::R<u8, TRANSFER_TYPE_A>;
impl TRANSFER_TYPE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> TRANSFER_TYPE_A {
        match self.bits {
            0 => TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_M,
            1 => TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_P,
            2 => TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_M,
            3 => TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_P,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `DMA_TRANSFER_M_TO_M`"]
    #[inline(always)]
    pub fn is_dma_transfer_m_to_m(&self) -> bool {
        *self == TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_M
    }
    #[doc = "Checks if the value of the field is `DMA_TRANSFER_M_TO_P`"]
    #[inline(always)]
    pub fn is_dma_transfer_m_to_p(&self) -> bool {
        *self == TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_P
    }
    #[doc = "Checks if the value of the field is `DMA_TRANSFER_P_TO_M`"]
    #[inline(always)]
    pub fn is_dma_transfer_p_to_m(&self) -> bool {
        *self == TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_M
    }
    #[doc = "Checks if the value of the field is `DMA_TRANSFER_P_TO_P`"]
    #[inline(always)]
    pub fn is_dma_transfer_p_to_p(&self) -> bool {
        *self == TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_P
    }
}
#[doc = "Write proxy for field `TRANSFER_TYPE`"]
pub struct TRANSFER_TYPE_W<'a> {
    w: &'a mut W,
}
impl<'a> TRANSFER_TYPE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: TRANSFER_TYPE_A) -> &'a mut W {
        {
            self.bits(variant.into())
        }
    }
    #[doc = "DMA channel will provide a memory-to-memory data transfer"]
    #[inline(always)]
    pub fn dma_transfer_m_to_m(self) -> &'a mut W {
        self.variant(TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_M)
    }
    #[doc = "DMA channel will provide a memory-to-peripheral data transfer"]
    #[inline(always)]
    pub fn dma_transfer_m_to_p(self) -> &'a mut W {
        self.variant(TRANSFER_TYPE_A::DMA_TRANSFER_M_TO_P)
    }
    #[doc = "DMA channel will provide a peripheral-to-memory data transfer"]
    #[inline(always)]
    pub fn dma_transfer_p_to_m(self) -> &'a mut W {
        self.variant(TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_M)
    }
    #[doc = "DMA channel will provide a peripheral-to-peripheral data transfer"]
    #[inline(always)]
    pub fn dma_transfer_p_to_p(self) -> &'a mut W {
        self.variant(TRANSFER_TYPE_A::DMA_TRANSFER_P_TO_P)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u32) & 0x03) << 4);
        self.w
    }
}
#[doc = "Configure whether the destination address should increment\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DEST_ADDR_INC_A {
    #[doc = "0: Do not increment the destination address used by DMA channel"]
    DMA_DEST_ADDR_STATIC = 0,
    #[doc = "1: Increment destination address used by DMA channel"]
    DMA_DEST_ADDR_INC = 1,
}
impl From<DEST_ADDR_INC_A> for bool {
    #[inline(always)]
    fn from(variant: DEST_ADDR_INC_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `DEST_ADDR_INC`"]
pub type DEST_ADDR_INC_R = crate::R<bool, DEST_ADDR_INC_A>;
impl DEST_ADDR_INC_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> DEST_ADDR_INC_A {
        match self.bits {
            false => DEST_ADDR_INC_A::DMA_DEST_ADDR_STATIC,
            true => DEST_ADDR_INC_A::DMA_DEST_ADDR_INC,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_STATIC`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_static(&self) -> bool {
        *self == DEST_ADDR_INC_A::DMA_DEST_ADDR_STATIC
    }
    #[doc = "Checks if the value of the field is `DMA_DEST_ADDR_INC`"]
    #[inline(always)]
    pub fn is_dma_dest_addr_inc(&self) -> bool {
        *self == DEST_ADDR_INC_A::DMA_DEST_ADDR_INC
    }
}
#[doc = "Write proxy for field `DEST_ADDR_INC`"]
pub struct DEST_ADDR_INC_W<'a> {
    w: &'a mut W,
}
impl<'a> DEST_ADDR_INC_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DEST_ADDR_INC_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Do not increment the destination address used by DMA channel"]
    #[inline(always)]
    pub fn dma_dest_addr_static(self) -> &'a mut W {
        self.variant(DEST_ADDR_INC_A::DMA_DEST_ADDR_STATIC)
    }
    #[doc = "Increment destination address used by DMA channel"]
    #[inline(always)]
    pub fn dma_dest_addr_inc(self) -> &'a mut W {
        self.variant(DEST_ADDR_INC_A::DMA_DEST_ADDR_INC)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 3)) | (((value as u32) & 0x01) << 3);
        self.w
    }
}
#[doc = "Configure whether the source address should increment\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SRC_ADDR_INC_A {
    #[doc = "0: Do not increment the source address used by DMA channel"]
    DMA_SRC_ADDR_STATIC = 0,
    #[doc = "1: Increment source address used by DMA channel"]
    DMA_SRC_ADDR_INC = 1,
}
impl From<SRC_ADDR_INC_A> for bool {
    #[inline(always)]
    fn from(variant: SRC_ADDR_INC_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `SRC_ADDR_INC`"]
pub type SRC_ADDR_INC_R = crate::R<bool, SRC_ADDR_INC_A>;
impl SRC_ADDR_INC_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> SRC_ADDR_INC_A {
        match self.bits {
            false => SRC_ADDR_INC_A::DMA_SRC_ADDR_STATIC,
            true => SRC_ADDR_INC_A::DMA_SRC_ADDR_INC,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_STATIC`"]
    #[inline(always)]
    pub fn is_dma_src_addr_static(&self) -> bool {
        *self == SRC_ADDR_INC_A::DMA_SRC_ADDR_STATIC
    }
    #[doc = "Checks if the value of the field is `DMA_SRC_ADDR_INC`"]
    #[inline(always)]
    pub fn is_dma_src_addr_inc(&self) -> bool {
        *self == SRC_ADDR_INC_A::DMA_SRC_ADDR_INC
    }
}
#[doc = "Write proxy for field `SRC_ADDR_INC`"]
pub struct SRC_ADDR_INC_W<'a> {
    w: &'a mut W,
}
impl<'a> SRC_ADDR_INC_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SRC_ADDR_INC_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Do not increment the source address used by DMA channel"]
    #[inline(always)]
    pub fn dma_src_addr_static(self) -> &'a mut W {
        self.variant(SRC_ADDR_INC_A::DMA_SRC_ADDR_STATIC)
    }
    #[doc = "Increment source address used by DMA channel"]
    #[inline(always)]
    pub fn dma_src_addr_inc(self) -> &'a mut W {
        self.variant(SRC_ADDR_INC_A::DMA_SRC_ADDR_INC)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u32) & 0x01) << 2);
        self.w
    }
}
#[doc = "Select the addressing mode for this channel\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR_MODE_A {
    #[doc = "0: Use circular addressing for DMA channel"]
    DMA_ADDR_CIRC = 0,
    #[doc = "1: Use linear addressing for DMA channel"]
    DMA_ADDR_LIN = 1,
}
impl From<ADDR_MODE_A> for bool {
    #[inline(always)]
    fn from(variant: ADDR_MODE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ADDR_MODE`"]
pub type ADDR_MODE_R = crate::R<bool, ADDR_MODE_A>;
impl ADDR_MODE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ADDR_MODE_A {
        match self.bits {
            false => ADDR_MODE_A::DMA_ADDR_CIRC,
            true => ADDR_MODE_A::DMA_ADDR_LIN,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_ADDR_CIRC`"]
    #[inline(always)]
    pub fn is_dma_addr_circ(&self) -> bool {
        *self == ADDR_MODE_A::DMA_ADDR_CIRC
    }
    #[doc = "Checks if the value of the field is `DMA_ADDR_LIN`"]
    #[inline(always)]
    pub fn is_dma_addr_lin(&self) -> bool {
        *self == ADDR_MODE_A::DMA_ADDR_LIN
    }
}
#[doc = "Write proxy for field `ADDR_MODE`"]
pub struct ADDR_MODE_W<'a> {
    w: &'a mut W,
}
impl<'a> ADDR_MODE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ADDR_MODE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Use circular addressing for DMA channel"]
    #[inline(always)]
    pub fn dma_addr_circ(self) -> &'a mut W {
        self.variant(ADDR_MODE_A::DMA_ADDR_CIRC)
    }
    #[doc = "Use linear addressing for DMA channel"]
    #[inline(always)]
    pub fn dma_addr_lin(self) -> &'a mut W {
        self.variant(ADDR_MODE_A::DMA_ADDR_LIN)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
        self.w
    }
}
#[doc = "Enable DMA Channel\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ENABLE_A {
    #[doc = "0: Disable DMA channel (channel will wait on current transfer before stopping)"]
    DMA_DISABLE = 0,
    #[doc = "1: Enable DMA channel"]
    DMA_ENABLE = 1,
}
impl From<ENABLE_A> for bool {
    #[inline(always)]
    fn from(variant: ENABLE_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ENABLE`"]
pub type ENABLE_R = crate::R<bool, ENABLE_A>;
impl ENABLE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ENABLE_A {
        match self.bits {
            false => ENABLE_A::DMA_DISABLE,
            true => ENABLE_A::DMA_ENABLE,
        }
    }
    #[doc = "Checks if the value of the field is `DMA_DISABLE`"]
    #[inline(always)]
    pub fn is_dma_disable(&self) -> bool {
        *self == ENABLE_A::DMA_DISABLE
    }
    #[doc = "Checks if the value of the field is `DMA_ENABLE`"]
    #[inline(always)]
    pub fn is_dma_enable(&self) -> bool {
        *self == ENABLE_A::DMA_ENABLE
    }
}
#[doc = "Write proxy for field `ENABLE`"]
pub struct ENABLE_W<'a> {
    w: &'a mut W,
}
impl<'a> ENABLE_W<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: ENABLE_A) -> &'a mut W {
        {
            self.bit(variant.into())
        }
    }
    #[doc = "Disable DMA channel (channel will wait on current transfer before stopping)"]
    #[inline(always)]
    pub fn dma_disable(self) -> &'a mut W {
        self.variant(ENABLE_A::DMA_DISABLE)
    }
    #[doc = "Enable DMA channel"]
    #[inline(always)]
    pub fn dma_enable(self) -> &'a mut W {
        self.variant(ENABLE_A::DMA_ENABLE)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
        self.w
    }
}
impl R {
    #[doc = "Bits 30:31 - Select the destination address step size"]
    #[inline(always)]
    pub fn dest_addr_step_size(&self) -> DEST_ADDR_STEP_SIZE_R {
        DEST_ADDR_STEP_SIZE_R::new(((self.bits >> 30) & 0x03) as u8)
    }
    #[doc = "Bits 28:29 - Select the source address step size"]
    #[inline(always)]
    pub fn src_addr_step_size(&self) -> SRC_ADDR_STEP_SIZE_R {
        SRC_ADDR_STEP_SIZE_R::new(((self.bits >> 28) & 0x03) as u8)
    }
    #[doc = "Bit 27 - Configure the destination address to either increment or decrement"]
    #[inline(always)]
    pub fn dest_addr_step_mode(&self) -> DEST_ADDR_STEP_MODE_R {
        DEST_ADDR_STEP_MODE_R::new(((self.bits >> 27) & 0x01) != 0)
    }
    #[doc = "Bit 26 - Configure the source address to either increment or decrement"]
    #[inline(always)]
    pub fn src_addr_step_mode(&self) -> SRC_ADDR_STEP_MODE_R {
        SRC_ADDR_STEP_MODE_R::new(((self.bits >> 26) & 0x01) != 0)
    }
    #[doc = "Bit 25 - Select the byte ordering for the DMA channel"]
    #[inline(always)]
    pub fn byte_order(&self) -> BYTE_ORDER_R {
        BYTE_ORDER_R::new(((self.bits >> 25) & 0x01) != 0)
    }
    #[doc = "Bit 24 - Raise an interrupt when the DMA channel is disabled"]
    #[inline(always)]
    pub fn disable_int_enable(&self) -> DISABLE_INT_ENABLE_R {
        DISABLE_INT_ENABLE_R::new(((self.bits >> 24) & 0x01) != 0)
    }
    #[doc = "Bit 23 - Raise an interrupt when a state machine error occurs during a DMA transfer"]
    #[inline(always)]
    pub fn error_int_enable(&self) -> ERROR_INT_ENABLE_R {
        ERROR_INT_ENABLE_R::new(((self.bits >> 23) & 0x01) != 0)
    }
    #[doc = "Bit 22 - Raise an interrupt when the DMA transfer completes"]
    #[inline(always)]
    pub fn complete_int_enable(&self) -> COMPLETE_INT_ENABLE_R {
        COMPLETE_INT_ENABLE_R::new(((self.bits >> 22) & 0x01) != 0)
    }
    #[doc = "Bit 21 - Raise an interrupt when the DMA transfer reaches the counter value"]
    #[inline(always)]
    pub fn counter_int_enable(&self) -> COUNTER_INT_ENABLE_R {
        COUNTER_INT_ENABLE_R::new(((self.bits >> 21) & 0x01) != 0)
    }
    #[doc = "Bit 20 - Raise an interrupt when the DMA transfer starts"]
    #[inline(always)]
    pub fn start_int_enable(&self) -> START_INT_ENABLE_R {
        START_INT_ENABLE_R::new(((self.bits >> 20) & 0x01) != 0)
    }
    #[doc = "Bits 18:19 - Select the destination word size"]
    #[inline(always)]
    pub fn dest_word_size(&self) -> DEST_WORD_SIZE_R {
        DEST_WORD_SIZE_R::new(((self.bits >> 18) & 0x03) as u8)
    }
    #[doc = "Bits 16:17 - Select the source word size"]
    #[inline(always)]
    pub fn src_word_size(&self) -> SRC_WORD_SIZE_R {
        SRC_WORD_SIZE_R::new(((self.bits >> 16) & 0x03) as u8)
    }
    #[doc = "Bits 12:14 - Select the request line for the destination"]
    #[inline(always)]
    pub fn dest_select(&self) -> DEST_SELECT_R {
        DEST_SELECT_R::new(((self.bits >> 12) & 0x07) as u8)
    }
    #[doc = "Bits 9:11 - Select the request line for the source"]
    #[inline(always)]
    pub fn src_select(&self) -> SRC_SELECT_R {
        SRC_SELECT_R::new(((self.bits >> 9) & 0x07) as u8)
    }
    #[doc = "Bits 6:7 - Select the priority level for this channel"]
    #[inline(always)]
    pub fn channel_priority(&self) -> CHANNEL_PRIORITY_R {
        CHANNEL_PRIORITY_R::new(((self.bits >> 6) & 0x03) as u8)
    }
    #[doc = "Bits 4:5 - Select the type of transfer implemented by DMA channel"]
    #[inline(always)]
    pub fn transfer_type(&self) -> TRANSFER_TYPE_R {
        TRANSFER_TYPE_R::new(((self.bits >> 4) & 0x03) as u8)
    }
    #[doc = "Bit 3 - Configure whether the destination address should increment"]
    #[inline(always)]
    pub fn dest_addr_inc(&self) -> DEST_ADDR_INC_R {
        DEST_ADDR_INC_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 2 - Configure whether the source address should increment"]
    #[inline(always)]
    pub fn src_addr_inc(&self) -> SRC_ADDR_INC_R {
        SRC_ADDR_INC_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 1 - Select the addressing mode for this channel"]
    #[inline(always)]
    pub fn addr_mode(&self) -> ADDR_MODE_R {
        ADDR_MODE_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 0 - Enable DMA Channel"]
    #[inline(always)]
    pub fn enable(&self) -> ENABLE_R {
        ENABLE_R::new((self.bits & 0x01) != 0)
    }
}
impl W {
    #[doc = "Bits 30:31 - Select the destination address step size"]
    #[inline(always)]
    pub fn dest_addr_step_size(&mut self) -> DEST_ADDR_STEP_SIZE_W {
        DEST_ADDR_STEP_SIZE_W { w: self }
    }
    #[doc = "Bits 28:29 - Select the source address step size"]
    #[inline(always)]
    pub fn src_addr_step_size(&mut self) -> SRC_ADDR_STEP_SIZE_W {
        SRC_ADDR_STEP_SIZE_W { w: self }
    }
    #[doc = "Bit 27 - Configure the destination address to either increment or decrement"]
    #[inline(always)]
    pub fn dest_addr_step_mode(&mut self) -> DEST_ADDR_STEP_MODE_W {
        DEST_ADDR_STEP_MODE_W { w: self }
    }
    #[doc = "Bit 26 - Configure the source address to either increment or decrement"]
    #[inline(always)]
    pub fn src_addr_step_mode(&mut self) -> SRC_ADDR_STEP_MODE_W {
        SRC_ADDR_STEP_MODE_W { w: self }
    }
    #[doc = "Bit 25 - Select the byte ordering for the DMA channel"]
    #[inline(always)]
    pub fn byte_order(&mut self) -> BYTE_ORDER_W {
        BYTE_ORDER_W { w: self }
    }
    #[doc = "Bit 24 - Raise an interrupt when the DMA channel is disabled"]
    #[inline(always)]
    pub fn disable_int_enable(&mut self) -> DISABLE_INT_ENABLE_W {
        DISABLE_INT_ENABLE_W { w: self }
    }
    #[doc = "Bit 23 - Raise an interrupt when a state machine error occurs during a DMA transfer"]
    #[inline(always)]
    pub fn error_int_enable(&mut self) -> ERROR_INT_ENABLE_W {
        ERROR_INT_ENABLE_W { w: self }
    }
    #[doc = "Bit 22 - Raise an interrupt when the DMA transfer completes"]
    #[inline(always)]
    pub fn complete_int_enable(&mut self) -> COMPLETE_INT_ENABLE_W {
        COMPLETE_INT_ENABLE_W { w: self }
    }
    #[doc = "Bit 21 - Raise an interrupt when the DMA transfer reaches the counter value"]
    #[inline(always)]
    pub fn counter_int_enable(&mut self) -> COUNTER_INT_ENABLE_W {
        COUNTER_INT_ENABLE_W { w: self }
    }
    #[doc = "Bit 20 - Raise an interrupt when the DMA transfer starts"]
    #[inline(always)]
    pub fn start_int_enable(&mut self) -> START_INT_ENABLE_W {
        START_INT_ENABLE_W { w: self }
    }
    #[doc = "Bits 18:19 - Select the destination word size"]
    #[inline(always)]
    pub fn dest_word_size(&mut self) -> DEST_WORD_SIZE_W {
        DEST_WORD_SIZE_W { w: self }
    }
    #[doc = "Bits 16:17 - Select the source word size"]
    #[inline(always)]
    pub fn src_word_size(&mut self) -> SRC_WORD_SIZE_W {
        SRC_WORD_SIZE_W { w: self }
    }
    #[doc = "Bits 12:14 - Select the request line for the destination"]
    #[inline(always)]
    pub fn dest_select(&mut self) -> DEST_SELECT_W {
        DEST_SELECT_W { w: self }
    }
    #[doc = "Bits 9:11 - Select the request line for the source"]
    #[inline(always)]
    pub fn src_select(&mut self) -> SRC_SELECT_W {
        SRC_SELECT_W { w: self }
    }
    #[doc = "Bits 6:7 - Select the priority level for this channel"]
    #[inline(always)]
    pub fn channel_priority(&mut self) -> CHANNEL_PRIORITY_W {
        CHANNEL_PRIORITY_W { w: self }
    }
    #[doc = "Bits 4:5 - Select the type of transfer implemented by DMA channel"]
    #[inline(always)]
    pub fn transfer_type(&mut self) -> TRANSFER_TYPE_W {
        TRANSFER_TYPE_W { w: self }
    }
    #[doc = "Bit 3 - Configure whether the destination address should increment"]
    #[inline(always)]
    pub fn dest_addr_inc(&mut self) -> DEST_ADDR_INC_W {
        DEST_ADDR_INC_W { w: self }
    }
    #[doc = "Bit 2 - Configure whether the source address should increment"]
    #[inline(always)]
    pub fn src_addr_inc(&mut self) -> SRC_ADDR_INC_W {
        SRC_ADDR_INC_W { w: self }
    }
    #[doc = "Bit 1 - Select the addressing mode for this channel"]
    #[inline(always)]
    pub fn addr_mode(&mut self) -> ADDR_MODE_W {
        ADDR_MODE_W { w: self }
    }
    #[doc = "Bit 0 - Enable DMA Channel"]
    #[inline(always)]
    pub fn enable(&mut self) -> ENABLE_W {
        ENABLE_W { w: self }
    }
}