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
#![doc = "Peripheral access API for NUC1XX_REGISTERS microcontrollers (generated using svd2rust v0.17.0)\n\nYou can find an overview of the API [here].\n\n[here]: https://docs.rs/svd2rust/0.17.0/svd2rust/#peripheral-api"]
#![deny(const_err)]
#![deny(dead_code)]
#![deny(improper_ctypes)]
#![deny(missing_docs)]
#![deny(no_mangle_generic_items)]
#![deny(non_shorthand_field_patterns)]
#![deny(overflowing_literals)]
#![deny(path_statements)]
#![deny(patterns_in_fns_without_body)]
#![deny(private_in_public)]
#![deny(unconditional_recursion)]
#![deny(unused_allocation)]
#![deny(unused_comparisons)]
#![deny(unused_parens)]
#![deny(while_true)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
extern crate bare_metal;
extern crate cortex_m;
#[cfg(feature = "rt")]
extern crate cortex_m_rt;
extern crate vcell;
use core::marker::PhantomData;
use core::ops::Deref;
#[cfg(feature = "rt")]
extern "C" {
    fn BOD_OUT();
    fn WDT_INT();
    fn EINT0();
    fn EINT1();
    fn GPAB_INT();
    fn GPCDE_INT();
    fn PWMA_INT();
    fn PWMB_INT();
    fn TMR0_INT();
    fn TMR1_INT();
    fn TMR2_INT();
    fn TMR3_INT();
    fn UART02_INT();
    fn UART1_INT();
    fn SPI0_INT();
    fn SPI1_INT();
    fn SPI2_INT();
    fn SPI3_INT();
    fn I2C0_INT();
    fn I2C1_INT();
    fn CAN0_INT();
    fn USB_INT();
    fn PS2_INT();
    fn ACMP_INT();
    fn PDMA_INT();
    fn I2S_INT();
    fn PWRWU_INT();
    fn ADC_INT();
    fn RTC_INT();
}
#[doc(hidden)]
pub union Vector {
    _handler: unsafe extern "C" fn(),
    _reserved: u32,
}
#[cfg(feature = "rt")]
#[doc(hidden)]
#[link_section = ".vector_table.interrupts"]
#[no_mangle]
pub static __INTERRUPTS: [Vector; 32] = [
    Vector { _handler: BOD_OUT },
    Vector { _handler: WDT_INT },
    Vector { _handler: EINT0 },
    Vector { _handler: EINT1 },
    Vector { _handler: GPAB_INT },
    Vector {
        _handler: GPCDE_INT,
    },
    Vector { _handler: PWMA_INT },
    Vector { _handler: PWMB_INT },
    Vector { _handler: TMR0_INT },
    Vector { _handler: TMR1_INT },
    Vector { _handler: TMR2_INT },
    Vector { _handler: TMR3_INT },
    Vector {
        _handler: UART02_INT,
    },
    Vector {
        _handler: UART1_INT,
    },
    Vector { _handler: SPI0_INT },
    Vector { _handler: SPI1_INT },
    Vector { _handler: SPI2_INT },
    Vector { _handler: SPI3_INT },
    Vector { _handler: I2C0_INT },
    Vector { _handler: I2C1_INT },
    Vector { _handler: CAN0_INT },
    Vector { _reserved: 0 },
    Vector { _reserved: 0 },
    Vector { _handler: USB_INT },
    Vector { _handler: PS2_INT },
    Vector { _handler: ACMP_INT },
    Vector { _handler: PDMA_INT },
    Vector { _handler: I2S_INT },
    Vector {
        _handler: PWRWU_INT,
    },
    Vector { _handler: ADC_INT },
    Vector { _reserved: 0 },
    Vector { _handler: RTC_INT },
];
#[doc = r"Enumeration of all the interrupts"]
#[derive(Copy, Clone, Debug)]
#[repr(u8)]
pub enum Interrupt {
    #[doc = "0 - BOD_OUT"]
    BOD_OUT = 0,
    #[doc = "1 - WDT_INT"]
    WDT_INT = 1,
    #[doc = "2 - EINT0"]
    EINT0 = 2,
    #[doc = "3 - EINT1"]
    EINT1 = 3,
    #[doc = "4 - GPAB_INT"]
    GPAB_INT = 4,
    #[doc = "5 - GPCDE_INT"]
    GPCDE_INT = 5,
    #[doc = "6 - PWMA_INT"]
    PWMA_INT = 6,
    #[doc = "7 - PWMB_INT"]
    PWMB_INT = 7,
    #[doc = "8 - TMR0_INT"]
    TMR0_INT = 8,
    #[doc = "9 - TMR1_INT"]
    TMR1_INT = 9,
    #[doc = "10 - TMR2_INT"]
    TMR2_INT = 10,
    #[doc = "11 - TMR3_INT"]
    TMR3_INT = 11,
    #[doc = "12 - UART02_INT"]
    UART02_INT = 12,
    #[doc = "13 - UART1_INT"]
    UART1_INT = 13,
    #[doc = "14 - SPI0_INT"]
    SPI0_INT = 14,
    #[doc = "15 - SPI1_INT"]
    SPI1_INT = 15,
    #[doc = "16 - SPI2_INT"]
    SPI2_INT = 16,
    #[doc = "17 - SPI3_INT"]
    SPI3_INT = 17,
    #[doc = "18 - I2C0_INT"]
    I2C0_INT = 18,
    #[doc = "19 - I2C1_INT"]
    I2C1_INT = 19,
    #[doc = "20 - CAN0_INT"]
    CAN0_INT = 20,
    #[doc = "23 - USB_INT"]
    USB_INT = 23,
    #[doc = "24 - PS2_INT"]
    PS2_INT = 24,
    #[doc = "25 - ACMP_INT"]
    ACMP_INT = 25,
    #[doc = "26 - PDMA_INT"]
    PDMA_INT = 26,
    #[doc = "27 - I2S_INT"]
    I2S_INT = 27,
    #[doc = "28 - PWRWU_INT"]
    PWRWU_INT = 28,
    #[doc = "29 - ADC_INT"]
    ADC_INT = 29,
    #[doc = "31 - RTC_INT"]
    RTC_INT = 31,
}
unsafe impl bare_metal::Nr for Interrupt {
    #[inline(always)]
    fn nr(&self) -> u8 {
        *self as u8
    }
}
#[cfg(feature = "rt")]
pub use self::Interrupt as interrupt;
pub use cortex_m::peripheral::Peripherals as CorePeripherals;
pub use cortex_m::peripheral::{CBP, CPUID, DCB, DWT, FPB, FPU, ITM, MPU, NVIC, SCB, SYST, TPIU};
#[cfg(feature = "rt")]
pub use cortex_m_rt::interrupt;
#[allow(unused_imports)]
use generic::*;
#[doc = r"Common register and bit access and modify traits"]
pub mod generic;
#[doc = "Registers group"]
pub struct PWMA {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWMA {}
impl PWMA {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwma::RegisterBlock {
        0x4004_0000 as *const _
    }
}
impl Deref for PWMA {
    type Target = pwma::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWMA::ptr() }
    }
}
#[doc = "Registers group"]
pub mod pwma;
#[doc = "Registers group"]
pub struct PWMB {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWMB {}
impl PWMB {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwma::RegisterBlock {
        0x4014_0000 as *const _
    }
}
impl Deref for PWMB {
    type Target = pwma::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWMB::ptr() }
    }
}
#[doc = "Registers group"]
pub struct ADC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ADC {}
impl ADC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const adc::RegisterBlock {
        0x400e_0000 as *const _
    }
}
impl Deref for ADC {
    type Target = adc::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*ADC::ptr() }
    }
}
#[doc = "Registers group"]
pub mod adc;
#[doc = "Registers group"]
pub struct CAN {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CAN {}
impl CAN {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const can::RegisterBlock {
        0x4018_0000 as *const _
    }
}
impl Deref for CAN {
    type Target = can::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*CAN::ptr() }
    }
}
#[doc = "Registers group"]
pub mod can;
#[doc = "Registers group"]
pub struct CLK {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CLK {}
impl CLK {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const clk::RegisterBlock {
        0x5000_0200 as *const _
    }
}
impl Deref for CLK {
    type Target = clk::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*CLK::ptr() }
    }
}
#[doc = "Registers group"]
pub mod clk;
#[doc = "Registers group"]
pub struct CMP {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CMP {}
impl CMP {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const cmp::RegisterBlock {
        0x400d_0000 as *const _
    }
}
impl Deref for CMP {
    type Target = cmp::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*CMP::ptr() }
    }
}
#[doc = "Registers group"]
pub mod cmp;
#[doc = "Registers group"]
pub struct EBI {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for EBI {}
impl EBI {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ebi::RegisterBlock {
        0x5001_0000 as *const _
    }
}
impl Deref for EBI {
    type Target = ebi::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*EBI::ptr() }
    }
}
#[doc = "Registers group"]
pub mod ebi;
#[doc = "Registers group"]
pub struct FMC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FMC {}
impl FMC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const fmc::RegisterBlock {
        0x5000_c000 as *const _
    }
}
impl Deref for FMC {
    type Target = fmc::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*FMC::ptr() }
    }
}
#[doc = "Registers group"]
pub mod fmc;
#[doc = "Registers group"]
pub struct GCR {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GCR {}
impl GCR {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gcr::RegisterBlock {
        0x5000_0000 as *const _
    }
}
impl Deref for GCR {
    type Target = gcr::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GCR::ptr() }
    }
}
#[doc = "Registers group"]
pub mod gcr;
#[doc = "Registers group"]
pub struct GPA {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPA {}
impl GPA {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa::RegisterBlock {
        0x5000_4000 as *const _
    }
}
impl Deref for GPA {
    type Target = gpa::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPA::ptr() }
    }
}
#[doc = "Registers group"]
pub mod gpa;
#[doc = "Registers group"]
pub struct GPB {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPB {}
impl GPB {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa::RegisterBlock {
        0x5000_4040 as *const _
    }
}
impl Deref for GPB {
    type Target = gpa::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPB::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPC {}
impl GPC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa::RegisterBlock {
        0x5000_4080 as *const _
    }
}
impl Deref for GPC {
    type Target = gpa::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPC::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPD {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPD {}
impl GPD {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa::RegisterBlock {
        0x5000_40c0 as *const _
    }
}
impl Deref for GPD {
    type Target = gpa::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPD::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPE {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPE {}
impl GPE {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa::RegisterBlock {
        0x5000_4100 as *const _
    }
}
impl Deref for GPE {
    type Target = gpa::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPE::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPIO {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO {}
impl GPIO {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio::RegisterBlock {
        0x5000_4180 as *const _
    }
}
impl Deref for GPIO {
    type Target = gpio::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO::ptr() }
    }
}
#[doc = "Registers group"]
pub mod gpio;
#[doc = "Registers group"]
pub struct GPA_BITS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPA_BITS {}
impl GPA_BITS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa_bits::RegisterBlock {
        0x5000_4200 as *const _
    }
}
impl Deref for GPA_BITS {
    type Target = gpa_bits::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPA_BITS::ptr() }
    }
}
#[doc = "Registers group"]
pub mod gpa_bits;
#[doc = "Registers group"]
pub struct GPB_BITS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPB_BITS {}
impl GPB_BITS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa_bits::RegisterBlock {
        0x5000_4240 as *const _
    }
}
impl Deref for GPB_BITS {
    type Target = gpa_bits::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPB_BITS::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPC_BITS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPC_BITS {}
impl GPC_BITS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa_bits::RegisterBlock {
        0x5000_4280 as *const _
    }
}
impl Deref for GPC_BITS {
    type Target = gpa_bits::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPC_BITS::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPD_BITS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPD_BITS {}
impl GPD_BITS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa_bits::RegisterBlock {
        0x5000_42c0 as *const _
    }
}
impl Deref for GPD_BITS {
    type Target = gpa_bits::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPD_BITS::ptr() }
    }
}
#[doc = "Registers group"]
pub struct GPE_BITS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPE_BITS {}
impl GPE_BITS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpa_bits::RegisterBlock {
        0x5000_4300 as *const _
    }
}
impl Deref for GPE_BITS {
    type Target = gpa_bits::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPE_BITS::ptr() }
    }
}
#[doc = "Registers group"]
pub struct I2C0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for I2C0 {}
impl I2C0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const i2c0::RegisterBlock {
        0x4002_0000 as *const _
    }
}
impl Deref for I2C0 {
    type Target = i2c0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*I2C0::ptr() }
    }
}
#[doc = "Registers group"]
pub mod i2c0;
#[doc = "Registers group"]
pub struct I2C1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for I2C1 {}
impl I2C1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const i2c0::RegisterBlock {
        0x4012_0000 as *const _
    }
}
impl Deref for I2C1 {
    type Target = i2c0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*I2C1::ptr() }
    }
}
#[doc = "Registers group"]
pub struct I2S {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for I2S {}
impl I2S {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const i2s::RegisterBlock {
        0x401a_0000 as *const _
    }
}
impl Deref for I2S {
    type Target = i2s::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*I2S::ptr() }
    }
}
#[doc = "Registers group"]
pub mod i2s;
#[doc = "Registers group"]
pub struct INT {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for INT {}
impl INT {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const int::RegisterBlock {
        0x5000_0300 as *const _
    }
}
impl Deref for INT {
    type Target = int::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*INT::ptr() }
    }
}
#[doc = "Registers group"]
pub mod int;
#[doc = "Registers group"]
pub struct PDMA0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA0 {}
impl PDMA0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8000 as *const _
    }
}
impl Deref for PDMA0 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA0::ptr() }
    }
}
#[doc = "Registers group"]
pub mod pdma0;
#[doc = "Registers group"]
pub struct PDMA1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA1 {}
impl PDMA1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8100 as *const _
    }
}
impl Deref for PDMA1 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA1::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA2 {}
impl PDMA2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8200 as *const _
    }
}
impl Deref for PDMA2 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA2::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA3 {}
impl PDMA3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8300 as *const _
    }
}
impl Deref for PDMA3 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA3::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA4 {}
impl PDMA4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8400 as *const _
    }
}
impl Deref for PDMA4 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA4::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA5 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA5 {}
impl PDMA5 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8500 as *const _
    }
}
impl Deref for PDMA5 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA5::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA6 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA6 {}
impl PDMA6 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8600 as *const _
    }
}
impl Deref for PDMA6 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA6::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA7 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA7 {}
impl PDMA7 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8700 as *const _
    }
}
impl Deref for PDMA7 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA7::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA8 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA8 {}
impl PDMA8 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma0::RegisterBlock {
        0x5000_8800 as *const _
    }
}
impl Deref for PDMA8 {
    type Target = pdma0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA8::ptr() }
    }
}
#[doc = "Registers group"]
pub struct PDMA_GCR {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PDMA_GCR {}
impl PDMA_GCR {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pdma_gcr::RegisterBlock {
        0x5000_8f00 as *const _
    }
}
impl Deref for PDMA_GCR {
    type Target = pdma_gcr::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PDMA_GCR::ptr() }
    }
}
#[doc = "Registers group"]
pub mod pdma_gcr;
#[doc = "Registers group"]
pub struct PS2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PS2 {}
impl PS2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ps2::RegisterBlock {
        0x4010_0000 as *const _
    }
}
impl Deref for PS2 {
    type Target = ps2::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*PS2::ptr() }
    }
}
#[doc = "Registers group"]
pub mod ps2;
#[doc = "Registers group"]
pub struct RTC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for RTC {}
impl RTC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const rtc::RegisterBlock {
        0x4000_8000 as *const _
    }
}
impl Deref for RTC {
    type Target = rtc::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*RTC::ptr() }
    }
}
#[doc = "Registers group"]
pub mod rtc;
#[doc = "Registers group"]
pub struct SCS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SCS {}
impl SCS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const scs::RegisterBlock {
        0xe000_e000 as *const _
    }
}
impl Deref for SCS {
    type Target = scs::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*SCS::ptr() }
    }
}
#[doc = "Registers group"]
pub mod scs;
#[doc = "Registers group"]
pub struct SPI0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SPI0 {}
impl SPI0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const spi0::RegisterBlock {
        0x4003_0000 as *const _
    }
}
impl Deref for SPI0 {
    type Target = spi0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*SPI0::ptr() }
    }
}
#[doc = "Registers group"]
pub mod spi0;
#[doc = "Registers group"]
pub struct SPI1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SPI1 {}
impl SPI1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const spi0::RegisterBlock {
        0x4003_4000 as *const _
    }
}
impl Deref for SPI1 {
    type Target = spi0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*SPI1::ptr() }
    }
}
#[doc = "Registers group"]
pub struct SPI2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SPI2 {}
impl SPI2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const spi0::RegisterBlock {
        0x4013_0000 as *const _
    }
}
impl Deref for SPI2 {
    type Target = spi0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*SPI2::ptr() }
    }
}
#[doc = "Registers group"]
pub struct SPI3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SPI3 {}
impl SPI3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const spi0::RegisterBlock {
        0x4013_4000 as *const _
    }
}
impl Deref for SPI3 {
    type Target = spi0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*SPI3::ptr() }
    }
}
#[doc = "Registers group"]
pub struct TMR0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR0 {}
impl TMR0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr0::RegisterBlock {
        0x4001_0000 as *const _
    }
}
impl Deref for TMR0 {
    type Target = tmr0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR0::ptr() }
    }
}
#[doc = "Registers group"]
pub mod tmr0;
#[doc = "Registers group"]
pub struct TMR1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR1 {}
impl TMR1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr0::RegisterBlock {
        0x4001_0020 as *const _
    }
}
impl Deref for TMR1 {
    type Target = tmr0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR1::ptr() }
    }
}
#[doc = "Registers group"]
pub struct TMR2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR2 {}
impl TMR2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr0::RegisterBlock {
        0x4011_0000 as *const _
    }
}
impl Deref for TMR2 {
    type Target = tmr0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR2::ptr() }
    }
}
#[doc = "Registers group"]
pub struct TMR3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR3 {}
impl TMR3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr0::RegisterBlock {
        0x4011_0020 as *const _
    }
}
impl Deref for TMR3 {
    type Target = tmr0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR3::ptr() }
    }
}
#[doc = "Registers group"]
pub struct UART0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for UART0 {}
impl UART0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const uart0::RegisterBlock {
        0x4005_0000 as *const _
    }
}
impl Deref for UART0 {
    type Target = uart0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*UART0::ptr() }
    }
}
#[doc = "Registers group"]
pub mod uart0;
#[doc = "Registers group"]
pub struct UART1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for UART1 {}
impl UART1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const uart0::RegisterBlock {
        0x4015_0000 as *const _
    }
}
impl Deref for UART1 {
    type Target = uart0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*UART1::ptr() }
    }
}
#[doc = "Registers group"]
pub struct UART2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for UART2 {}
impl UART2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const uart0::RegisterBlock {
        0x4015_4000 as *const _
    }
}
impl Deref for UART2 {
    type Target = uart0::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*UART2::ptr() }
    }
}
#[doc = "Registers group"]
pub struct USB {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USB {}
impl USB {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usb::RegisterBlock {
        0x4006_0000 as *const _
    }
}
impl Deref for USB {
    type Target = usb::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*USB::ptr() }
    }
}
#[doc = "Registers group"]
pub mod usb;
#[doc = "Registers group"]
pub struct WDT {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for WDT {}
impl WDT {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const wdt::RegisterBlock {
        0x4000_4000 as *const _
    }
}
impl Deref for WDT {
    type Target = wdt::RegisterBlock;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        unsafe { &*WDT::ptr() }
    }
}
#[doc = "Registers group"]
pub mod wdt;
#[no_mangle]
static mut DEVICE_PERIPHERALS: bool = false;
#[doc = r"All the peripherals"]
#[allow(non_snake_case)]
pub struct Peripherals {
    #[doc = "PWMA"]
    pub PWMA: PWMA,
    #[doc = "PWMB"]
    pub PWMB: PWMB,
    #[doc = "ADC"]
    pub ADC: ADC,
    #[doc = "CAN"]
    pub CAN: CAN,
    #[doc = "CLK"]
    pub CLK: CLK,
    #[doc = "CMP"]
    pub CMP: CMP,
    #[doc = "EBI"]
    pub EBI: EBI,
    #[doc = "FMC"]
    pub FMC: FMC,
    #[doc = "GCR"]
    pub GCR: GCR,
    #[doc = "GPA"]
    pub GPA: GPA,
    #[doc = "GPB"]
    pub GPB: GPB,
    #[doc = "GPC"]
    pub GPC: GPC,
    #[doc = "GPD"]
    pub GPD: GPD,
    #[doc = "GPE"]
    pub GPE: GPE,
    #[doc = "GPIO"]
    pub GPIO: GPIO,
    #[doc = "GPA_BITS"]
    pub GPA_BITS: GPA_BITS,
    #[doc = "GPB_BITS"]
    pub GPB_BITS: GPB_BITS,
    #[doc = "GPC_BITS"]
    pub GPC_BITS: GPC_BITS,
    #[doc = "GPD_BITS"]
    pub GPD_BITS: GPD_BITS,
    #[doc = "GPE_BITS"]
    pub GPE_BITS: GPE_BITS,
    #[doc = "I2C0"]
    pub I2C0: I2C0,
    #[doc = "I2C1"]
    pub I2C1: I2C1,
    #[doc = "I2S"]
    pub I2S: I2S,
    #[doc = "INT"]
    pub INT: INT,
    #[doc = "PDMA0"]
    pub PDMA0: PDMA0,
    #[doc = "PDMA1"]
    pub PDMA1: PDMA1,
    #[doc = "PDMA2"]
    pub PDMA2: PDMA2,
    #[doc = "PDMA3"]
    pub PDMA3: PDMA3,
    #[doc = "PDMA4"]
    pub PDMA4: PDMA4,
    #[doc = "PDMA5"]
    pub PDMA5: PDMA5,
    #[doc = "PDMA6"]
    pub PDMA6: PDMA6,
    #[doc = "PDMA7"]
    pub PDMA7: PDMA7,
    #[doc = "PDMA8"]
    pub PDMA8: PDMA8,
    #[doc = "PDMA_GCR"]
    pub PDMA_GCR: PDMA_GCR,
    #[doc = "PS2"]
    pub PS2: PS2,
    #[doc = "RTC"]
    pub RTC: RTC,
    #[doc = "SCS"]
    pub SCS: SCS,
    #[doc = "SPI0"]
    pub SPI0: SPI0,
    #[doc = "SPI1"]
    pub SPI1: SPI1,
    #[doc = "SPI2"]
    pub SPI2: SPI2,
    #[doc = "SPI3"]
    pub SPI3: SPI3,
    #[doc = "TMR0"]
    pub TMR0: TMR0,
    #[doc = "TMR1"]
    pub TMR1: TMR1,
    #[doc = "TMR2"]
    pub TMR2: TMR2,
    #[doc = "TMR3"]
    pub TMR3: TMR3,
    #[doc = "UART0"]
    pub UART0: UART0,
    #[doc = "UART1"]
    pub UART1: UART1,
    #[doc = "UART2"]
    pub UART2: UART2,
    #[doc = "USB"]
    pub USB: USB,
    #[doc = "WDT"]
    pub WDT: WDT,
}
impl Peripherals {
    #[doc = r"Returns all the peripherals *once*"]
    #[inline]
    pub fn take() -> Option<Self> {
        cortex_m::interrupt::free(|_| {
            if unsafe { DEVICE_PERIPHERALS } {
                None
            } else {
                Some(unsafe { Peripherals::steal() })
            }
        })
    }
    #[doc = r"Unchecked version of `Peripherals::take`"]
    #[inline]
    pub unsafe fn steal() -> Self {
        DEVICE_PERIPHERALS = true;
        Peripherals {
            PWMA: PWMA {
                _marker: PhantomData,
            },
            PWMB: PWMB {
                _marker: PhantomData,
            },
            ADC: ADC {
                _marker: PhantomData,
            },
            CAN: CAN {
                _marker: PhantomData,
            },
            CLK: CLK {
                _marker: PhantomData,
            },
            CMP: CMP {
                _marker: PhantomData,
            },
            EBI: EBI {
                _marker: PhantomData,
            },
            FMC: FMC {
                _marker: PhantomData,
            },
            GCR: GCR {
                _marker: PhantomData,
            },
            GPA: GPA {
                _marker: PhantomData,
            },
            GPB: GPB {
                _marker: PhantomData,
            },
            GPC: GPC {
                _marker: PhantomData,
            },
            GPD: GPD {
                _marker: PhantomData,
            },
            GPE: GPE {
                _marker: PhantomData,
            },
            GPIO: GPIO {
                _marker: PhantomData,
            },
            GPA_BITS: GPA_BITS {
                _marker: PhantomData,
            },
            GPB_BITS: GPB_BITS {
                _marker: PhantomData,
            },
            GPC_BITS: GPC_BITS {
                _marker: PhantomData,
            },
            GPD_BITS: GPD_BITS {
                _marker: PhantomData,
            },
            GPE_BITS: GPE_BITS {
                _marker: PhantomData,
            },
            I2C0: I2C0 {
                _marker: PhantomData,
            },
            I2C1: I2C1 {
                _marker: PhantomData,
            },
            I2S: I2S {
                _marker: PhantomData,
            },
            INT: INT {
                _marker: PhantomData,
            },
            PDMA0: PDMA0 {
                _marker: PhantomData,
            },
            PDMA1: PDMA1 {
                _marker: PhantomData,
            },
            PDMA2: PDMA2 {
                _marker: PhantomData,
            },
            PDMA3: PDMA3 {
                _marker: PhantomData,
            },
            PDMA4: PDMA4 {
                _marker: PhantomData,
            },
            PDMA5: PDMA5 {
                _marker: PhantomData,
            },
            PDMA6: PDMA6 {
                _marker: PhantomData,
            },
            PDMA7: PDMA7 {
                _marker: PhantomData,
            },
            PDMA8: PDMA8 {
                _marker: PhantomData,
            },
            PDMA_GCR: PDMA_GCR {
                _marker: PhantomData,
            },
            PS2: PS2 {
                _marker: PhantomData,
            },
            RTC: RTC {
                _marker: PhantomData,
            },
            SCS: SCS {
                _marker: PhantomData,
            },
            SPI0: SPI0 {
                _marker: PhantomData,
            },
            SPI1: SPI1 {
                _marker: PhantomData,
            },
            SPI2: SPI2 {
                _marker: PhantomData,
            },
            SPI3: SPI3 {
                _marker: PhantomData,
            },
            TMR0: TMR0 {
                _marker: PhantomData,
            },
            TMR1: TMR1 {
                _marker: PhantomData,
            },
            TMR2: TMR2 {
                _marker: PhantomData,
            },
            TMR3: TMR3 {
                _marker: PhantomData,
            },
            UART0: UART0 {
                _marker: PhantomData,
            },
            UART1: UART1 {
                _marker: PhantomData,
            },
            UART2: UART2 {
                _marker: PhantomData,
            },
            USB: USB {
                _marker: PhantomData,
            },
            WDT: WDT {
                _marker: PhantomData,
            },
        }
    }
}