sam3x8e 0.1.1

Device support crate for sam3x8e devices
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
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - PWM Clock Register"]
    pub clk: CLK,
    #[doc = "0x04 - PWM Enable Register"]
    pub ena: ENA,
    #[doc = "0x08 - PWM Disable Register"]
    pub dis: DIS,
    #[doc = "0x0c - PWM Status Register"]
    pub sr: SR,
    #[doc = "0x10 - PWM Interrupt Enable Register 1"]
    pub ier1: IER1,
    #[doc = "0x14 - PWM Interrupt Disable Register 1"]
    pub idr1: IDR1,
    #[doc = "0x18 - PWM Interrupt Mask Register 1"]
    pub imr1: IMR1,
    #[doc = "0x1c - PWM Interrupt Status Register 1"]
    pub isr1: ISR1,
    #[doc = "0x20 - PWM Sync Channels Mode Register"]
    pub scm: SCM,
    _reserved9: [u8; 4usize],
    #[doc = "0x28 - PWM Sync Channels Update Control Register"]
    pub scuc: SCUC,
    #[doc = "0x2c - PWM Sync Channels Update Period Register"]
    pub scup: SCUP,
    #[doc = "0x30 - PWM Sync Channels Update Period Update Register"]
    pub scupupd: SCUPUPD,
    #[doc = "0x34 - PWM Interrupt Enable Register 2"]
    pub ier2: IER2,
    #[doc = "0x38 - PWM Interrupt Disable Register 2"]
    pub idr2: IDR2,
    #[doc = "0x3c - PWM Interrupt Mask Register 2"]
    pub imr2: IMR2,
    #[doc = "0x40 - PWM Interrupt Status Register 2"]
    pub isr2: ISR2,
    #[doc = "0x44 - PWM Output Override Value Register"]
    pub oov: OOV,
    #[doc = "0x48 - PWM Output Selection Register"]
    pub os: OS,
    #[doc = "0x4c - PWM Output Selection Set Register"]
    pub oss: OSS,
    #[doc = "0x50 - PWM Output Selection Clear Register"]
    pub osc: OSC,
    #[doc = "0x54 - PWM Output Selection Set Update Register"]
    pub ossupd: OSSUPD,
    #[doc = "0x58 - PWM Output Selection Clear Update Register"]
    pub oscupd: OSCUPD,
    #[doc = "0x5c - PWM Fault Mode Register"]
    pub fmr: FMR,
    #[doc = "0x60 - PWM Fault Status Register"]
    pub fsr: FSR,
    #[doc = "0x64 - PWM Fault Clear Register"]
    pub fcr: FCR,
    #[doc = "0x68 - PWM Fault Protection Value Register"]
    pub fpv: FPV,
    #[doc = "0x6c - PWM Fault Protection Enable Register 1"]
    pub fpe1: FPE1,
    #[doc = "0x70 - PWM Fault Protection Enable Register 2"]
    pub fpe2: FPE2,
    _reserved28: [u8; 8usize],
    #[doc = "0x7c - PWM Event Line 0 Mode Register"]
    pub elmr: [ELMR; 2],
    _reserved29: [u8; 44usize],
    #[doc = "0xb0 - PWM Stepper Motor Mode Register"]
    pub smmr: SMMR,
    _reserved30: [u8; 48usize],
    #[doc = "0xe4 - PWM Write Protect Control Register"]
    pub wpcr: WPCR,
    #[doc = "0xe8 - PWM Write Protect Status Register"]
    pub wpsr: WPSR,
    _reserved32: [u8; 28usize],
    #[doc = "0x108 - Transmit Pointer Register"]
    pub tpr: TPR,
    #[doc = "0x10c - Transmit Counter Register"]
    pub tcr: TCR,
    _reserved34: [u8; 8usize],
    #[doc = "0x118 - Transmit Next Pointer Register"]
    pub tnpr: TNPR,
    #[doc = "0x11c - Transmit Next Counter Register"]
    pub tncr: TNCR,
    #[doc = "0x120 - Transfer Control Register"]
    pub ptcr: PTCR,
    #[doc = "0x124 - Transfer Status Register"]
    pub ptsr: PTSR,
    _reserved38: [u8; 8usize],
    #[doc = "0x130 - PWM Comparison 0 Value Register"]
    pub cmpv0: CMPV0,
    #[doc = "0x134 - PWM Comparison 0 Value Update Register"]
    pub cmpvupd0: CMPVUPD0,
    #[doc = "0x138 - PWM Comparison 0 Mode Register"]
    pub cmpm0: CMPM0,
    #[doc = "0x13c - PWM Comparison 0 Mode Update Register"]
    pub cmpmupd0: CMPMUPD0,
    #[doc = "0x140 - PWM Comparison 1 Value Register"]
    pub cmpv1: CMPV1,
    #[doc = "0x144 - PWM Comparison 1 Value Update Register"]
    pub cmpvupd1: CMPVUPD1,
    #[doc = "0x148 - PWM Comparison 1 Mode Register"]
    pub cmpm1: CMPM1,
    #[doc = "0x14c - PWM Comparison 1 Mode Update Register"]
    pub cmpmupd1: CMPMUPD1,
    #[doc = "0x150 - PWM Comparison 2 Value Register"]
    pub cmpv2: CMPV2,
    #[doc = "0x154 - PWM Comparison 2 Value Update Register"]
    pub cmpvupd2: CMPVUPD2,
    #[doc = "0x158 - PWM Comparison 2 Mode Register"]
    pub cmpm2: CMPM2,
    #[doc = "0x15c - PWM Comparison 2 Mode Update Register"]
    pub cmpmupd2: CMPMUPD2,
    #[doc = "0x160 - PWM Comparison 3 Value Register"]
    pub cmpv3: CMPV3,
    #[doc = "0x164 - PWM Comparison 3 Value Update Register"]
    pub cmpvupd3: CMPVUPD3,
    #[doc = "0x168 - PWM Comparison 3 Mode Register"]
    pub cmpm3: CMPM3,
    #[doc = "0x16c - PWM Comparison 3 Mode Update Register"]
    pub cmpmupd3: CMPMUPD3,
    #[doc = "0x170 - PWM Comparison 4 Value Register"]
    pub cmpv4: CMPV4,
    #[doc = "0x174 - PWM Comparison 4 Value Update Register"]
    pub cmpvupd4: CMPVUPD4,
    #[doc = "0x178 - PWM Comparison 4 Mode Register"]
    pub cmpm4: CMPM4,
    #[doc = "0x17c - PWM Comparison 4 Mode Update Register"]
    pub cmpmupd4: CMPMUPD4,
    #[doc = "0x180 - PWM Comparison 5 Value Register"]
    pub cmpv5: CMPV5,
    #[doc = "0x184 - PWM Comparison 5 Value Update Register"]
    pub cmpvupd5: CMPVUPD5,
    #[doc = "0x188 - PWM Comparison 5 Mode Register"]
    pub cmpm5: CMPM5,
    #[doc = "0x18c - PWM Comparison 5 Mode Update Register"]
    pub cmpmupd5: CMPMUPD5,
    #[doc = "0x190 - PWM Comparison 6 Value Register"]
    pub cmpv6: CMPV6,
    #[doc = "0x194 - PWM Comparison 6 Value Update Register"]
    pub cmpvupd6: CMPVUPD6,
    #[doc = "0x198 - PWM Comparison 6 Mode Register"]
    pub cmpm6: CMPM6,
    #[doc = "0x19c - PWM Comparison 6 Mode Update Register"]
    pub cmpmupd6: CMPMUPD6,
    #[doc = "0x1a0 - PWM Comparison 7 Value Register"]
    pub cmpv7: CMPV7,
    #[doc = "0x1a4 - PWM Comparison 7 Value Update Register"]
    pub cmpvupd7: CMPVUPD7,
    #[doc = "0x1a8 - PWM Comparison 7 Mode Register"]
    pub cmpm7: CMPM7,
    #[doc = "0x1ac - PWM Comparison 7 Mode Update Register"]
    pub cmpmupd7: CMPMUPD7,
    _reserved70: [u8; 80usize],
    #[doc = "0x200 - PWM Channel Mode Register (ch_num = 0)"]
    pub cmr0: CMR0,
    #[doc = "0x204 - PWM Channel Duty Cycle Register (ch_num = 0)"]
    pub cdty0: CDTY0,
    #[doc = "0x208 - PWM Channel Duty Cycle Update Register (ch_num = 0)"]
    pub cdtyupd0: CDTYUPD0,
    #[doc = "0x20c - PWM Channel Period Register (ch_num = 0)"]
    pub cprd0: CPRD0,
    #[doc = "0x210 - PWM Channel Period Update Register (ch_num = 0)"]
    pub cprdupd0: CPRDUPD0,
    #[doc = "0x214 - PWM Channel Counter Register (ch_num = 0)"]
    pub ccnt0: CCNT0,
    #[doc = "0x218 - PWM Channel Dead Time Register (ch_num = 0)"]
    pub dt0: DT0,
    #[doc = "0x21c - PWM Channel Dead Time Update Register (ch_num = 0)"]
    pub dtupd0: DTUPD0,
    #[doc = "0x220 - PWM Channel Mode Register (ch_num = 1)"]
    pub cmr1: CMR1,
    #[doc = "0x224 - PWM Channel Duty Cycle Register (ch_num = 1)"]
    pub cdty1: CDTY1,
    #[doc = "0x228 - PWM Channel Duty Cycle Update Register (ch_num = 1)"]
    pub cdtyupd1: CDTYUPD1,
    #[doc = "0x22c - PWM Channel Period Register (ch_num = 1)"]
    pub cprd1: CPRD1,
    #[doc = "0x230 - PWM Channel Period Update Register (ch_num = 1)"]
    pub cprdupd1: CPRDUPD1,
    #[doc = "0x234 - PWM Channel Counter Register (ch_num = 1)"]
    pub ccnt1: CCNT1,
    #[doc = "0x238 - PWM Channel Dead Time Register (ch_num = 1)"]
    pub dt1: DT1,
    #[doc = "0x23c - PWM Channel Dead Time Update Register (ch_num = 1)"]
    pub dtupd1: DTUPD1,
    #[doc = "0x240 - PWM Channel Mode Register (ch_num = 2)"]
    pub cmr2: CMR2,
    #[doc = "0x244 - PWM Channel Duty Cycle Register (ch_num = 2)"]
    pub cdty2: CDTY2,
    #[doc = "0x248 - PWM Channel Duty Cycle Update Register (ch_num = 2)"]
    pub cdtyupd2: CDTYUPD2,
    #[doc = "0x24c - PWM Channel Period Register (ch_num = 2)"]
    pub cprd2: CPRD2,
    #[doc = "0x250 - PWM Channel Period Update Register (ch_num = 2)"]
    pub cprdupd2: CPRDUPD2,
    #[doc = "0x254 - PWM Channel Counter Register (ch_num = 2)"]
    pub ccnt2: CCNT2,
    #[doc = "0x258 - PWM Channel Dead Time Register (ch_num = 2)"]
    pub dt2: DT2,
    #[doc = "0x25c - PWM Channel Dead Time Update Register (ch_num = 2)"]
    pub dtupd2: DTUPD2,
    #[doc = "0x260 - PWM Channel Mode Register (ch_num = 3)"]
    pub cmr3: CMR3,
    #[doc = "0x264 - PWM Channel Duty Cycle Register (ch_num = 3)"]
    pub cdty3: CDTY3,
    #[doc = "0x268 - PWM Channel Duty Cycle Update Register (ch_num = 3)"]
    pub cdtyupd3: CDTYUPD3,
    #[doc = "0x26c - PWM Channel Period Register (ch_num = 3)"]
    pub cprd3: CPRD3,
    #[doc = "0x270 - PWM Channel Period Update Register (ch_num = 3)"]
    pub cprdupd3: CPRDUPD3,
    #[doc = "0x274 - PWM Channel Counter Register (ch_num = 3)"]
    pub ccnt3: CCNT3,
    #[doc = "0x278 - PWM Channel Dead Time Register (ch_num = 3)"]
    pub dt3: DT3,
    #[doc = "0x27c - PWM Channel Dead Time Update Register (ch_num = 3)"]
    pub dtupd3: DTUPD3,
    #[doc = "0x280 - PWM Channel Mode Register (ch_num = 4)"]
    pub cmr4: CMR4,
    #[doc = "0x284 - PWM Channel Duty Cycle Register (ch_num = 4)"]
    pub cdty4: CDTY4,
    #[doc = "0x288 - PWM Channel Duty Cycle Update Register (ch_num = 4)"]
    pub cdtyupd4: CDTYUPD4,
    #[doc = "0x28c - PWM Channel Period Register (ch_num = 4)"]
    pub cprd4: CPRD4,
    #[doc = "0x290 - PWM Channel Period Update Register (ch_num = 4)"]
    pub cprdupd4: CPRDUPD4,
    #[doc = "0x294 - PWM Channel Counter Register (ch_num = 4)"]
    pub ccnt4: CCNT4,
    #[doc = "0x298 - PWM Channel Dead Time Register (ch_num = 4)"]
    pub dt4: DT4,
    #[doc = "0x29c - PWM Channel Dead Time Update Register (ch_num = 4)"]
    pub dtupd4: DTUPD4,
    #[doc = "0x2a0 - PWM Channel Mode Register (ch_num = 5)"]
    pub cmr5: CMR5,
    #[doc = "0x2a4 - PWM Channel Duty Cycle Register (ch_num = 5)"]
    pub cdty5: CDTY5,
    #[doc = "0x2a8 - PWM Channel Duty Cycle Update Register (ch_num = 5)"]
    pub cdtyupd5: CDTYUPD5,
    #[doc = "0x2ac - PWM Channel Period Register (ch_num = 5)"]
    pub cprd5: CPRD5,
    #[doc = "0x2b0 - PWM Channel Period Update Register (ch_num = 5)"]
    pub cprdupd5: CPRDUPD5,
    #[doc = "0x2b4 - PWM Channel Counter Register (ch_num = 5)"]
    pub ccnt5: CCNT5,
    #[doc = "0x2b8 - PWM Channel Dead Time Register (ch_num = 5)"]
    pub dt5: DT5,
    #[doc = "0x2bc - PWM Channel Dead Time Update Register (ch_num = 5)"]
    pub dtupd5: DTUPD5,
    #[doc = "0x2c0 - PWM Channel Mode Register (ch_num = 6)"]
    pub cmr6: CMR6,
    #[doc = "0x2c4 - PWM Channel Duty Cycle Register (ch_num = 6)"]
    pub cdty6: CDTY6,
    #[doc = "0x2c8 - PWM Channel Duty Cycle Update Register (ch_num = 6)"]
    pub cdtyupd6: CDTYUPD6,
    #[doc = "0x2cc - PWM Channel Period Register (ch_num = 6)"]
    pub cprd6: CPRD6,
    #[doc = "0x2d0 - PWM Channel Period Update Register (ch_num = 6)"]
    pub cprdupd6: CPRDUPD6,
    #[doc = "0x2d4 - PWM Channel Counter Register (ch_num = 6)"]
    pub ccnt6: CCNT6,
    #[doc = "0x2d8 - PWM Channel Dead Time Register (ch_num = 6)"]
    pub dt6: DT6,
    #[doc = "0x2dc - PWM Channel Dead Time Update Register (ch_num = 6)"]
    pub dtupd6: DTUPD6,
    #[doc = "0x2e0 - PWM Channel Mode Register (ch_num = 7)"]
    pub cmr7: CMR7,
    #[doc = "0x2e4 - PWM Channel Duty Cycle Register (ch_num = 7)"]
    pub cdty7: CDTY7,
    #[doc = "0x2e8 - PWM Channel Duty Cycle Update Register (ch_num = 7)"]
    pub cdtyupd7: CDTYUPD7,
    #[doc = "0x2ec - PWM Channel Period Register (ch_num = 7)"]
    pub cprd7: CPRD7,
    #[doc = "0x2f0 - PWM Channel Period Update Register (ch_num = 7)"]
    pub cprdupd7: CPRDUPD7,
    #[doc = "0x2f4 - PWM Channel Counter Register (ch_num = 7)"]
    pub ccnt7: CCNT7,
    #[doc = "0x2f8 - PWM Channel Dead Time Register (ch_num = 7)"]
    pub dt7: DT7,
    #[doc = "0x2fc - PWM Channel Dead Time Update Register (ch_num = 7)"]
    pub dtupd7: DTUPD7,
}
#[doc = "PWM Clock Register"]
pub struct CLK {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Clock Register"]
pub mod clk;
#[doc = "PWM Enable Register"]
pub struct ENA {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Enable Register"]
pub mod ena;
#[doc = "PWM Disable Register"]
pub struct DIS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Disable Register"]
pub mod dis;
#[doc = "PWM Status Register"]
pub struct SR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Status Register"]
pub mod sr;
#[doc = "PWM Interrupt Enable Register 1"]
pub struct IER1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Enable Register 1"]
pub mod ier1;
#[doc = "PWM Interrupt Disable Register 1"]
pub struct IDR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Disable Register 1"]
pub mod idr1;
#[doc = "PWM Interrupt Mask Register 1"]
pub struct IMR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Mask Register 1"]
pub mod imr1;
#[doc = "PWM Interrupt Status Register 1"]
pub struct ISR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Status Register 1"]
pub mod isr1;
#[doc = "PWM Sync Channels Mode Register"]
pub struct SCM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Sync Channels Mode Register"]
pub mod scm;
#[doc = "PWM Sync Channels Update Control Register"]
pub struct SCUC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Sync Channels Update Control Register"]
pub mod scuc;
#[doc = "PWM Sync Channels Update Period Register"]
pub struct SCUP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Sync Channels Update Period Register"]
pub mod scup;
#[doc = "PWM Sync Channels Update Period Update Register"]
pub struct SCUPUPD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Sync Channels Update Period Update Register"]
pub mod scupupd;
#[doc = "PWM Interrupt Enable Register 2"]
pub struct IER2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Enable Register 2"]
pub mod ier2;
#[doc = "PWM Interrupt Disable Register 2"]
pub struct IDR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Disable Register 2"]
pub mod idr2;
#[doc = "PWM Interrupt Mask Register 2"]
pub struct IMR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Mask Register 2"]
pub mod imr2;
#[doc = "PWM Interrupt Status Register 2"]
pub struct ISR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Interrupt Status Register 2"]
pub mod isr2;
#[doc = "PWM Output Override Value Register"]
pub struct OOV {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Override Value Register"]
pub mod oov;
#[doc = "PWM Output Selection Register"]
pub struct OS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Selection Register"]
pub mod os;
#[doc = "PWM Output Selection Set Register"]
pub struct OSS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Selection Set Register"]
pub mod oss;
#[doc = "PWM Output Selection Clear Register"]
pub struct OSC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Selection Clear Register"]
pub mod osc;
#[doc = "PWM Output Selection Set Update Register"]
pub struct OSSUPD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Selection Set Update Register"]
pub mod ossupd;
#[doc = "PWM Output Selection Clear Update Register"]
pub struct OSCUPD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Output Selection Clear Update Register"]
pub mod oscupd;
#[doc = "PWM Fault Mode Register"]
pub struct FMR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Mode Register"]
pub mod fmr;
#[doc = "PWM Fault Status Register"]
pub struct FSR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Status Register"]
pub mod fsr;
#[doc = "PWM Fault Clear Register"]
pub struct FCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Clear Register"]
pub mod fcr;
#[doc = "PWM Fault Protection Value Register"]
pub struct FPV {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Protection Value Register"]
pub mod fpv;
#[doc = "PWM Fault Protection Enable Register 1"]
pub struct FPE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Protection Enable Register 1"]
pub mod fpe1;
#[doc = "PWM Fault Protection Enable Register 2"]
pub struct FPE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Fault Protection Enable Register 2"]
pub mod fpe2;
#[doc = "PWM Event Line 0 Mode Register"]
pub struct ELMR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Event Line 0 Mode Register"]
pub mod elmr;
#[doc = "PWM Stepper Motor Mode Register"]
pub struct SMMR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Stepper Motor Mode Register"]
pub mod smmr;
#[doc = "PWM Write Protect Control Register"]
pub struct WPCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Write Protect Control Register"]
pub mod wpcr;
#[doc = "PWM Write Protect Status Register"]
pub struct WPSR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Write Protect Status Register"]
pub mod wpsr;
#[doc = "PWM Comparison 0 Value Register"]
pub struct CMPV0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 0 Value Register"]
pub mod cmpv0;
#[doc = "PWM Comparison 0 Value Update Register"]
pub struct CMPVUPD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 0 Value Update Register"]
pub mod cmpvupd0;
#[doc = "PWM Comparison 0 Mode Register"]
pub struct CMPM0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 0 Mode Register"]
pub mod cmpm0;
#[doc = "PWM Comparison 0 Mode Update Register"]
pub struct CMPMUPD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 0 Mode Update Register"]
pub mod cmpmupd0;
#[doc = "PWM Comparison 1 Value Register"]
pub struct CMPV1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 1 Value Register"]
pub mod cmpv1;
#[doc = "PWM Comparison 1 Value Update Register"]
pub struct CMPVUPD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 1 Value Update Register"]
pub mod cmpvupd1;
#[doc = "PWM Comparison 1 Mode Register"]
pub struct CMPM1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 1 Mode Register"]
pub mod cmpm1;
#[doc = "PWM Comparison 1 Mode Update Register"]
pub struct CMPMUPD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 1 Mode Update Register"]
pub mod cmpmupd1;
#[doc = "PWM Comparison 2 Value Register"]
pub struct CMPV2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 2 Value Register"]
pub mod cmpv2;
#[doc = "PWM Comparison 2 Value Update Register"]
pub struct CMPVUPD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 2 Value Update Register"]
pub mod cmpvupd2;
#[doc = "PWM Comparison 2 Mode Register"]
pub struct CMPM2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 2 Mode Register"]
pub mod cmpm2;
#[doc = "PWM Comparison 2 Mode Update Register"]
pub struct CMPMUPD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 2 Mode Update Register"]
pub mod cmpmupd2;
#[doc = "PWM Comparison 3 Value Register"]
pub struct CMPV3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 3 Value Register"]
pub mod cmpv3;
#[doc = "PWM Comparison 3 Value Update Register"]
pub struct CMPVUPD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 3 Value Update Register"]
pub mod cmpvupd3;
#[doc = "PWM Comparison 3 Mode Register"]
pub struct CMPM3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 3 Mode Register"]
pub mod cmpm3;
#[doc = "PWM Comparison 3 Mode Update Register"]
pub struct CMPMUPD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 3 Mode Update Register"]
pub mod cmpmupd3;
#[doc = "PWM Comparison 4 Value Register"]
pub struct CMPV4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 4 Value Register"]
pub mod cmpv4;
#[doc = "PWM Comparison 4 Value Update Register"]
pub struct CMPVUPD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 4 Value Update Register"]
pub mod cmpvupd4;
#[doc = "PWM Comparison 4 Mode Register"]
pub struct CMPM4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 4 Mode Register"]
pub mod cmpm4;
#[doc = "PWM Comparison 4 Mode Update Register"]
pub struct CMPMUPD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 4 Mode Update Register"]
pub mod cmpmupd4;
#[doc = "PWM Comparison 5 Value Register"]
pub struct CMPV5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 5 Value Register"]
pub mod cmpv5;
#[doc = "PWM Comparison 5 Value Update Register"]
pub struct CMPVUPD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 5 Value Update Register"]
pub mod cmpvupd5;
#[doc = "PWM Comparison 5 Mode Register"]
pub struct CMPM5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 5 Mode Register"]
pub mod cmpm5;
#[doc = "PWM Comparison 5 Mode Update Register"]
pub struct CMPMUPD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 5 Mode Update Register"]
pub mod cmpmupd5;
#[doc = "PWM Comparison 6 Value Register"]
pub struct CMPV6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 6 Value Register"]
pub mod cmpv6;
#[doc = "PWM Comparison 6 Value Update Register"]
pub struct CMPVUPD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 6 Value Update Register"]
pub mod cmpvupd6;
#[doc = "PWM Comparison 6 Mode Register"]
pub struct CMPM6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 6 Mode Register"]
pub mod cmpm6;
#[doc = "PWM Comparison 6 Mode Update Register"]
pub struct CMPMUPD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 6 Mode Update Register"]
pub mod cmpmupd6;
#[doc = "PWM Comparison 7 Value Register"]
pub struct CMPV7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 7 Value Register"]
pub mod cmpv7;
#[doc = "PWM Comparison 7 Value Update Register"]
pub struct CMPVUPD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 7 Value Update Register"]
pub mod cmpvupd7;
#[doc = "PWM Comparison 7 Mode Register"]
pub struct CMPM7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 7 Mode Register"]
pub mod cmpm7;
#[doc = "PWM Comparison 7 Mode Update Register"]
pub struct CMPMUPD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Comparison 7 Mode Update Register"]
pub mod cmpmupd7;
#[doc = "PWM Channel Mode Register (ch_num = 0)"]
pub struct CMR0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 0)"]
pub mod cmr0;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 0)"]
pub struct CDTY0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 0)"]
pub mod cdty0;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 0)"]
pub struct CDTYUPD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 0)"]
pub mod cdtyupd0;
#[doc = "PWM Channel Period Register (ch_num = 0)"]
pub struct CPRD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 0)"]
pub mod cprd0;
#[doc = "PWM Channel Period Update Register (ch_num = 0)"]
pub struct CPRDUPD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 0)"]
pub mod cprdupd0;
#[doc = "PWM Channel Counter Register (ch_num = 0)"]
pub struct CCNT0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 0)"]
pub mod ccnt0;
#[doc = "PWM Channel Dead Time Register (ch_num = 0)"]
pub struct DT0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 0)"]
pub mod dt0;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 0)"]
pub struct DTUPD0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 0)"]
pub mod dtupd0;
#[doc = "PWM Channel Mode Register (ch_num = 1)"]
pub struct CMR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 1)"]
pub mod cmr1;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 1)"]
pub struct CDTY1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 1)"]
pub mod cdty1;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 1)"]
pub struct CDTYUPD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 1)"]
pub mod cdtyupd1;
#[doc = "PWM Channel Period Register (ch_num = 1)"]
pub struct CPRD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 1)"]
pub mod cprd1;
#[doc = "PWM Channel Period Update Register (ch_num = 1)"]
pub struct CPRDUPD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 1)"]
pub mod cprdupd1;
#[doc = "PWM Channel Counter Register (ch_num = 1)"]
pub struct CCNT1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 1)"]
pub mod ccnt1;
#[doc = "PWM Channel Dead Time Register (ch_num = 1)"]
pub struct DT1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 1)"]
pub mod dt1;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 1)"]
pub struct DTUPD1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 1)"]
pub mod dtupd1;
#[doc = "PWM Channel Mode Register (ch_num = 2)"]
pub struct CMR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 2)"]
pub mod cmr2;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 2)"]
pub struct CDTY2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 2)"]
pub mod cdty2;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 2)"]
pub struct CDTYUPD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 2)"]
pub mod cdtyupd2;
#[doc = "PWM Channel Period Register (ch_num = 2)"]
pub struct CPRD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 2)"]
pub mod cprd2;
#[doc = "PWM Channel Period Update Register (ch_num = 2)"]
pub struct CPRDUPD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 2)"]
pub mod cprdupd2;
#[doc = "PWM Channel Counter Register (ch_num = 2)"]
pub struct CCNT2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 2)"]
pub mod ccnt2;
#[doc = "PWM Channel Dead Time Register (ch_num = 2)"]
pub struct DT2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 2)"]
pub mod dt2;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 2)"]
pub struct DTUPD2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 2)"]
pub mod dtupd2;
#[doc = "PWM Channel Mode Register (ch_num = 3)"]
pub struct CMR3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 3)"]
pub mod cmr3;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 3)"]
pub struct CDTY3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 3)"]
pub mod cdty3;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 3)"]
pub struct CDTYUPD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 3)"]
pub mod cdtyupd3;
#[doc = "PWM Channel Period Register (ch_num = 3)"]
pub struct CPRD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 3)"]
pub mod cprd3;
#[doc = "PWM Channel Period Update Register (ch_num = 3)"]
pub struct CPRDUPD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 3)"]
pub mod cprdupd3;
#[doc = "PWM Channel Counter Register (ch_num = 3)"]
pub struct CCNT3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 3)"]
pub mod ccnt3;
#[doc = "PWM Channel Dead Time Register (ch_num = 3)"]
pub struct DT3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 3)"]
pub mod dt3;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 3)"]
pub struct DTUPD3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 3)"]
pub mod dtupd3;
#[doc = "PWM Channel Mode Register (ch_num = 4)"]
pub struct CMR4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 4)"]
pub mod cmr4;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 4)"]
pub struct CDTY4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 4)"]
pub mod cdty4;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 4)"]
pub struct CDTYUPD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 4)"]
pub mod cdtyupd4;
#[doc = "PWM Channel Period Register (ch_num = 4)"]
pub struct CPRD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 4)"]
pub mod cprd4;
#[doc = "PWM Channel Period Update Register (ch_num = 4)"]
pub struct CPRDUPD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 4)"]
pub mod cprdupd4;
#[doc = "PWM Channel Counter Register (ch_num = 4)"]
pub struct CCNT4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 4)"]
pub mod ccnt4;
#[doc = "PWM Channel Dead Time Register (ch_num = 4)"]
pub struct DT4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 4)"]
pub mod dt4;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 4)"]
pub struct DTUPD4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 4)"]
pub mod dtupd4;
#[doc = "PWM Channel Mode Register (ch_num = 5)"]
pub struct CMR5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 5)"]
pub mod cmr5;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 5)"]
pub struct CDTY5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 5)"]
pub mod cdty5;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 5)"]
pub struct CDTYUPD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 5)"]
pub mod cdtyupd5;
#[doc = "PWM Channel Period Register (ch_num = 5)"]
pub struct CPRD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 5)"]
pub mod cprd5;
#[doc = "PWM Channel Period Update Register (ch_num = 5)"]
pub struct CPRDUPD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 5)"]
pub mod cprdupd5;
#[doc = "PWM Channel Counter Register (ch_num = 5)"]
pub struct CCNT5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 5)"]
pub mod ccnt5;
#[doc = "PWM Channel Dead Time Register (ch_num = 5)"]
pub struct DT5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 5)"]
pub mod dt5;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 5)"]
pub struct DTUPD5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 5)"]
pub mod dtupd5;
#[doc = "PWM Channel Mode Register (ch_num = 6)"]
pub struct CMR6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 6)"]
pub mod cmr6;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 6)"]
pub struct CDTY6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 6)"]
pub mod cdty6;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 6)"]
pub struct CDTYUPD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 6)"]
pub mod cdtyupd6;
#[doc = "PWM Channel Period Register (ch_num = 6)"]
pub struct CPRD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 6)"]
pub mod cprd6;
#[doc = "PWM Channel Period Update Register (ch_num = 6)"]
pub struct CPRDUPD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 6)"]
pub mod cprdupd6;
#[doc = "PWM Channel Counter Register (ch_num = 6)"]
pub struct CCNT6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 6)"]
pub mod ccnt6;
#[doc = "PWM Channel Dead Time Register (ch_num = 6)"]
pub struct DT6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 6)"]
pub mod dt6;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 6)"]
pub struct DTUPD6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 6)"]
pub mod dtupd6;
#[doc = "PWM Channel Mode Register (ch_num = 7)"]
pub struct CMR7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Mode Register (ch_num = 7)"]
pub mod cmr7;
#[doc = "PWM Channel Duty Cycle Register (ch_num = 7)"]
pub struct CDTY7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Register (ch_num = 7)"]
pub mod cdty7;
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 7)"]
pub struct CDTYUPD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Duty Cycle Update Register (ch_num = 7)"]
pub mod cdtyupd7;
#[doc = "PWM Channel Period Register (ch_num = 7)"]
pub struct CPRD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Register (ch_num = 7)"]
pub mod cprd7;
#[doc = "PWM Channel Period Update Register (ch_num = 7)"]
pub struct CPRDUPD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Period Update Register (ch_num = 7)"]
pub mod cprdupd7;
#[doc = "PWM Channel Counter Register (ch_num = 7)"]
pub struct CCNT7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Counter Register (ch_num = 7)"]
pub mod ccnt7;
#[doc = "PWM Channel Dead Time Register (ch_num = 7)"]
pub struct DT7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Register (ch_num = 7)"]
pub mod dt7;
#[doc = "PWM Channel Dead Time Update Register (ch_num = 7)"]
pub struct DTUPD7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "PWM Channel Dead Time Update Register (ch_num = 7)"]
pub mod dtupd7;
#[doc = "Transmit Pointer Register"]
pub struct TPR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transmit Pointer Register"]
pub mod tpr;
#[doc = "Transmit Counter Register"]
pub struct TCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transmit Counter Register"]
pub mod tcr;
#[doc = "Transmit Next Pointer Register"]
pub struct TNPR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transmit Next Pointer Register"]
pub mod tnpr;
#[doc = "Transmit Next Counter Register"]
pub struct TNCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transmit Next Counter Register"]
pub mod tncr;
#[doc = "Transfer Control Register"]
pub struct PTCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transfer Control Register"]
pub mod ptcr;
#[doc = "Transfer Status Register"]
pub struct PTSR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Transfer Status Register"]
pub mod ptsr;