1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
#[doc = "Reader of register TCSR"]
pub type R = crate::R<u32, super::TCSR>;
#[doc = "Writer for register TCSR"]
pub type W = crate::W<u32, super::TCSR>;
#[doc = "Register TCSR `reset()`'s with value 0"]
impl crate::ResetValue for super::TCSR {
  type Type = u32;
  #[inline(always)]
  fn reset_value() -> Self::Type {
    0
  }
}
#[doc = "FIFO Request DMA Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FRDE_A {
  #[doc = "0: Disables the DMA request."]
  FRDE_0,
  #[doc = "1: Enables the DMA request."]
  FRDE_1,
}
impl From<FRDE_A> for bool {
  #[inline(always)]
  fn from(variant: FRDE_A) -> Self {
    match variant {
      FRDE_A::FRDE_0 => false,
      FRDE_A::FRDE_1 => true,
    }
  }
}
#[doc = "Reader of field `FRDE`"]
pub type FRDE_R = crate::R<bool, FRDE_A>;
impl FRDE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FRDE_A {
    match self.bits {
      false => FRDE_A::FRDE_0,
      true => FRDE_A::FRDE_1,
    }
  }
  #[doc = "Checks if the value of the field is `FRDE_0`"]
  #[inline(always)]
  pub fn is_frde_0(&self) -> bool {
    *self == FRDE_A::FRDE_0
  }
  #[doc = "Checks if the value of the field is `FRDE_1`"]
  #[inline(always)]
  pub fn is_frde_1(&self) -> bool {
    *self == FRDE_A::FRDE_1
  }
}
#[doc = "Write proxy for field `FRDE`"]
pub struct FRDE_W<'a> {
  w: &'a mut W,
}
impl<'a> FRDE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FRDE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables the DMA request."]
  #[inline(always)]
  pub fn frde_0(self) -> &'a mut W {
    self.variant(FRDE_A::FRDE_0)
  }
  #[doc = "Enables the DMA request."]
  #[inline(always)]
  pub fn frde_1(self) -> &'a mut W {
    self.variant(FRDE_A::FRDE_1)
  }
  #[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
  }
}
#[doc = "FIFO Warning DMA Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FWDE_A {
  #[doc = "0: Disables the DMA request."]
  FWDE_0,
  #[doc = "1: Enables the DMA request."]
  FWDE_1,
}
impl From<FWDE_A> for bool {
  #[inline(always)]
  fn from(variant: FWDE_A) -> Self {
    match variant {
      FWDE_A::FWDE_0 => false,
      FWDE_A::FWDE_1 => true,
    }
  }
}
#[doc = "Reader of field `FWDE`"]
pub type FWDE_R = crate::R<bool, FWDE_A>;
impl FWDE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FWDE_A {
    match self.bits {
      false => FWDE_A::FWDE_0,
      true => FWDE_A::FWDE_1,
    }
  }
  #[doc = "Checks if the value of the field is `FWDE_0`"]
  #[inline(always)]
  pub fn is_fwde_0(&self) -> bool {
    *self == FWDE_A::FWDE_0
  }
  #[doc = "Checks if the value of the field is `FWDE_1`"]
  #[inline(always)]
  pub fn is_fwde_1(&self) -> bool {
    *self == FWDE_A::FWDE_1
  }
}
#[doc = "Write proxy for field `FWDE`"]
pub struct FWDE_W<'a> {
  w: &'a mut W,
}
impl<'a> FWDE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FWDE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables the DMA request."]
  #[inline(always)]
  pub fn fwde_0(self) -> &'a mut W {
    self.variant(FWDE_A::FWDE_0)
  }
  #[doc = "Enables the DMA request."]
  #[inline(always)]
  pub fn fwde_1(self) -> &'a mut W {
    self.variant(FWDE_A::FWDE_1)
  }
  #[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 = "FIFO Request Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FRIE_A {
  #[doc = "0: Disables the interrupt."]
  FRIE_0,
  #[doc = "1: Enables the interrupt."]
  FRIE_1,
}
impl From<FRIE_A> for bool {
  #[inline(always)]
  fn from(variant: FRIE_A) -> Self {
    match variant {
      FRIE_A::FRIE_0 => false,
      FRIE_A::FRIE_1 => true,
    }
  }
}
#[doc = "Reader of field `FRIE`"]
pub type FRIE_R = crate::R<bool, FRIE_A>;
impl FRIE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FRIE_A {
    match self.bits {
      false => FRIE_A::FRIE_0,
      true => FRIE_A::FRIE_1,
    }
  }
  #[doc = "Checks if the value of the field is `FRIE_0`"]
  #[inline(always)]
  pub fn is_frie_0(&self) -> bool {
    *self == FRIE_A::FRIE_0
  }
  #[doc = "Checks if the value of the field is `FRIE_1`"]
  #[inline(always)]
  pub fn is_frie_1(&self) -> bool {
    *self == FRIE_A::FRIE_1
  }
}
#[doc = "Write proxy for field `FRIE`"]
pub struct FRIE_W<'a> {
  w: &'a mut W,
}
impl<'a> FRIE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FRIE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables the interrupt."]
  #[inline(always)]
  pub fn frie_0(self) -> &'a mut W {
    self.variant(FRIE_A::FRIE_0)
  }
  #[doc = "Enables the interrupt."]
  #[inline(always)]
  pub fn frie_1(self) -> &'a mut W {
    self.variant(FRIE_A::FRIE_1)
  }
  #[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 << 8)) | (((value as u32) & 0x01) << 8);
    self.w
  }
}
#[doc = "FIFO Warning Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FWIE_A {
  #[doc = "0: Disables the interrupt."]
  FWIE_0,
  #[doc = "1: Enables the interrupt."]
  FWIE_1,
}
impl From<FWIE_A> for bool {
  #[inline(always)]
  fn from(variant: FWIE_A) -> Self {
    match variant {
      FWIE_A::FWIE_0 => false,
      FWIE_A::FWIE_1 => true,
    }
  }
}
#[doc = "Reader of field `FWIE`"]
pub type FWIE_R = crate::R<bool, FWIE_A>;
impl FWIE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FWIE_A {
    match self.bits {
      false => FWIE_A::FWIE_0,
      true => FWIE_A::FWIE_1,
    }
  }
  #[doc = "Checks if the value of the field is `FWIE_0`"]
  #[inline(always)]
  pub fn is_fwie_0(&self) -> bool {
    *self == FWIE_A::FWIE_0
  }
  #[doc = "Checks if the value of the field is `FWIE_1`"]
  #[inline(always)]
  pub fn is_fwie_1(&self) -> bool {
    *self == FWIE_A::FWIE_1
  }
}
#[doc = "Write proxy for field `FWIE`"]
pub struct FWIE_W<'a> {
  w: &'a mut W,
}
impl<'a> FWIE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FWIE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables the interrupt."]
  #[inline(always)]
  pub fn fwie_0(self) -> &'a mut W {
    self.variant(FWIE_A::FWIE_0)
  }
  #[doc = "Enables the interrupt."]
  #[inline(always)]
  pub fn fwie_1(self) -> &'a mut W {
    self.variant(FWIE_A::FWIE_1)
  }
  #[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 << 9)) | (((value as u32) & 0x01) << 9);
    self.w
  }
}
#[doc = "FIFO Error Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FEIE_A {
  #[doc = "0: Disables the interrupt."]
  FEIE_0,
  #[doc = "1: Enables the interrupt."]
  FEIE_1,
}
impl From<FEIE_A> for bool {
  #[inline(always)]
  fn from(variant: FEIE_A) -> Self {
    match variant {
      FEIE_A::FEIE_0 => false,
      FEIE_A::FEIE_1 => true,
    }
  }
}
#[doc = "Reader of field `FEIE`"]
pub type FEIE_R = crate::R<bool, FEIE_A>;
impl FEIE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FEIE_A {
    match self.bits {
      false => FEIE_A::FEIE_0,
      true => FEIE_A::FEIE_1,
    }
  }
  #[doc = "Checks if the value of the field is `FEIE_0`"]
  #[inline(always)]
  pub fn is_feie_0(&self) -> bool {
    *self == FEIE_A::FEIE_0
  }
  #[doc = "Checks if the value of the field is `FEIE_1`"]
  #[inline(always)]
  pub fn is_feie_1(&self) -> bool {
    *self == FEIE_A::FEIE_1
  }
}
#[doc = "Write proxy for field `FEIE`"]
pub struct FEIE_W<'a> {
  w: &'a mut W,
}
impl<'a> FEIE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FEIE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables the interrupt."]
  #[inline(always)]
  pub fn feie_0(self) -> &'a mut W {
    self.variant(FEIE_A::FEIE_0)
  }
  #[doc = "Enables the interrupt."]
  #[inline(always)]
  pub fn feie_1(self) -> &'a mut W {
    self.variant(FEIE_A::FEIE_1)
  }
  #[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 << 10)) | (((value as u32) & 0x01) << 10);
    self.w
  }
}
#[doc = "Sync Error Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SEIE_A {
  #[doc = "0: Disables interrupt."]
  SEIE_0,
  #[doc = "1: Enables interrupt."]
  SEIE_1,
}
impl From<SEIE_A> for bool {
  #[inline(always)]
  fn from(variant: SEIE_A) -> Self {
    match variant {
      SEIE_A::SEIE_0 => false,
      SEIE_A::SEIE_1 => true,
    }
  }
}
#[doc = "Reader of field `SEIE`"]
pub type SEIE_R = crate::R<bool, SEIE_A>;
impl SEIE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> SEIE_A {
    match self.bits {
      false => SEIE_A::SEIE_0,
      true => SEIE_A::SEIE_1,
    }
  }
  #[doc = "Checks if the value of the field is `SEIE_0`"]
  #[inline(always)]
  pub fn is_seie_0(&self) -> bool {
    *self == SEIE_A::SEIE_0
  }
  #[doc = "Checks if the value of the field is `SEIE_1`"]
  #[inline(always)]
  pub fn is_seie_1(&self) -> bool {
    *self == SEIE_A::SEIE_1
  }
}
#[doc = "Write proxy for field `SEIE`"]
pub struct SEIE_W<'a> {
  w: &'a mut W,
}
impl<'a> SEIE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: SEIE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables interrupt."]
  #[inline(always)]
  pub fn seie_0(self) -> &'a mut W {
    self.variant(SEIE_A::SEIE_0)
  }
  #[doc = "Enables interrupt."]
  #[inline(always)]
  pub fn seie_1(self) -> &'a mut W {
    self.variant(SEIE_A::SEIE_1)
  }
  #[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 << 11)) | (((value as u32) & 0x01) << 11);
    self.w
  }
}
#[doc = "Word Start Interrupt Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WSIE_A {
  #[doc = "0: Disables interrupt."]
  WSIE_0,
  #[doc = "1: Enables interrupt."]
  WSIE_1,
}
impl From<WSIE_A> for bool {
  #[inline(always)]
  fn from(variant: WSIE_A) -> Self {
    match variant {
      WSIE_A::WSIE_0 => false,
      WSIE_A::WSIE_1 => true,
    }
  }
}
#[doc = "Reader of field `WSIE`"]
pub type WSIE_R = crate::R<bool, WSIE_A>;
impl WSIE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> WSIE_A {
    match self.bits {
      false => WSIE_A::WSIE_0,
      true => WSIE_A::WSIE_1,
    }
  }
  #[doc = "Checks if the value of the field is `WSIE_0`"]
  #[inline(always)]
  pub fn is_wsie_0(&self) -> bool {
    *self == WSIE_A::WSIE_0
  }
  #[doc = "Checks if the value of the field is `WSIE_1`"]
  #[inline(always)]
  pub fn is_wsie_1(&self) -> bool {
    *self == WSIE_A::WSIE_1
  }
}
#[doc = "Write proxy for field `WSIE`"]
pub struct WSIE_W<'a> {
  w: &'a mut W,
}
impl<'a> WSIE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WSIE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Disables interrupt."]
  #[inline(always)]
  pub fn wsie_0(self) -> &'a mut W {
    self.variant(WSIE_A::WSIE_0)
  }
  #[doc = "Enables interrupt."]
  #[inline(always)]
  pub fn wsie_1(self) -> &'a mut W {
    self.variant(WSIE_A::WSIE_1)
  }
  #[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 << 12)) | (((value as u32) & 0x01) << 12);
    self.w
  }
}
#[doc = "FIFO Request Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FRF_A {
  #[doc = "0: Transmit FIFO watermark has not been reached."]
  FRF_0,
  #[doc = "1: Transmit FIFO watermark has been reached."]
  FRF_1,
}
impl From<FRF_A> for bool {
  #[inline(always)]
  fn from(variant: FRF_A) -> Self {
    match variant {
      FRF_A::FRF_0 => false,
      FRF_A::FRF_1 => true,
    }
  }
}
#[doc = "Reader of field `FRF`"]
pub type FRF_R = crate::R<bool, FRF_A>;
impl FRF_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FRF_A {
    match self.bits {
      false => FRF_A::FRF_0,
      true => FRF_A::FRF_1,
    }
  }
  #[doc = "Checks if the value of the field is `FRF_0`"]
  #[inline(always)]
  pub fn is_frf_0(&self) -> bool {
    *self == FRF_A::FRF_0
  }
  #[doc = "Checks if the value of the field is `FRF_1`"]
  #[inline(always)]
  pub fn is_frf_1(&self) -> bool {
    *self == FRF_A::FRF_1
  }
}
#[doc = "FIFO Warning Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FWF_A {
  #[doc = "0: No enabled transmit FIFO is empty."]
  FWF_0,
  #[doc = "1: Enabled transmit FIFO is empty."]
  FWF_1,
}
impl From<FWF_A> for bool {
  #[inline(always)]
  fn from(variant: FWF_A) -> Self {
    match variant {
      FWF_A::FWF_0 => false,
      FWF_A::FWF_1 => true,
    }
  }
}
#[doc = "Reader of field `FWF`"]
pub type FWF_R = crate::R<bool, FWF_A>;
impl FWF_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FWF_A {
    match self.bits {
      false => FWF_A::FWF_0,
      true => FWF_A::FWF_1,
    }
  }
  #[doc = "Checks if the value of the field is `FWF_0`"]
  #[inline(always)]
  pub fn is_fwf_0(&self) -> bool {
    *self == FWF_A::FWF_0
  }
  #[doc = "Checks if the value of the field is `FWF_1`"]
  #[inline(always)]
  pub fn is_fwf_1(&self) -> bool {
    *self == FWF_A::FWF_1
  }
}
#[doc = "FIFO Error Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FEF_A {
  #[doc = "0: Transmit underrun not detected."]
  FEF_0,
  #[doc = "1: Transmit underrun detected."]
  FEF_1,
}
impl From<FEF_A> for bool {
  #[inline(always)]
  fn from(variant: FEF_A) -> Self {
    match variant {
      FEF_A::FEF_0 => false,
      FEF_A::FEF_1 => true,
    }
  }
}
#[doc = "Reader of field `FEF`"]
pub type FEF_R = crate::R<bool, FEF_A>;
impl FEF_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> FEF_A {
    match self.bits {
      false => FEF_A::FEF_0,
      true => FEF_A::FEF_1,
    }
  }
  #[doc = "Checks if the value of the field is `FEF_0`"]
  #[inline(always)]
  pub fn is_fef_0(&self) -> bool {
    *self == FEF_A::FEF_0
  }
  #[doc = "Checks if the value of the field is `FEF_1`"]
  #[inline(always)]
  pub fn is_fef_1(&self) -> bool {
    *self == FEF_A::FEF_1
  }
}
#[doc = "Write proxy for field `FEF`"]
pub struct FEF_W<'a> {
  w: &'a mut W,
}
impl<'a> FEF_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FEF_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Transmit underrun not detected."]
  #[inline(always)]
  pub fn fef_0(self) -> &'a mut W {
    self.variant(FEF_A::FEF_0)
  }
  #[doc = "Transmit underrun detected."]
  #[inline(always)]
  pub fn fef_1(self) -> &'a mut W {
    self.variant(FEF_A::FEF_1)
  }
  #[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 << 18)) | (((value as u32) & 0x01) << 18);
    self.w
  }
}
#[doc = "Sync Error Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SEF_A {
  #[doc = "0: Sync error not detected."]
  SEF_0,
  #[doc = "1: Frame sync error detected."]
  SEF_1,
}
impl From<SEF_A> for bool {
  #[inline(always)]
  fn from(variant: SEF_A) -> Self {
    match variant {
      SEF_A::SEF_0 => false,
      SEF_A::SEF_1 => true,
    }
  }
}
#[doc = "Reader of field `SEF`"]
pub type SEF_R = crate::R<bool, SEF_A>;
impl SEF_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> SEF_A {
    match self.bits {
      false => SEF_A::SEF_0,
      true => SEF_A::SEF_1,
    }
  }
  #[doc = "Checks if the value of the field is `SEF_0`"]
  #[inline(always)]
  pub fn is_sef_0(&self) -> bool {
    *self == SEF_A::SEF_0
  }
  #[doc = "Checks if the value of the field is `SEF_1`"]
  #[inline(always)]
  pub fn is_sef_1(&self) -> bool {
    *self == SEF_A::SEF_1
  }
}
#[doc = "Write proxy for field `SEF`"]
pub struct SEF_W<'a> {
  w: &'a mut W,
}
impl<'a> SEF_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: SEF_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Sync error not detected."]
  #[inline(always)]
  pub fn sef_0(self) -> &'a mut W {
    self.variant(SEF_A::SEF_0)
  }
  #[doc = "Frame sync error detected."]
  #[inline(always)]
  pub fn sef_1(self) -> &'a mut W {
    self.variant(SEF_A::SEF_1)
  }
  #[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 << 19)) | (((value as u32) & 0x01) << 19);
    self.w
  }
}
#[doc = "Word Start Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WSF_A {
  #[doc = "0: Start of word not detected."]
  WSF_0,
  #[doc = "1: Start of word detected."]
  WSF_1,
}
impl From<WSF_A> for bool {
  #[inline(always)]
  fn from(variant: WSF_A) -> Self {
    match variant {
      WSF_A::WSF_0 => false,
      WSF_A::WSF_1 => true,
    }
  }
}
#[doc = "Reader of field `WSF`"]
pub type WSF_R = crate::R<bool, WSF_A>;
impl WSF_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> WSF_A {
    match self.bits {
      false => WSF_A::WSF_0,
      true => WSF_A::WSF_1,
    }
  }
  #[doc = "Checks if the value of the field is `WSF_0`"]
  #[inline(always)]
  pub fn is_wsf_0(&self) -> bool {
    *self == WSF_A::WSF_0
  }
  #[doc = "Checks if the value of the field is `WSF_1`"]
  #[inline(always)]
  pub fn is_wsf_1(&self) -> bool {
    *self == WSF_A::WSF_1
  }
}
#[doc = "Write proxy for field `WSF`"]
pub struct WSF_W<'a> {
  w: &'a mut W,
}
impl<'a> WSF_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WSF_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Start of word not detected."]
  #[inline(always)]
  pub fn wsf_0(self) -> &'a mut W {
    self.variant(WSF_A::WSF_0)
  }
  #[doc = "Start of word detected."]
  #[inline(always)]
  pub fn wsf_1(self) -> &'a mut W {
    self.variant(WSF_A::WSF_1)
  }
  #[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 = "Software Reset\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SR_A {
  #[doc = "0: No effect."]
  SR_0,
  #[doc = "1: Software reset."]
  SR_1,
}
impl From<SR_A> for bool {
  #[inline(always)]
  fn from(variant: SR_A) -> Self {
    match variant {
      SR_A::SR_0 => false,
      SR_A::SR_1 => true,
    }
  }
}
#[doc = "Reader of field `SR`"]
pub type SR_R = crate::R<bool, SR_A>;
impl SR_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> SR_A {
    match self.bits {
      false => SR_A::SR_0,
      true => SR_A::SR_1,
    }
  }
  #[doc = "Checks if the value of the field is `SR_0`"]
  #[inline(always)]
  pub fn is_sr_0(&self) -> bool {
    *self == SR_A::SR_0
  }
  #[doc = "Checks if the value of the field is `SR_1`"]
  #[inline(always)]
  pub fn is_sr_1(&self) -> bool {
    *self == SR_A::SR_1
  }
}
#[doc = "Write proxy for field `SR`"]
pub struct SR_W<'a> {
  w: &'a mut W,
}
impl<'a> SR_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: SR_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "No effect."]
  #[inline(always)]
  pub fn sr_0(self) -> &'a mut W {
    self.variant(SR_A::SR_0)
  }
  #[doc = "Software reset."]
  #[inline(always)]
  pub fn sr_1(self) -> &'a mut W {
    self.variant(SR_A::SR_1)
  }
  #[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 = "FIFO Reset\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FR_AW {
  #[doc = "0: No effect."]
  FR_0,
  #[doc = "1: FIFO reset."]
  FR_1,
}
impl From<FR_AW> for bool {
  #[inline(always)]
  fn from(variant: FR_AW) -> Self {
    match variant {
      FR_AW::FR_0 => false,
      FR_AW::FR_1 => true,
    }
  }
}
#[doc = "Write proxy for field `FR`"]
pub struct FR_W<'a> {
  w: &'a mut W,
}
impl<'a> FR_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: FR_AW) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "No effect."]
  #[inline(always)]
  pub fn fr_0(self) -> &'a mut W {
    self.variant(FR_AW::FR_0)
  }
  #[doc = "FIFO reset."]
  #[inline(always)]
  pub fn fr_1(self) -> &'a mut W {
    self.variant(FR_AW::FR_1)
  }
  #[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 = "Bit Clock Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum BCE_A {
  #[doc = "0: Transmit bit clock is disabled."]
  BCE_0,
  #[doc = "1: Transmit bit clock is enabled."]
  BCE_1,
}
impl From<BCE_A> for bool {
  #[inline(always)]
  fn from(variant: BCE_A) -> Self {
    match variant {
      BCE_A::BCE_0 => false,
      BCE_A::BCE_1 => true,
    }
  }
}
#[doc = "Reader of field `BCE`"]
pub type BCE_R = crate::R<bool, BCE_A>;
impl BCE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> BCE_A {
    match self.bits {
      false => BCE_A::BCE_0,
      true => BCE_A::BCE_1,
    }
  }
  #[doc = "Checks if the value of the field is `BCE_0`"]
  #[inline(always)]
  pub fn is_bce_0(&self) -> bool {
    *self == BCE_A::BCE_0
  }
  #[doc = "Checks if the value of the field is `BCE_1`"]
  #[inline(always)]
  pub fn is_bce_1(&self) -> bool {
    *self == BCE_A::BCE_1
  }
}
#[doc = "Write proxy for field `BCE`"]
pub struct BCE_W<'a> {
  w: &'a mut W,
}
impl<'a> BCE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: BCE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Transmit bit clock is disabled."]
  #[inline(always)]
  pub fn bce_0(self) -> &'a mut W {
    self.variant(BCE_A::BCE_0)
  }
  #[doc = "Transmit bit clock is enabled."]
  #[inline(always)]
  pub fn bce_1(self) -> &'a mut W {
    self.variant(BCE_A::BCE_1)
  }
  #[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 << 28)) | (((value as u32) & 0x01) << 28);
    self.w
  }
}
#[doc = "Debug Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DBGE_A {
  #[doc = "0: Transmitter is disabled in Debug mode, after completing the current frame."]
  DBGE_0,
  #[doc = "1: Transmitter is enabled in Debug mode."]
  DBGE_1,
}
impl From<DBGE_A> for bool {
  #[inline(always)]
  fn from(variant: DBGE_A) -> Self {
    match variant {
      DBGE_A::DBGE_0 => false,
      DBGE_A::DBGE_1 => true,
    }
  }
}
#[doc = "Reader of field `DBGE`"]
pub type DBGE_R = crate::R<bool, DBGE_A>;
impl DBGE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> DBGE_A {
    match self.bits {
      false => DBGE_A::DBGE_0,
      true => DBGE_A::DBGE_1,
    }
  }
  #[doc = "Checks if the value of the field is `DBGE_0`"]
  #[inline(always)]
  pub fn is_dbge_0(&self) -> bool {
    *self == DBGE_A::DBGE_0
  }
  #[doc = "Checks if the value of the field is `DBGE_1`"]
  #[inline(always)]
  pub fn is_dbge_1(&self) -> bool {
    *self == DBGE_A::DBGE_1
  }
}
#[doc = "Write proxy for field `DBGE`"]
pub struct DBGE_W<'a> {
  w: &'a mut W,
}
impl<'a> DBGE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: DBGE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Transmitter is disabled in Debug mode, after completing the current frame."]
  #[inline(always)]
  pub fn dbge_0(self) -> &'a mut W {
    self.variant(DBGE_A::DBGE_0)
  }
  #[doc = "Transmitter is enabled in Debug mode."]
  #[inline(always)]
  pub fn dbge_1(self) -> &'a mut W {
    self.variant(DBGE_A::DBGE_1)
  }
  #[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 << 29)) | (((value as u32) & 0x01) << 29);
    self.w
  }
}
#[doc = "Stop Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum STOPE_A {
  #[doc = "0: Transmitter disabled in Stop mode."]
  STOPE_0,
  #[doc = "1: Transmitter enabled in Stop mode."]
  STOPE_1,
}
impl From<STOPE_A> for bool {
  #[inline(always)]
  fn from(variant: STOPE_A) -> Self {
    match variant {
      STOPE_A::STOPE_0 => false,
      STOPE_A::STOPE_1 => true,
    }
  }
}
#[doc = "Reader of field `STOPE`"]
pub type STOPE_R = crate::R<bool, STOPE_A>;
impl STOPE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> STOPE_A {
    match self.bits {
      false => STOPE_A::STOPE_0,
      true => STOPE_A::STOPE_1,
    }
  }
  #[doc = "Checks if the value of the field is `STOPE_0`"]
  #[inline(always)]
  pub fn is_stope_0(&self) -> bool {
    *self == STOPE_A::STOPE_0
  }
  #[doc = "Checks if the value of the field is `STOPE_1`"]
  #[inline(always)]
  pub fn is_stope_1(&self) -> bool {
    *self == STOPE_A::STOPE_1
  }
}
#[doc = "Write proxy for field `STOPE`"]
pub struct STOPE_W<'a> {
  w: &'a mut W,
}
impl<'a> STOPE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: STOPE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Transmitter disabled in Stop mode."]
  #[inline(always)]
  pub fn stope_0(self) -> &'a mut W {
    self.variant(STOPE_A::STOPE_0)
  }
  #[doc = "Transmitter enabled in Stop mode."]
  #[inline(always)]
  pub fn stope_1(self) -> &'a mut W {
    self.variant(STOPE_A::STOPE_1)
  }
  #[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 << 30)) | (((value as u32) & 0x01) << 30);
    self.w
  }
}
#[doc = "Transmitter Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TE_A {
  #[doc = "0: Transmitter is disabled."]
  TE_0,
  #[doc = "1: Transmitter is enabled, or transmitter has been disabled and has not yet reached end of frame."]
  TE_1,
}
impl From<TE_A> for bool {
  #[inline(always)]
  fn from(variant: TE_A) -> Self {
    match variant {
      TE_A::TE_0 => false,
      TE_A::TE_1 => true,
    }
  }
}
#[doc = "Reader of field `TE`"]
pub type TE_R = crate::R<bool, TE_A>;
impl TE_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> TE_A {
    match self.bits {
      false => TE_A::TE_0,
      true => TE_A::TE_1,
    }
  }
  #[doc = "Checks if the value of the field is `TE_0`"]
  #[inline(always)]
  pub fn is_te_0(&self) -> bool {
    *self == TE_A::TE_0
  }
  #[doc = "Checks if the value of the field is `TE_1`"]
  #[inline(always)]
  pub fn is_te_1(&self) -> bool {
    *self == TE_A::TE_1
  }
}
#[doc = "Write proxy for field `TE`"]
pub struct TE_W<'a> {
  w: &'a mut W,
}
impl<'a> TE_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: TE_A) -> &'a mut W {
    {
      self.bit(variant.into())
    }
  }
  #[doc = "Transmitter is disabled."]
  #[inline(always)]
  pub fn te_0(self) -> &'a mut W {
    self.variant(TE_A::TE_0)
  }
  #[doc = "Transmitter is enabled, or transmitter has been disabled and has not yet reached end of frame."]
  #[inline(always)]
  pub fn te_1(self) -> &'a mut W {
    self.variant(TE_A::TE_1)
  }
  #[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 << 31)) | (((value as u32) & 0x01) << 31);
    self.w
  }
}
impl R {
  #[doc = "Bit 0 - FIFO Request DMA Enable"]
  #[inline(always)]
  pub fn frde(&self) -> FRDE_R {
    FRDE_R::new((self.bits & 0x01) != 0)
  }
  #[doc = "Bit 1 - FIFO Warning DMA Enable"]
  #[inline(always)]
  pub fn fwde(&self) -> FWDE_R {
    FWDE_R::new(((self.bits >> 1) & 0x01) != 0)
  }
  #[doc = "Bit 8 - FIFO Request Interrupt Enable"]
  #[inline(always)]
  pub fn frie(&self) -> FRIE_R {
    FRIE_R::new(((self.bits >> 8) & 0x01) != 0)
  }
  #[doc = "Bit 9 - FIFO Warning Interrupt Enable"]
  #[inline(always)]
  pub fn fwie(&self) -> FWIE_R {
    FWIE_R::new(((self.bits >> 9) & 0x01) != 0)
  }
  #[doc = "Bit 10 - FIFO Error Interrupt Enable"]
  #[inline(always)]
  pub fn feie(&self) -> FEIE_R {
    FEIE_R::new(((self.bits >> 10) & 0x01) != 0)
  }
  #[doc = "Bit 11 - Sync Error Interrupt Enable"]
  #[inline(always)]
  pub fn seie(&self) -> SEIE_R {
    SEIE_R::new(((self.bits >> 11) & 0x01) != 0)
  }
  #[doc = "Bit 12 - Word Start Interrupt Enable"]
  #[inline(always)]
  pub fn wsie(&self) -> WSIE_R {
    WSIE_R::new(((self.bits >> 12) & 0x01) != 0)
  }
  #[doc = "Bit 16 - FIFO Request Flag"]
  #[inline(always)]
  pub fn frf(&self) -> FRF_R {
    FRF_R::new(((self.bits >> 16) & 0x01) != 0)
  }
  #[doc = "Bit 17 - FIFO Warning Flag"]
  #[inline(always)]
  pub fn fwf(&self) -> FWF_R {
    FWF_R::new(((self.bits >> 17) & 0x01) != 0)
  }
  #[doc = "Bit 18 - FIFO Error Flag"]
  #[inline(always)]
  pub fn fef(&self) -> FEF_R {
    FEF_R::new(((self.bits >> 18) & 0x01) != 0)
  }
  #[doc = "Bit 19 - Sync Error Flag"]
  #[inline(always)]
  pub fn sef(&self) -> SEF_R {
    SEF_R::new(((self.bits >> 19) & 0x01) != 0)
  }
  #[doc = "Bit 20 - Word Start Flag"]
  #[inline(always)]
  pub fn wsf(&self) -> WSF_R {
    WSF_R::new(((self.bits >> 20) & 0x01) != 0)
  }
  #[doc = "Bit 24 - Software Reset"]
  #[inline(always)]
  pub fn sr(&self) -> SR_R {
    SR_R::new(((self.bits >> 24) & 0x01) != 0)
  }
  #[doc = "Bit 28 - Bit Clock Enable"]
  #[inline(always)]
  pub fn bce(&self) -> BCE_R {
    BCE_R::new(((self.bits >> 28) & 0x01) != 0)
  }
  #[doc = "Bit 29 - Debug Enable"]
  #[inline(always)]
  pub fn dbge(&self) -> DBGE_R {
    DBGE_R::new(((self.bits >> 29) & 0x01) != 0)
  }
  #[doc = "Bit 30 - Stop Enable"]
  #[inline(always)]
  pub fn stope(&self) -> STOPE_R {
    STOPE_R::new(((self.bits >> 30) & 0x01) != 0)
  }
  #[doc = "Bit 31 - Transmitter Enable"]
  #[inline(always)]
  pub fn te(&self) -> TE_R {
    TE_R::new(((self.bits >> 31) & 0x01) != 0)
  }
}
impl W {
  #[doc = "Bit 0 - FIFO Request DMA Enable"]
  #[inline(always)]
  pub fn frde(&mut self) -> FRDE_W {
    FRDE_W { w: self }
  }
  #[doc = "Bit 1 - FIFO Warning DMA Enable"]
  #[inline(always)]
  pub fn fwde(&mut self) -> FWDE_W {
    FWDE_W { w: self }
  }
  #[doc = "Bit 8 - FIFO Request Interrupt Enable"]
  #[inline(always)]
  pub fn frie(&mut self) -> FRIE_W {
    FRIE_W { w: self }
  }
  #[doc = "Bit 9 - FIFO Warning Interrupt Enable"]
  #[inline(always)]
  pub fn fwie(&mut self) -> FWIE_W {
    FWIE_W { w: self }
  }
  #[doc = "Bit 10 - FIFO Error Interrupt Enable"]
  #[inline(always)]
  pub fn feie(&mut self) -> FEIE_W {
    FEIE_W { w: self }
  }
  #[doc = "Bit 11 - Sync Error Interrupt Enable"]
  #[inline(always)]
  pub fn seie(&mut self) -> SEIE_W {
    SEIE_W { w: self }
  }
  #[doc = "Bit 12 - Word Start Interrupt Enable"]
  #[inline(always)]
  pub fn wsie(&mut self) -> WSIE_W {
    WSIE_W { w: self }
  }
  #[doc = "Bit 18 - FIFO Error Flag"]
  #[inline(always)]
  pub fn fef(&mut self) -> FEF_W {
    FEF_W { w: self }
  }
  #[doc = "Bit 19 - Sync Error Flag"]
  #[inline(always)]
  pub fn sef(&mut self) -> SEF_W {
    SEF_W { w: self }
  }
  #[doc = "Bit 20 - Word Start Flag"]
  #[inline(always)]
  pub fn wsf(&mut self) -> WSF_W {
    WSF_W { w: self }
  }
  #[doc = "Bit 24 - Software Reset"]
  #[inline(always)]
  pub fn sr(&mut self) -> SR_W {
    SR_W { w: self }
  }
  #[doc = "Bit 25 - FIFO Reset"]
  #[inline(always)]
  pub fn fr(&mut self) -> FR_W {
    FR_W { w: self }
  }
  #[doc = "Bit 28 - Bit Clock Enable"]
  #[inline(always)]
  pub fn bce(&mut self) -> BCE_W {
    BCE_W { w: self }
  }
  #[doc = "Bit 29 - Debug Enable"]
  #[inline(always)]
  pub fn dbge(&mut self) -> DBGE_W {
    DBGE_W { w: self }
  }
  #[doc = "Bit 30 - Stop Enable"]
  #[inline(always)]
  pub fn stope(&mut self) -> STOPE_W {
    STOPE_W { w: self }
  }
  #[doc = "Bit 31 - Transmitter Enable"]
  #[inline(always)]
  pub fn te(&mut self) -> TE_W {
    TE_W { w: self }
  }
}