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
#[doc = "Reader of register PDC2"]
pub type R = crate::R<u32, super::PDC2>;
#[doc = "Writer for register PDC2"]
pub type W = crate::W<u32, super::PDC2>;
#[doc = "Register PDC2 `reset()`'s with value 0"]
impl crate::ResetValue for super::PDC2 {
  type Type = u32;
  #[inline(always)]
  fn reset_value() -> Self::Type {
    0
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC16_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC16_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC16_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC16_2,
}
impl From<WUPDC16_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC16_A) -> Self {
    match variant {
      WUPDC16_A::WUPDC16_0 => 0,
      WUPDC16_A::WUPDC16_1 => 1,
      WUPDC16_A::WUPDC16_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC16`"]
pub type WUPDC16_R = crate::R<u8, WUPDC16_A>;
impl WUPDC16_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC16_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC16_A::WUPDC16_0),
      1 => Val(WUPDC16_A::WUPDC16_1),
      2 => Val(WUPDC16_A::WUPDC16_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC16_0`"]
  #[inline(always)]
  pub fn is_wupdc16_0(&self) -> bool {
    *self == WUPDC16_A::WUPDC16_0
  }
  #[doc = "Checks if the value of the field is `WUPDC16_1`"]
  #[inline(always)]
  pub fn is_wupdc16_1(&self) -> bool {
    *self == WUPDC16_A::WUPDC16_1
  }
  #[doc = "Checks if the value of the field is `WUPDC16_2`"]
  #[inline(always)]
  pub fn is_wupdc16_2(&self) -> bool {
    *self == WUPDC16_A::WUPDC16_2
  }
}
#[doc = "Write proxy for field `WUPDC16`"]
pub struct WUPDC16_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC16_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC16_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc16_0(self) -> &'a mut W {
    self.variant(WUPDC16_A::WUPDC16_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc16_1(self) -> &'a mut W {
    self.variant(WUPDC16_A::WUPDC16_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc16_2(self) -> &'a mut W {
    self.variant(WUPDC16_A::WUPDC16_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !0x03) | ((value as u32) & 0x03);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC17_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC17_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC17_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC17_2,
}
impl From<WUPDC17_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC17_A) -> Self {
    match variant {
      WUPDC17_A::WUPDC17_0 => 0,
      WUPDC17_A::WUPDC17_1 => 1,
      WUPDC17_A::WUPDC17_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC17`"]
pub type WUPDC17_R = crate::R<u8, WUPDC17_A>;
impl WUPDC17_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC17_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC17_A::WUPDC17_0),
      1 => Val(WUPDC17_A::WUPDC17_1),
      2 => Val(WUPDC17_A::WUPDC17_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC17_0`"]
  #[inline(always)]
  pub fn is_wupdc17_0(&self) -> bool {
    *self == WUPDC17_A::WUPDC17_0
  }
  #[doc = "Checks if the value of the field is `WUPDC17_1`"]
  #[inline(always)]
  pub fn is_wupdc17_1(&self) -> bool {
    *self == WUPDC17_A::WUPDC17_1
  }
  #[doc = "Checks if the value of the field is `WUPDC17_2`"]
  #[inline(always)]
  pub fn is_wupdc17_2(&self) -> bool {
    *self == WUPDC17_A::WUPDC17_2
  }
}
#[doc = "Write proxy for field `WUPDC17`"]
pub struct WUPDC17_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC17_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC17_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc17_0(self) -> &'a mut W {
    self.variant(WUPDC17_A::WUPDC17_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc17_1(self) -> &'a mut W {
    self.variant(WUPDC17_A::WUPDC17_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc17_2(self) -> &'a mut W {
    self.variant(WUPDC17_A::WUPDC17_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 2)) | (((value as u32) & 0x03) << 2);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC18_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC18_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC18_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC18_2,
}
impl From<WUPDC18_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC18_A) -> Self {
    match variant {
      WUPDC18_A::WUPDC18_0 => 0,
      WUPDC18_A::WUPDC18_1 => 1,
      WUPDC18_A::WUPDC18_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC18`"]
pub type WUPDC18_R = crate::R<u8, WUPDC18_A>;
impl WUPDC18_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC18_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC18_A::WUPDC18_0),
      1 => Val(WUPDC18_A::WUPDC18_1),
      2 => Val(WUPDC18_A::WUPDC18_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC18_0`"]
  #[inline(always)]
  pub fn is_wupdc18_0(&self) -> bool {
    *self == WUPDC18_A::WUPDC18_0
  }
  #[doc = "Checks if the value of the field is `WUPDC18_1`"]
  #[inline(always)]
  pub fn is_wupdc18_1(&self) -> bool {
    *self == WUPDC18_A::WUPDC18_1
  }
  #[doc = "Checks if the value of the field is `WUPDC18_2`"]
  #[inline(always)]
  pub fn is_wupdc18_2(&self) -> bool {
    *self == WUPDC18_A::WUPDC18_2
  }
}
#[doc = "Write proxy for field `WUPDC18`"]
pub struct WUPDC18_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC18_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC18_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc18_0(self) -> &'a mut W {
    self.variant(WUPDC18_A::WUPDC18_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc18_1(self) -> &'a mut W {
    self.variant(WUPDC18_A::WUPDC18_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc18_2(self) -> &'a mut W {
    self.variant(WUPDC18_A::WUPDC18_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u32) & 0x03) << 4);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC19_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC19_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC19_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC19_2,
}
impl From<WUPDC19_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC19_A) -> Self {
    match variant {
      WUPDC19_A::WUPDC19_0 => 0,
      WUPDC19_A::WUPDC19_1 => 1,
      WUPDC19_A::WUPDC19_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC19`"]
pub type WUPDC19_R = crate::R<u8, WUPDC19_A>;
impl WUPDC19_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC19_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC19_A::WUPDC19_0),
      1 => Val(WUPDC19_A::WUPDC19_1),
      2 => Val(WUPDC19_A::WUPDC19_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC19_0`"]
  #[inline(always)]
  pub fn is_wupdc19_0(&self) -> bool {
    *self == WUPDC19_A::WUPDC19_0
  }
  #[doc = "Checks if the value of the field is `WUPDC19_1`"]
  #[inline(always)]
  pub fn is_wupdc19_1(&self) -> bool {
    *self == WUPDC19_A::WUPDC19_1
  }
  #[doc = "Checks if the value of the field is `WUPDC19_2`"]
  #[inline(always)]
  pub fn is_wupdc19_2(&self) -> bool {
    *self == WUPDC19_A::WUPDC19_2
  }
}
#[doc = "Write proxy for field `WUPDC19`"]
pub struct WUPDC19_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC19_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC19_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc19_0(self) -> &'a mut W {
    self.variant(WUPDC19_A::WUPDC19_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc19_1(self) -> &'a mut W {
    self.variant(WUPDC19_A::WUPDC19_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc19_2(self) -> &'a mut W {
    self.variant(WUPDC19_A::WUPDC19_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 6)) | (((value as u32) & 0x03) << 6);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC20_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC20_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC20_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC20_2,
}
impl From<WUPDC20_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC20_A) -> Self {
    match variant {
      WUPDC20_A::WUPDC20_0 => 0,
      WUPDC20_A::WUPDC20_1 => 1,
      WUPDC20_A::WUPDC20_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC20`"]
pub type WUPDC20_R = crate::R<u8, WUPDC20_A>;
impl WUPDC20_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC20_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC20_A::WUPDC20_0),
      1 => Val(WUPDC20_A::WUPDC20_1),
      2 => Val(WUPDC20_A::WUPDC20_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC20_0`"]
  #[inline(always)]
  pub fn is_wupdc20_0(&self) -> bool {
    *self == WUPDC20_A::WUPDC20_0
  }
  #[doc = "Checks if the value of the field is `WUPDC20_1`"]
  #[inline(always)]
  pub fn is_wupdc20_1(&self) -> bool {
    *self == WUPDC20_A::WUPDC20_1
  }
  #[doc = "Checks if the value of the field is `WUPDC20_2`"]
  #[inline(always)]
  pub fn is_wupdc20_2(&self) -> bool {
    *self == WUPDC20_A::WUPDC20_2
  }
}
#[doc = "Write proxy for field `WUPDC20`"]
pub struct WUPDC20_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC20_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC20_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc20_0(self) -> &'a mut W {
    self.variant(WUPDC20_A::WUPDC20_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc20_1(self) -> &'a mut W {
    self.variant(WUPDC20_A::WUPDC20_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc20_2(self) -> &'a mut W {
    self.variant(WUPDC20_A::WUPDC20_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 8)) | (((value as u32) & 0x03) << 8);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC21_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC21_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC21_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC21_2,
}
impl From<WUPDC21_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC21_A) -> Self {
    match variant {
      WUPDC21_A::WUPDC21_0 => 0,
      WUPDC21_A::WUPDC21_1 => 1,
      WUPDC21_A::WUPDC21_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC21`"]
pub type WUPDC21_R = crate::R<u8, WUPDC21_A>;
impl WUPDC21_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC21_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC21_A::WUPDC21_0),
      1 => Val(WUPDC21_A::WUPDC21_1),
      2 => Val(WUPDC21_A::WUPDC21_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC21_0`"]
  #[inline(always)]
  pub fn is_wupdc21_0(&self) -> bool {
    *self == WUPDC21_A::WUPDC21_0
  }
  #[doc = "Checks if the value of the field is `WUPDC21_1`"]
  #[inline(always)]
  pub fn is_wupdc21_1(&self) -> bool {
    *self == WUPDC21_A::WUPDC21_1
  }
  #[doc = "Checks if the value of the field is `WUPDC21_2`"]
  #[inline(always)]
  pub fn is_wupdc21_2(&self) -> bool {
    *self == WUPDC21_A::WUPDC21_2
  }
}
#[doc = "Write proxy for field `WUPDC21`"]
pub struct WUPDC21_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC21_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC21_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc21_0(self) -> &'a mut W {
    self.variant(WUPDC21_A::WUPDC21_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc21_1(self) -> &'a mut W {
    self.variant(WUPDC21_A::WUPDC21_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc21_2(self) -> &'a mut W {
    self.variant(WUPDC21_A::WUPDC21_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 10)) | (((value as u32) & 0x03) << 10);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC22_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC22_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC22_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC22_2,
}
impl From<WUPDC22_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC22_A) -> Self {
    match variant {
      WUPDC22_A::WUPDC22_0 => 0,
      WUPDC22_A::WUPDC22_1 => 1,
      WUPDC22_A::WUPDC22_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC22`"]
pub type WUPDC22_R = crate::R<u8, WUPDC22_A>;
impl WUPDC22_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC22_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC22_A::WUPDC22_0),
      1 => Val(WUPDC22_A::WUPDC22_1),
      2 => Val(WUPDC22_A::WUPDC22_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC22_0`"]
  #[inline(always)]
  pub fn is_wupdc22_0(&self) -> bool {
    *self == WUPDC22_A::WUPDC22_0
  }
  #[doc = "Checks if the value of the field is `WUPDC22_1`"]
  #[inline(always)]
  pub fn is_wupdc22_1(&self) -> bool {
    *self == WUPDC22_A::WUPDC22_1
  }
  #[doc = "Checks if the value of the field is `WUPDC22_2`"]
  #[inline(always)]
  pub fn is_wupdc22_2(&self) -> bool {
    *self == WUPDC22_A::WUPDC22_2
  }
}
#[doc = "Write proxy for field `WUPDC22`"]
pub struct WUPDC22_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC22_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC22_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc22_0(self) -> &'a mut W {
    self.variant(WUPDC22_A::WUPDC22_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc22_1(self) -> &'a mut W {
    self.variant(WUPDC22_A::WUPDC22_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc22_2(self) -> &'a mut W {
    self.variant(WUPDC22_A::WUPDC22_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 12)) | (((value as u32) & 0x03) << 12);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC23_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC23_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC23_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC23_2,
}
impl From<WUPDC23_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC23_A) -> Self {
    match variant {
      WUPDC23_A::WUPDC23_0 => 0,
      WUPDC23_A::WUPDC23_1 => 1,
      WUPDC23_A::WUPDC23_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC23`"]
pub type WUPDC23_R = crate::R<u8, WUPDC23_A>;
impl WUPDC23_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC23_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC23_A::WUPDC23_0),
      1 => Val(WUPDC23_A::WUPDC23_1),
      2 => Val(WUPDC23_A::WUPDC23_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC23_0`"]
  #[inline(always)]
  pub fn is_wupdc23_0(&self) -> bool {
    *self == WUPDC23_A::WUPDC23_0
  }
  #[doc = "Checks if the value of the field is `WUPDC23_1`"]
  #[inline(always)]
  pub fn is_wupdc23_1(&self) -> bool {
    *self == WUPDC23_A::WUPDC23_1
  }
  #[doc = "Checks if the value of the field is `WUPDC23_2`"]
  #[inline(always)]
  pub fn is_wupdc23_2(&self) -> bool {
    *self == WUPDC23_A::WUPDC23_2
  }
}
#[doc = "Write proxy for field `WUPDC23`"]
pub struct WUPDC23_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC23_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC23_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc23_0(self) -> &'a mut W {
    self.variant(WUPDC23_A::WUPDC23_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc23_1(self) -> &'a mut W {
    self.variant(WUPDC23_A::WUPDC23_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc23_2(self) -> &'a mut W {
    self.variant(WUPDC23_A::WUPDC23_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 14)) | (((value as u32) & 0x03) << 14);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC24_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC24_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC24_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC24_2,
}
impl From<WUPDC24_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC24_A) -> Self {
    match variant {
      WUPDC24_A::WUPDC24_0 => 0,
      WUPDC24_A::WUPDC24_1 => 1,
      WUPDC24_A::WUPDC24_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC24`"]
pub type WUPDC24_R = crate::R<u8, WUPDC24_A>;
impl WUPDC24_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC24_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC24_A::WUPDC24_0),
      1 => Val(WUPDC24_A::WUPDC24_1),
      2 => Val(WUPDC24_A::WUPDC24_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC24_0`"]
  #[inline(always)]
  pub fn is_wupdc24_0(&self) -> bool {
    *self == WUPDC24_A::WUPDC24_0
  }
  #[doc = "Checks if the value of the field is `WUPDC24_1`"]
  #[inline(always)]
  pub fn is_wupdc24_1(&self) -> bool {
    *self == WUPDC24_A::WUPDC24_1
  }
  #[doc = "Checks if the value of the field is `WUPDC24_2`"]
  #[inline(always)]
  pub fn is_wupdc24_2(&self) -> bool {
    *self == WUPDC24_A::WUPDC24_2
  }
}
#[doc = "Write proxy for field `WUPDC24`"]
pub struct WUPDC24_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC24_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC24_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc24_0(self) -> &'a mut W {
    self.variant(WUPDC24_A::WUPDC24_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc24_1(self) -> &'a mut W {
    self.variant(WUPDC24_A::WUPDC24_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc24_2(self) -> &'a mut W {
    self.variant(WUPDC24_A::WUPDC24_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 16)) | (((value as u32) & 0x03) << 16);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC25_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC25_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC25_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC25_2,
}
impl From<WUPDC25_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC25_A) -> Self {
    match variant {
      WUPDC25_A::WUPDC25_0 => 0,
      WUPDC25_A::WUPDC25_1 => 1,
      WUPDC25_A::WUPDC25_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC25`"]
pub type WUPDC25_R = crate::R<u8, WUPDC25_A>;
impl WUPDC25_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC25_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC25_A::WUPDC25_0),
      1 => Val(WUPDC25_A::WUPDC25_1),
      2 => Val(WUPDC25_A::WUPDC25_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC25_0`"]
  #[inline(always)]
  pub fn is_wupdc25_0(&self) -> bool {
    *self == WUPDC25_A::WUPDC25_0
  }
  #[doc = "Checks if the value of the field is `WUPDC25_1`"]
  #[inline(always)]
  pub fn is_wupdc25_1(&self) -> bool {
    *self == WUPDC25_A::WUPDC25_1
  }
  #[doc = "Checks if the value of the field is `WUPDC25_2`"]
  #[inline(always)]
  pub fn is_wupdc25_2(&self) -> bool {
    *self == WUPDC25_A::WUPDC25_2
  }
}
#[doc = "Write proxy for field `WUPDC25`"]
pub struct WUPDC25_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC25_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC25_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc25_0(self) -> &'a mut W {
    self.variant(WUPDC25_A::WUPDC25_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc25_1(self) -> &'a mut W {
    self.variant(WUPDC25_A::WUPDC25_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc25_2(self) -> &'a mut W {
    self.variant(WUPDC25_A::WUPDC25_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 18)) | (((value as u32) & 0x03) << 18);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC26_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC26_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC26_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC26_2,
}
impl From<WUPDC26_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC26_A) -> Self {
    match variant {
      WUPDC26_A::WUPDC26_0 => 0,
      WUPDC26_A::WUPDC26_1 => 1,
      WUPDC26_A::WUPDC26_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC26`"]
pub type WUPDC26_R = crate::R<u8, WUPDC26_A>;
impl WUPDC26_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC26_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC26_A::WUPDC26_0),
      1 => Val(WUPDC26_A::WUPDC26_1),
      2 => Val(WUPDC26_A::WUPDC26_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC26_0`"]
  #[inline(always)]
  pub fn is_wupdc26_0(&self) -> bool {
    *self == WUPDC26_A::WUPDC26_0
  }
  #[doc = "Checks if the value of the field is `WUPDC26_1`"]
  #[inline(always)]
  pub fn is_wupdc26_1(&self) -> bool {
    *self == WUPDC26_A::WUPDC26_1
  }
  #[doc = "Checks if the value of the field is `WUPDC26_2`"]
  #[inline(always)]
  pub fn is_wupdc26_2(&self) -> bool {
    *self == WUPDC26_A::WUPDC26_2
  }
}
#[doc = "Write proxy for field `WUPDC26`"]
pub struct WUPDC26_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC26_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC26_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc26_0(self) -> &'a mut W {
    self.variant(WUPDC26_A::WUPDC26_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc26_1(self) -> &'a mut W {
    self.variant(WUPDC26_A::WUPDC26_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc26_2(self) -> &'a mut W {
    self.variant(WUPDC26_A::WUPDC26_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 20)) | (((value as u32) & 0x03) << 20);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RESERVED27_A {
  #[doc = "0: External input pin configured as interrupt"]
  RESERVED27_0,
  #[doc = "1: External input pin configured as DMA request"]
  RESERVED27_1,
  #[doc = "2: External input pin configured as trigger event"]
  RESERVED27_2,
}
impl From<RESERVED27_A> for u8 {
  #[inline(always)]
  fn from(variant: RESERVED27_A) -> Self {
    match variant {
      RESERVED27_A::RESERVED27_0 => 0,
      RESERVED27_A::RESERVED27_1 => 1,
      RESERVED27_A::RESERVED27_2 => 2,
    }
  }
}
#[doc = "Reader of field `Reserved27`"]
pub type RESERVED27_R = crate::R<u8, RESERVED27_A>;
impl RESERVED27_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, RESERVED27_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(RESERVED27_A::RESERVED27_0),
      1 => Val(RESERVED27_A::RESERVED27_1),
      2 => Val(RESERVED27_A::RESERVED27_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `RESERVED27_0`"]
  #[inline(always)]
  pub fn is_reserved27_0(&self) -> bool {
    *self == RESERVED27_A::RESERVED27_0
  }
  #[doc = "Checks if the value of the field is `RESERVED27_1`"]
  #[inline(always)]
  pub fn is_reserved27_1(&self) -> bool {
    *self == RESERVED27_A::RESERVED27_1
  }
  #[doc = "Checks if the value of the field is `RESERVED27_2`"]
  #[inline(always)]
  pub fn is_reserved27_2(&self) -> bool {
    *self == RESERVED27_A::RESERVED27_2
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RESERVED28_A {
  #[doc = "0: External input pin configured as interrupt"]
  RESERVED28_0,
  #[doc = "1: External input pin configured as DMA request"]
  RESERVED28_1,
  #[doc = "2: External input pin configured as trigger event"]
  RESERVED28_2,
}
impl From<RESERVED28_A> for u8 {
  #[inline(always)]
  fn from(variant: RESERVED28_A) -> Self {
    match variant {
      RESERVED28_A::RESERVED28_0 => 0,
      RESERVED28_A::RESERVED28_1 => 1,
      RESERVED28_A::RESERVED28_2 => 2,
    }
  }
}
#[doc = "Reader of field `Reserved28`"]
pub type RESERVED28_R = crate::R<u8, RESERVED28_A>;
impl RESERVED28_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, RESERVED28_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(RESERVED28_A::RESERVED28_0),
      1 => Val(RESERVED28_A::RESERVED28_1),
      2 => Val(RESERVED28_A::RESERVED28_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `RESERVED28_0`"]
  #[inline(always)]
  pub fn is_reserved28_0(&self) -> bool {
    *self == RESERVED28_A::RESERVED28_0
  }
  #[doc = "Checks if the value of the field is `RESERVED28_1`"]
  #[inline(always)]
  pub fn is_reserved28_1(&self) -> bool {
    *self == RESERVED28_A::RESERVED28_1
  }
  #[doc = "Checks if the value of the field is `RESERVED28_2`"]
  #[inline(always)]
  pub fn is_reserved28_2(&self) -> bool {
    *self == RESERVED28_A::RESERVED28_2
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC29_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC29_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC29_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC29_2,
}
impl From<WUPDC29_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC29_A) -> Self {
    match variant {
      WUPDC29_A::WUPDC29_0 => 0,
      WUPDC29_A::WUPDC29_1 => 1,
      WUPDC29_A::WUPDC29_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC29`"]
pub type WUPDC29_R = crate::R<u8, WUPDC29_A>;
impl WUPDC29_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC29_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC29_A::WUPDC29_0),
      1 => Val(WUPDC29_A::WUPDC29_1),
      2 => Val(WUPDC29_A::WUPDC29_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC29_0`"]
  #[inline(always)]
  pub fn is_wupdc29_0(&self) -> bool {
    *self == WUPDC29_A::WUPDC29_0
  }
  #[doc = "Checks if the value of the field is `WUPDC29_1`"]
  #[inline(always)]
  pub fn is_wupdc29_1(&self) -> bool {
    *self == WUPDC29_A::WUPDC29_1
  }
  #[doc = "Checks if the value of the field is `WUPDC29_2`"]
  #[inline(always)]
  pub fn is_wupdc29_2(&self) -> bool {
    *self == WUPDC29_A::WUPDC29_2
  }
}
#[doc = "Write proxy for field `WUPDC29`"]
pub struct WUPDC29_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC29_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC29_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc29_0(self) -> &'a mut W {
    self.variant(WUPDC29_A::WUPDC29_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc29_1(self) -> &'a mut W {
    self.variant(WUPDC29_A::WUPDC29_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc29_2(self) -> &'a mut W {
    self.variant(WUPDC29_A::WUPDC29_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 26)) | (((value as u32) & 0x03) << 26);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC30_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC30_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC30_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC30_2,
}
impl From<WUPDC30_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC30_A) -> Self {
    match variant {
      WUPDC30_A::WUPDC30_0 => 0,
      WUPDC30_A::WUPDC30_1 => 1,
      WUPDC30_A::WUPDC30_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC30`"]
pub type WUPDC30_R = crate::R<u8, WUPDC30_A>;
impl WUPDC30_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC30_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC30_A::WUPDC30_0),
      1 => Val(WUPDC30_A::WUPDC30_1),
      2 => Val(WUPDC30_A::WUPDC30_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC30_0`"]
  #[inline(always)]
  pub fn is_wupdc30_0(&self) -> bool {
    *self == WUPDC30_A::WUPDC30_0
  }
  #[doc = "Checks if the value of the field is `WUPDC30_1`"]
  #[inline(always)]
  pub fn is_wupdc30_1(&self) -> bool {
    *self == WUPDC30_A::WUPDC30_1
  }
  #[doc = "Checks if the value of the field is `WUPDC30_2`"]
  #[inline(always)]
  pub fn is_wupdc30_2(&self) -> bool {
    *self == WUPDC30_A::WUPDC30_2
  }
}
#[doc = "Write proxy for field `WUPDC30`"]
pub struct WUPDC30_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC30_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC30_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc30_0(self) -> &'a mut W {
    self.variant(WUPDC30_A::WUPDC30_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc30_1(self) -> &'a mut W {
    self.variant(WUPDC30_A::WUPDC30_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc30_2(self) -> &'a mut W {
    self.variant(WUPDC30_A::WUPDC30_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 28)) | (((value as u32) & 0x03) << 28);
    self.w
  }
}
#[doc = "Wakeup pin configuration for LLWU_Pn\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WUPDC31_A {
  #[doc = "0: External input pin configured as interrupt"]
  WUPDC31_0,
  #[doc = "1: External input pin configured as DMA request"]
  WUPDC31_1,
  #[doc = "2: External input pin configured as trigger event"]
  WUPDC31_2,
}
impl From<WUPDC31_A> for u8 {
  #[inline(always)]
  fn from(variant: WUPDC31_A) -> Self {
    match variant {
      WUPDC31_A::WUPDC31_0 => 0,
      WUPDC31_A::WUPDC31_1 => 1,
      WUPDC31_A::WUPDC31_2 => 2,
    }
  }
}
#[doc = "Reader of field `WUPDC31`"]
pub type WUPDC31_R = crate::R<u8, WUPDC31_A>;
impl WUPDC31_R {
  #[doc = r"Get enumerated values variant"]
  #[inline(always)]
  pub fn variant(&self) -> crate::Variant<u8, WUPDC31_A> {
    use crate::Variant::*;
    match self.bits {
      0 => Val(WUPDC31_A::WUPDC31_0),
      1 => Val(WUPDC31_A::WUPDC31_1),
      2 => Val(WUPDC31_A::WUPDC31_2),
      i => Res(i),
    }
  }
  #[doc = "Checks if the value of the field is `WUPDC31_0`"]
  #[inline(always)]
  pub fn is_wupdc31_0(&self) -> bool {
    *self == WUPDC31_A::WUPDC31_0
  }
  #[doc = "Checks if the value of the field is `WUPDC31_1`"]
  #[inline(always)]
  pub fn is_wupdc31_1(&self) -> bool {
    *self == WUPDC31_A::WUPDC31_1
  }
  #[doc = "Checks if the value of the field is `WUPDC31_2`"]
  #[inline(always)]
  pub fn is_wupdc31_2(&self) -> bool {
    *self == WUPDC31_A::WUPDC31_2
  }
}
#[doc = "Write proxy for field `WUPDC31`"]
pub struct WUPDC31_W<'a> {
  w: &'a mut W,
}
impl<'a> WUPDC31_W<'a> {
  #[doc = r"Writes `variant` to the field"]
  #[inline(always)]
  pub fn variant(self, variant: WUPDC31_A) -> &'a mut W {
    unsafe { self.bits(variant.into()) }
  }
  #[doc = "External input pin configured as interrupt"]
  #[inline(always)]
  pub fn wupdc31_0(self) -> &'a mut W {
    self.variant(WUPDC31_A::WUPDC31_0)
  }
  #[doc = "External input pin configured as DMA request"]
  #[inline(always)]
  pub fn wupdc31_1(self) -> &'a mut W {
    self.variant(WUPDC31_A::WUPDC31_1)
  }
  #[doc = "External input pin configured as trigger event"]
  #[inline(always)]
  pub fn wupdc31_2(self) -> &'a mut W {
    self.variant(WUPDC31_A::WUPDC31_2)
  }
  #[doc = r"Writes raw bits to the field"]
  #[inline(always)]
  pub unsafe fn bits(self, value: u8) -> &'a mut W {
    self.w.bits = (self.w.bits & !(0x03 << 30)) | (((value as u32) & 0x03) << 30);
    self.w
  }
}
impl R {
  #[doc = "Bits 0:1 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc16(&self) -> WUPDC16_R {
    WUPDC16_R::new((self.bits & 0x03) as u8)
  }
  #[doc = "Bits 2:3 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc17(&self) -> WUPDC17_R {
    WUPDC17_R::new(((self.bits >> 2) & 0x03) as u8)
  }
  #[doc = "Bits 4:5 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc18(&self) -> WUPDC18_R {
    WUPDC18_R::new(((self.bits >> 4) & 0x03) as u8)
  }
  #[doc = "Bits 6:7 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc19(&self) -> WUPDC19_R {
    WUPDC19_R::new(((self.bits >> 6) & 0x03) as u8)
  }
  #[doc = "Bits 8:9 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc20(&self) -> WUPDC20_R {
    WUPDC20_R::new(((self.bits >> 8) & 0x03) as u8)
  }
  #[doc = "Bits 10:11 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc21(&self) -> WUPDC21_R {
    WUPDC21_R::new(((self.bits >> 10) & 0x03) as u8)
  }
  #[doc = "Bits 12:13 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc22(&self) -> WUPDC22_R {
    WUPDC22_R::new(((self.bits >> 12) & 0x03) as u8)
  }
  #[doc = "Bits 14:15 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc23(&self) -> WUPDC23_R {
    WUPDC23_R::new(((self.bits >> 14) & 0x03) as u8)
  }
  #[doc = "Bits 16:17 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc24(&self) -> WUPDC24_R {
    WUPDC24_R::new(((self.bits >> 16) & 0x03) as u8)
  }
  #[doc = "Bits 18:19 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc25(&self) -> WUPDC25_R {
    WUPDC25_R::new(((self.bits >> 18) & 0x03) as u8)
  }
  #[doc = "Bits 20:21 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc26(&self) -> WUPDC26_R {
    WUPDC26_R::new(((self.bits >> 20) & 0x03) as u8)
  }
  #[doc = "Bits 22:23 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn reserved27(&self) -> RESERVED27_R {
    RESERVED27_R::new(((self.bits >> 22) & 0x03) as u8)
  }
  #[doc = "Bits 24:25 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn reserved28(&self) -> RESERVED28_R {
    RESERVED28_R::new(((self.bits >> 24) & 0x03) as u8)
  }
  #[doc = "Bits 26:27 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc29(&self) -> WUPDC29_R {
    WUPDC29_R::new(((self.bits >> 26) & 0x03) as u8)
  }
  #[doc = "Bits 28:29 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc30(&self) -> WUPDC30_R {
    WUPDC30_R::new(((self.bits >> 28) & 0x03) as u8)
  }
  #[doc = "Bits 30:31 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc31(&self) -> WUPDC31_R {
    WUPDC31_R::new(((self.bits >> 30) & 0x03) as u8)
  }
}
impl W {
  #[doc = "Bits 0:1 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc16(&mut self) -> WUPDC16_W {
    WUPDC16_W { w: self }
  }
  #[doc = "Bits 2:3 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc17(&mut self) -> WUPDC17_W {
    WUPDC17_W { w: self }
  }
  #[doc = "Bits 4:5 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc18(&mut self) -> WUPDC18_W {
    WUPDC18_W { w: self }
  }
  #[doc = "Bits 6:7 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc19(&mut self) -> WUPDC19_W {
    WUPDC19_W { w: self }
  }
  #[doc = "Bits 8:9 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc20(&mut self) -> WUPDC20_W {
    WUPDC20_W { w: self }
  }
  #[doc = "Bits 10:11 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc21(&mut self) -> WUPDC21_W {
    WUPDC21_W { w: self }
  }
  #[doc = "Bits 12:13 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc22(&mut self) -> WUPDC22_W {
    WUPDC22_W { w: self }
  }
  #[doc = "Bits 14:15 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc23(&mut self) -> WUPDC23_W {
    WUPDC23_W { w: self }
  }
  #[doc = "Bits 16:17 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc24(&mut self) -> WUPDC24_W {
    WUPDC24_W { w: self }
  }
  #[doc = "Bits 18:19 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc25(&mut self) -> WUPDC25_W {
    WUPDC25_W { w: self }
  }
  #[doc = "Bits 20:21 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc26(&mut self) -> WUPDC26_W {
    WUPDC26_W { w: self }
  }
  #[doc = "Bits 26:27 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc29(&mut self) -> WUPDC29_W {
    WUPDC29_W { w: self }
  }
  #[doc = "Bits 28:29 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc30(&mut self) -> WUPDC30_W {
    WUPDC30_W { w: self }
  }
  #[doc = "Bits 30:31 - Wakeup pin configuration for LLWU_Pn"]
  #[inline(always)]
  pub fn wupdc31(&mut self) -> WUPDC31_W {
    WUPDC31_W { w: self }
  }
}