esp32 0.4.0

Peripheral access crate for the ESP32
Documentation
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
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - LEDC_HSCH0_CONF0"]
    pub hsch0_conf0: HSCH0_CONF0,
    #[doc = "0x04 - LEDC_HSCH0_HPOINT"]
    pub hsch0_hpoint: HSCH0_HPOINT,
    #[doc = "0x08 - LEDC_HSCH0_DUTY"]
    pub hsch0_duty: HSCH0_DUTY,
    #[doc = "0x0c - LEDC_HSCH0_CONF1"]
    pub hsch0_conf1: HSCH0_CONF1,
    #[doc = "0x10 - LEDC_HSCH0_DUTY_R"]
    pub hsch0_duty_r: HSCH0_DUTY_R,
    #[doc = "0x14 - LEDC_HSCH1_CONF0"]
    pub hsch1_conf0: HSCH1_CONF0,
    #[doc = "0x18 - LEDC_HSCH1_HPOINT"]
    pub hsch1_hpoint: HSCH1_HPOINT,
    #[doc = "0x1c - LEDC_HSCH1_DUTY"]
    pub hsch1_duty: HSCH1_DUTY,
    #[doc = "0x20 - LEDC_HSCH1_CONF1"]
    pub hsch1_conf1: HSCH1_CONF1,
    #[doc = "0x24 - LEDC_HSCH1_DUTY_R"]
    pub hsch1_duty_r: HSCH1_DUTY_R,
    #[doc = "0x28 - LEDC_HSCH2_CONF0"]
    pub hsch2_conf0: HSCH2_CONF0,
    #[doc = "0x2c - LEDC_HSCH2_HPOINT"]
    pub hsch2_hpoint: HSCH2_HPOINT,
    #[doc = "0x30 - LEDC_HSCH2_DUTY"]
    pub hsch2_duty: HSCH2_DUTY,
    #[doc = "0x34 - LEDC_HSCH2_CONF1"]
    pub hsch2_conf1: HSCH2_CONF1,
    #[doc = "0x38 - LEDC_HSCH2_DUTY_R"]
    pub hsch2_duty_r: HSCH2_DUTY_R,
    #[doc = "0x3c - LEDC_HSCH3_CONF0"]
    pub hsch3_conf0: HSCH3_CONF0,
    #[doc = "0x40 - LEDC_HSCH3_HPOINT"]
    pub hsch3_hpoint: HSCH3_HPOINT,
    #[doc = "0x44 - LEDC_HSCH3_DUTY"]
    pub hsch3_duty: HSCH3_DUTY,
    #[doc = "0x48 - LEDC_HSCH3_CONF1"]
    pub hsch3_conf1: HSCH3_CONF1,
    #[doc = "0x4c - LEDC_HSCH3_DUTY_R"]
    pub hsch3_duty_r: HSCH3_DUTY_R,
    #[doc = "0x50 - LEDC_HSCH4_CONF0"]
    pub hsch4_conf0: HSCH4_CONF0,
    #[doc = "0x54 - LEDC_HSCH4_HPOINT"]
    pub hsch4_hpoint: HSCH4_HPOINT,
    #[doc = "0x58 - LEDC_HSCH4_DUTY"]
    pub hsch4_duty: HSCH4_DUTY,
    #[doc = "0x5c - LEDC_HSCH4_CONF1"]
    pub hsch4_conf1: HSCH4_CONF1,
    #[doc = "0x60 - LEDC_HSCH4_DUTY_R"]
    pub hsch4_duty_r: HSCH4_DUTY_R,
    #[doc = "0x64 - LEDC_HSCH5_CONF0"]
    pub hsch5_conf0: HSCH5_CONF0,
    #[doc = "0x68 - LEDC_HSCH5_HPOINT"]
    pub hsch5_hpoint: HSCH5_HPOINT,
    #[doc = "0x6c - LEDC_HSCH5_DUTY"]
    pub hsch5_duty: HSCH5_DUTY,
    #[doc = "0x70 - LEDC_HSCH5_CONF1"]
    pub hsch5_conf1: HSCH5_CONF1,
    #[doc = "0x74 - LEDC_HSCH5_DUTY_R"]
    pub hsch5_duty_r: HSCH5_DUTY_R,
    #[doc = "0x78 - LEDC_HSCH6_CONF0"]
    pub hsch6_conf0: HSCH6_CONF0,
    #[doc = "0x7c - LEDC_HSCH6_HPOINT"]
    pub hsch6_hpoint: HSCH6_HPOINT,
    #[doc = "0x80 - LEDC_HSCH6_DUTY"]
    pub hsch6_duty: HSCH6_DUTY,
    #[doc = "0x84 - LEDC_HSCH6_CONF1"]
    pub hsch6_conf1: HSCH6_CONF1,
    #[doc = "0x88 - LEDC_HSCH6_DUTY_R"]
    pub hsch6_duty_r: HSCH6_DUTY_R,
    #[doc = "0x8c - LEDC_HSCH7_CONF0"]
    pub hsch7_conf0: HSCH7_CONF0,
    #[doc = "0x90 - LEDC_HSCH7_HPOINT"]
    pub hsch7_hpoint: HSCH7_HPOINT,
    #[doc = "0x94 - LEDC_HSCH7_DUTY"]
    pub hsch7_duty: HSCH7_DUTY,
    #[doc = "0x98 - LEDC_HSCH7_CONF1"]
    pub hsch7_conf1: HSCH7_CONF1,
    #[doc = "0x9c - LEDC_HSCH7_DUTY_R"]
    pub hsch7_duty_r: HSCH7_DUTY_R,
    #[doc = "0xa0 - LEDC_LSCH0_CONF0"]
    pub lsch0_conf0: LSCH0_CONF0,
    #[doc = "0xa4 - LEDC_LSCH0_HPOINT"]
    pub lsch0_hpoint: LSCH0_HPOINT,
    #[doc = "0xa8 - LEDC_LSCH0_DUTY"]
    pub lsch0_duty: LSCH0_DUTY,
    #[doc = "0xac - LEDC_LSCH0_CONF1"]
    pub lsch0_conf1: LSCH0_CONF1,
    #[doc = "0xb0 - LEDC_LSCH0_DUTY_R"]
    pub lsch0_duty_r: LSCH0_DUTY_R,
    #[doc = "0xb4 - LEDC_LSCH1_CONF0"]
    pub lsch1_conf0: LSCH1_CONF0,
    #[doc = "0xb8 - LEDC_LSCH1_HPOINT"]
    pub lsch1_hpoint: LSCH1_HPOINT,
    #[doc = "0xbc - LEDC_LSCH1_DUTY"]
    pub lsch1_duty: LSCH1_DUTY,
    #[doc = "0xc0 - LEDC_LSCH1_CONF1"]
    pub lsch1_conf1: LSCH1_CONF1,
    #[doc = "0xc4 - LEDC_LSCH1_DUTY_R"]
    pub lsch1_duty_r: LSCH1_DUTY_R,
    #[doc = "0xc8 - LEDC_LSCH2_CONF0"]
    pub lsch2_conf0: LSCH2_CONF0,
    #[doc = "0xcc - LEDC_LSCH2_HPOINT"]
    pub lsch2_hpoint: LSCH2_HPOINT,
    #[doc = "0xd0 - LEDC_LSCH2_DUTY"]
    pub lsch2_duty: LSCH2_DUTY,
    #[doc = "0xd4 - LEDC_LSCH2_CONF1"]
    pub lsch2_conf1: LSCH2_CONF1,
    #[doc = "0xd8 - LEDC_LSCH2_DUTY_R"]
    pub lsch2_duty_r: LSCH2_DUTY_R,
    #[doc = "0xdc - LEDC_LSCH3_CONF0"]
    pub lsch3_conf0: LSCH3_CONF0,
    #[doc = "0xe0 - LEDC_LSCH3_HPOINT"]
    pub lsch3_hpoint: LSCH3_HPOINT,
    #[doc = "0xe4 - LEDC_LSCH3_DUTY"]
    pub lsch3_duty: LSCH3_DUTY,
    #[doc = "0xe8 - LEDC_LSCH3_CONF1"]
    pub lsch3_conf1: LSCH3_CONF1,
    #[doc = "0xec - LEDC_LSCH3_DUTY_R"]
    pub lsch3_duty_r: LSCH3_DUTY_R,
    #[doc = "0xf0 - LEDC_LSCH4_CONF0"]
    pub lsch4_conf0: LSCH4_CONF0,
    #[doc = "0xf4 - LEDC_LSCH4_HPOINT"]
    pub lsch4_hpoint: LSCH4_HPOINT,
    #[doc = "0xf8 - LEDC_LSCH4_DUTY"]
    pub lsch4_duty: LSCH4_DUTY,
    #[doc = "0xfc - LEDC_LSCH4_CONF1"]
    pub lsch4_conf1: LSCH4_CONF1,
    #[doc = "0x100 - LEDC_LSCH4_DUTY_R"]
    pub lsch4_duty_r: LSCH4_DUTY_R,
    #[doc = "0x104 - LEDC_LSCH5_CONF0"]
    pub lsch5_conf0: LSCH5_CONF0,
    #[doc = "0x108 - LEDC_LSCH5_HPOINT"]
    pub lsch5_hpoint: LSCH5_HPOINT,
    #[doc = "0x10c - LEDC_LSCH5_DUTY"]
    pub lsch5_duty: LSCH5_DUTY,
    #[doc = "0x110 - LEDC_LSCH5_CONF1"]
    pub lsch5_conf1: LSCH5_CONF1,
    #[doc = "0x114 - LEDC_LSCH5_DUTY_R"]
    pub lsch5_duty_r: LSCH5_DUTY_R,
    #[doc = "0x118 - LEDC_LSCH6_CONF0"]
    pub lsch6_conf0: LSCH6_CONF0,
    #[doc = "0x11c - LEDC_LSCH6_HPOINT"]
    pub lsch6_hpoint: LSCH6_HPOINT,
    #[doc = "0x120 - LEDC_LSCH6_DUTY"]
    pub lsch6_duty: LSCH6_DUTY,
    #[doc = "0x124 - LEDC_LSCH6_CONF1"]
    pub lsch6_conf1: LSCH6_CONF1,
    #[doc = "0x128 - LEDC_LSCH6_DUTY_R"]
    pub lsch6_duty_r: LSCH6_DUTY_R,
    #[doc = "0x12c - LEDC_LSCH7_CONF0"]
    pub lsch7_conf0: LSCH7_CONF0,
    #[doc = "0x130 - LEDC_LSCH7_HPOINT"]
    pub lsch7_hpoint: LSCH7_HPOINT,
    #[doc = "0x134 - LEDC_LSCH7_DUTY"]
    pub lsch7_duty: LSCH7_DUTY,
    #[doc = "0x138 - LEDC_LSCH7_CONF1"]
    pub lsch7_conf1: LSCH7_CONF1,
    #[doc = "0x13c - LEDC_LSCH7_DUTY_R"]
    pub lsch7_duty_r: LSCH7_DUTY_R,
    #[doc = "0x140 - LEDC_HSTIMER0_CONF"]
    pub hstimer0_conf: HSTIMER0_CONF,
    #[doc = "0x144 - LEDC_HSTIMER0_VALUE"]
    pub hstimer0_value: HSTIMER0_VALUE,
    #[doc = "0x148 - LEDC_HSTIMER1_CONF"]
    pub hstimer1_conf: HSTIMER1_CONF,
    #[doc = "0x14c - LEDC_HSTIMER1_VALUE"]
    pub hstimer1_value: HSTIMER1_VALUE,
    #[doc = "0x150 - LEDC_HSTIMER2_CONF"]
    pub hstimer2_conf: HSTIMER2_CONF,
    #[doc = "0x154 - LEDC_HSTIMER2_VALUE"]
    pub hstimer2_value: HSTIMER2_VALUE,
    #[doc = "0x158 - LEDC_HSTIMER3_CONF"]
    pub hstimer3_conf: HSTIMER3_CONF,
    #[doc = "0x15c - LEDC_HSTIMER3_VALUE"]
    pub hstimer3_value: HSTIMER3_VALUE,
    #[doc = "0x160 - LEDC_LSTIMER0_CONF"]
    pub lstimer0_conf: LSTIMER0_CONF,
    #[doc = "0x164 - LEDC_LSTIMER0_VALUE"]
    pub lstimer0_value: LSTIMER0_VALUE,
    #[doc = "0x168 - LEDC_LSTIMER1_CONF"]
    pub lstimer1_conf: LSTIMER1_CONF,
    #[doc = "0x16c - LEDC_LSTIMER1_VALUE"]
    pub lstimer1_value: LSTIMER1_VALUE,
    #[doc = "0x170 - LEDC_LSTIMER2_CONF"]
    pub lstimer2_conf: LSTIMER2_CONF,
    #[doc = "0x174 - LEDC_LSTIMER2_VALUE"]
    pub lstimer2_value: LSTIMER2_VALUE,
    #[doc = "0x178 - LEDC_LSTIMER3_CONF"]
    pub lstimer3_conf: LSTIMER3_CONF,
    #[doc = "0x17c - LEDC_LSTIMER3_VALUE"]
    pub lstimer3_value: LSTIMER3_VALUE,
    #[doc = "0x180 - LEDC_INT_RAW"]
    pub int_raw: INT_RAW,
    #[doc = "0x184 - LEDC_INT_ST"]
    pub int_st: INT_ST,
    #[doc = "0x188 - LEDC_INT_ENA"]
    pub int_ena: INT_ENA,
    #[doc = "0x18c - LEDC_INT_CLR"]
    pub int_clr: INT_CLR,
    #[doc = "0x190 - LEDC_CONF"]
    pub conf: CONF,
    _reserved101: [u8; 104usize],
    #[doc = "0x1fc - LEDC_DATE"]
    pub date: DATE,
}
#[doc = "LEDC_HSCH0_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch0_conf0](hsch0_conf0) module"]
pub type HSCH0_CONF0 = crate::Reg<u32, _HSCH0_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH0_CONF0;
#[doc = "`read()` method returns [hsch0_conf0::R](hsch0_conf0::R) reader structure"]
impl crate::Readable for HSCH0_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch0_conf0::W](hsch0_conf0::W) writer structure"]
impl crate::Writable for HSCH0_CONF0 {}
#[doc = "LEDC_HSCH0_CONF0"]
pub mod hsch0_conf0;
#[doc = "LEDC_HSCH0_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch0_hpoint](hsch0_hpoint) module"]
pub type HSCH0_HPOINT = crate::Reg<u32, _HSCH0_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH0_HPOINT;
#[doc = "`read()` method returns [hsch0_hpoint::R](hsch0_hpoint::R) reader structure"]
impl crate::Readable for HSCH0_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch0_hpoint::W](hsch0_hpoint::W) writer structure"]
impl crate::Writable for HSCH0_HPOINT {}
#[doc = "LEDC_HSCH0_HPOINT"]
pub mod hsch0_hpoint;
#[doc = "LEDC_HSCH0_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch0_duty](hsch0_duty) module"]
pub type HSCH0_DUTY = crate::Reg<u32, _HSCH0_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH0_DUTY;
#[doc = "`read()` method returns [hsch0_duty::R](hsch0_duty::R) reader structure"]
impl crate::Readable for HSCH0_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch0_duty::W](hsch0_duty::W) writer structure"]
impl crate::Writable for HSCH0_DUTY {}
#[doc = "LEDC_HSCH0_DUTY"]
pub mod hsch0_duty;
#[doc = "LEDC_HSCH0_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch0_conf1](hsch0_conf1) module"]
pub type HSCH0_CONF1 = crate::Reg<u32, _HSCH0_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH0_CONF1;
#[doc = "`read()` method returns [hsch0_conf1::R](hsch0_conf1::R) reader structure"]
impl crate::Readable for HSCH0_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch0_conf1::W](hsch0_conf1::W) writer structure"]
impl crate::Writable for HSCH0_CONF1 {}
#[doc = "LEDC_HSCH0_CONF1"]
pub mod hsch0_conf1;
#[doc = "LEDC_HSCH0_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch0_duty_r](hsch0_duty_r) module"]
pub type HSCH0_DUTY_R = crate::Reg<u32, _HSCH0_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH0_DUTY_R;
#[doc = "`read()` method returns [hsch0_duty_r::R](hsch0_duty_r::R) reader structure"]
impl crate::Readable for HSCH0_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch0_duty_r::W](hsch0_duty_r::W) writer structure"]
impl crate::Writable for HSCH0_DUTY_R {}
#[doc = "LEDC_HSCH0_DUTY_R"]
pub mod hsch0_duty_r;
#[doc = "LEDC_HSCH1_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch1_conf0](hsch1_conf0) module"]
pub type HSCH1_CONF0 = crate::Reg<u32, _HSCH1_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH1_CONF0;
#[doc = "`read()` method returns [hsch1_conf0::R](hsch1_conf0::R) reader structure"]
impl crate::Readable for HSCH1_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch1_conf0::W](hsch1_conf0::W) writer structure"]
impl crate::Writable for HSCH1_CONF0 {}
#[doc = "LEDC_HSCH1_CONF0"]
pub mod hsch1_conf0;
#[doc = "LEDC_HSCH1_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch1_hpoint](hsch1_hpoint) module"]
pub type HSCH1_HPOINT = crate::Reg<u32, _HSCH1_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH1_HPOINT;
#[doc = "`read()` method returns [hsch1_hpoint::R](hsch1_hpoint::R) reader structure"]
impl crate::Readable for HSCH1_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch1_hpoint::W](hsch1_hpoint::W) writer structure"]
impl crate::Writable for HSCH1_HPOINT {}
#[doc = "LEDC_HSCH1_HPOINT"]
pub mod hsch1_hpoint;
#[doc = "LEDC_HSCH1_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch1_duty](hsch1_duty) module"]
pub type HSCH1_DUTY = crate::Reg<u32, _HSCH1_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH1_DUTY;
#[doc = "`read()` method returns [hsch1_duty::R](hsch1_duty::R) reader structure"]
impl crate::Readable for HSCH1_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch1_duty::W](hsch1_duty::W) writer structure"]
impl crate::Writable for HSCH1_DUTY {}
#[doc = "LEDC_HSCH1_DUTY"]
pub mod hsch1_duty;
#[doc = "LEDC_HSCH1_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch1_conf1](hsch1_conf1) module"]
pub type HSCH1_CONF1 = crate::Reg<u32, _HSCH1_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH1_CONF1;
#[doc = "`read()` method returns [hsch1_conf1::R](hsch1_conf1::R) reader structure"]
impl crate::Readable for HSCH1_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch1_conf1::W](hsch1_conf1::W) writer structure"]
impl crate::Writable for HSCH1_CONF1 {}
#[doc = "LEDC_HSCH1_CONF1"]
pub mod hsch1_conf1;
#[doc = "LEDC_HSCH1_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch1_duty_r](hsch1_duty_r) module"]
pub type HSCH1_DUTY_R = crate::Reg<u32, _HSCH1_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH1_DUTY_R;
#[doc = "`read()` method returns [hsch1_duty_r::R](hsch1_duty_r::R) reader structure"]
impl crate::Readable for HSCH1_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch1_duty_r::W](hsch1_duty_r::W) writer structure"]
impl crate::Writable for HSCH1_DUTY_R {}
#[doc = "LEDC_HSCH1_DUTY_R"]
pub mod hsch1_duty_r;
#[doc = "LEDC_HSCH2_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch2_conf0](hsch2_conf0) module"]
pub type HSCH2_CONF0 = crate::Reg<u32, _HSCH2_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH2_CONF0;
#[doc = "`read()` method returns [hsch2_conf0::R](hsch2_conf0::R) reader structure"]
impl crate::Readable for HSCH2_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch2_conf0::W](hsch2_conf0::W) writer structure"]
impl crate::Writable for HSCH2_CONF0 {}
#[doc = "LEDC_HSCH2_CONF0"]
pub mod hsch2_conf0;
#[doc = "LEDC_HSCH2_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch2_hpoint](hsch2_hpoint) module"]
pub type HSCH2_HPOINT = crate::Reg<u32, _HSCH2_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH2_HPOINT;
#[doc = "`read()` method returns [hsch2_hpoint::R](hsch2_hpoint::R) reader structure"]
impl crate::Readable for HSCH2_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch2_hpoint::W](hsch2_hpoint::W) writer structure"]
impl crate::Writable for HSCH2_HPOINT {}
#[doc = "LEDC_HSCH2_HPOINT"]
pub mod hsch2_hpoint;
#[doc = "LEDC_HSCH2_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch2_duty](hsch2_duty) module"]
pub type HSCH2_DUTY = crate::Reg<u32, _HSCH2_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH2_DUTY;
#[doc = "`read()` method returns [hsch2_duty::R](hsch2_duty::R) reader structure"]
impl crate::Readable for HSCH2_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch2_duty::W](hsch2_duty::W) writer structure"]
impl crate::Writable for HSCH2_DUTY {}
#[doc = "LEDC_HSCH2_DUTY"]
pub mod hsch2_duty;
#[doc = "LEDC_HSCH2_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch2_conf1](hsch2_conf1) module"]
pub type HSCH2_CONF1 = crate::Reg<u32, _HSCH2_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH2_CONF1;
#[doc = "`read()` method returns [hsch2_conf1::R](hsch2_conf1::R) reader structure"]
impl crate::Readable for HSCH2_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch2_conf1::W](hsch2_conf1::W) writer structure"]
impl crate::Writable for HSCH2_CONF1 {}
#[doc = "LEDC_HSCH2_CONF1"]
pub mod hsch2_conf1;
#[doc = "LEDC_HSCH2_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch2_duty_r](hsch2_duty_r) module"]
pub type HSCH2_DUTY_R = crate::Reg<u32, _HSCH2_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH2_DUTY_R;
#[doc = "`read()` method returns [hsch2_duty_r::R](hsch2_duty_r::R) reader structure"]
impl crate::Readable for HSCH2_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch2_duty_r::W](hsch2_duty_r::W) writer structure"]
impl crate::Writable for HSCH2_DUTY_R {}
#[doc = "LEDC_HSCH2_DUTY_R"]
pub mod hsch2_duty_r;
#[doc = "LEDC_HSCH3_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch3_conf0](hsch3_conf0) module"]
pub type HSCH3_CONF0 = crate::Reg<u32, _HSCH3_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH3_CONF0;
#[doc = "`read()` method returns [hsch3_conf0::R](hsch3_conf0::R) reader structure"]
impl crate::Readable for HSCH3_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch3_conf0::W](hsch3_conf0::W) writer structure"]
impl crate::Writable for HSCH3_CONF0 {}
#[doc = "LEDC_HSCH3_CONF0"]
pub mod hsch3_conf0;
#[doc = "LEDC_HSCH3_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch3_hpoint](hsch3_hpoint) module"]
pub type HSCH3_HPOINT = crate::Reg<u32, _HSCH3_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH3_HPOINT;
#[doc = "`read()` method returns [hsch3_hpoint::R](hsch3_hpoint::R) reader structure"]
impl crate::Readable for HSCH3_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch3_hpoint::W](hsch3_hpoint::W) writer structure"]
impl crate::Writable for HSCH3_HPOINT {}
#[doc = "LEDC_HSCH3_HPOINT"]
pub mod hsch3_hpoint;
#[doc = "LEDC_HSCH3_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch3_duty](hsch3_duty) module"]
pub type HSCH3_DUTY = crate::Reg<u32, _HSCH3_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH3_DUTY;
#[doc = "`read()` method returns [hsch3_duty::R](hsch3_duty::R) reader structure"]
impl crate::Readable for HSCH3_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch3_duty::W](hsch3_duty::W) writer structure"]
impl crate::Writable for HSCH3_DUTY {}
#[doc = "LEDC_HSCH3_DUTY"]
pub mod hsch3_duty;
#[doc = "LEDC_HSCH3_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch3_conf1](hsch3_conf1) module"]
pub type HSCH3_CONF1 = crate::Reg<u32, _HSCH3_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH3_CONF1;
#[doc = "`read()` method returns [hsch3_conf1::R](hsch3_conf1::R) reader structure"]
impl crate::Readable for HSCH3_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch3_conf1::W](hsch3_conf1::W) writer structure"]
impl crate::Writable for HSCH3_CONF1 {}
#[doc = "LEDC_HSCH3_CONF1"]
pub mod hsch3_conf1;
#[doc = "LEDC_HSCH3_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch3_duty_r](hsch3_duty_r) module"]
pub type HSCH3_DUTY_R = crate::Reg<u32, _HSCH3_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH3_DUTY_R;
#[doc = "`read()` method returns [hsch3_duty_r::R](hsch3_duty_r::R) reader structure"]
impl crate::Readable for HSCH3_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch3_duty_r::W](hsch3_duty_r::W) writer structure"]
impl crate::Writable for HSCH3_DUTY_R {}
#[doc = "LEDC_HSCH3_DUTY_R"]
pub mod hsch3_duty_r;
#[doc = "LEDC_HSCH4_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch4_conf0](hsch4_conf0) module"]
pub type HSCH4_CONF0 = crate::Reg<u32, _HSCH4_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH4_CONF0;
#[doc = "`read()` method returns [hsch4_conf0::R](hsch4_conf0::R) reader structure"]
impl crate::Readable for HSCH4_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch4_conf0::W](hsch4_conf0::W) writer structure"]
impl crate::Writable for HSCH4_CONF0 {}
#[doc = "LEDC_HSCH4_CONF0"]
pub mod hsch4_conf0;
#[doc = "LEDC_HSCH4_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch4_hpoint](hsch4_hpoint) module"]
pub type HSCH4_HPOINT = crate::Reg<u32, _HSCH4_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH4_HPOINT;
#[doc = "`read()` method returns [hsch4_hpoint::R](hsch4_hpoint::R) reader structure"]
impl crate::Readable for HSCH4_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch4_hpoint::W](hsch4_hpoint::W) writer structure"]
impl crate::Writable for HSCH4_HPOINT {}
#[doc = "LEDC_HSCH4_HPOINT"]
pub mod hsch4_hpoint;
#[doc = "LEDC_HSCH4_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch4_duty](hsch4_duty) module"]
pub type HSCH4_DUTY = crate::Reg<u32, _HSCH4_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH4_DUTY;
#[doc = "`read()` method returns [hsch4_duty::R](hsch4_duty::R) reader structure"]
impl crate::Readable for HSCH4_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch4_duty::W](hsch4_duty::W) writer structure"]
impl crate::Writable for HSCH4_DUTY {}
#[doc = "LEDC_HSCH4_DUTY"]
pub mod hsch4_duty;
#[doc = "LEDC_HSCH4_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch4_conf1](hsch4_conf1) module"]
pub type HSCH4_CONF1 = crate::Reg<u32, _HSCH4_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH4_CONF1;
#[doc = "`read()` method returns [hsch4_conf1::R](hsch4_conf1::R) reader structure"]
impl crate::Readable for HSCH4_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch4_conf1::W](hsch4_conf1::W) writer structure"]
impl crate::Writable for HSCH4_CONF1 {}
#[doc = "LEDC_HSCH4_CONF1"]
pub mod hsch4_conf1;
#[doc = "LEDC_HSCH4_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch4_duty_r](hsch4_duty_r) module"]
pub type HSCH4_DUTY_R = crate::Reg<u32, _HSCH4_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH4_DUTY_R;
#[doc = "`read()` method returns [hsch4_duty_r::R](hsch4_duty_r::R) reader structure"]
impl crate::Readable for HSCH4_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch4_duty_r::W](hsch4_duty_r::W) writer structure"]
impl crate::Writable for HSCH4_DUTY_R {}
#[doc = "LEDC_HSCH4_DUTY_R"]
pub mod hsch4_duty_r;
#[doc = "LEDC_HSCH5_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch5_conf0](hsch5_conf0) module"]
pub type HSCH5_CONF0 = crate::Reg<u32, _HSCH5_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH5_CONF0;
#[doc = "`read()` method returns [hsch5_conf0::R](hsch5_conf0::R) reader structure"]
impl crate::Readable for HSCH5_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch5_conf0::W](hsch5_conf0::W) writer structure"]
impl crate::Writable for HSCH5_CONF0 {}
#[doc = "LEDC_HSCH5_CONF0"]
pub mod hsch5_conf0;
#[doc = "LEDC_HSCH5_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch5_hpoint](hsch5_hpoint) module"]
pub type HSCH5_HPOINT = crate::Reg<u32, _HSCH5_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH5_HPOINT;
#[doc = "`read()` method returns [hsch5_hpoint::R](hsch5_hpoint::R) reader structure"]
impl crate::Readable for HSCH5_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch5_hpoint::W](hsch5_hpoint::W) writer structure"]
impl crate::Writable for HSCH5_HPOINT {}
#[doc = "LEDC_HSCH5_HPOINT"]
pub mod hsch5_hpoint;
#[doc = "LEDC_HSCH5_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch5_duty](hsch5_duty) module"]
pub type HSCH5_DUTY = crate::Reg<u32, _HSCH5_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH5_DUTY;
#[doc = "`read()` method returns [hsch5_duty::R](hsch5_duty::R) reader structure"]
impl crate::Readable for HSCH5_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch5_duty::W](hsch5_duty::W) writer structure"]
impl crate::Writable for HSCH5_DUTY {}
#[doc = "LEDC_HSCH5_DUTY"]
pub mod hsch5_duty;
#[doc = "LEDC_HSCH5_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch5_conf1](hsch5_conf1) module"]
pub type HSCH5_CONF1 = crate::Reg<u32, _HSCH5_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH5_CONF1;
#[doc = "`read()` method returns [hsch5_conf1::R](hsch5_conf1::R) reader structure"]
impl crate::Readable for HSCH5_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch5_conf1::W](hsch5_conf1::W) writer structure"]
impl crate::Writable for HSCH5_CONF1 {}
#[doc = "LEDC_HSCH5_CONF1"]
pub mod hsch5_conf1;
#[doc = "LEDC_HSCH5_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch5_duty_r](hsch5_duty_r) module"]
pub type HSCH5_DUTY_R = crate::Reg<u32, _HSCH5_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH5_DUTY_R;
#[doc = "`read()` method returns [hsch5_duty_r::R](hsch5_duty_r::R) reader structure"]
impl crate::Readable for HSCH5_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch5_duty_r::W](hsch5_duty_r::W) writer structure"]
impl crate::Writable for HSCH5_DUTY_R {}
#[doc = "LEDC_HSCH5_DUTY_R"]
pub mod hsch5_duty_r;
#[doc = "LEDC_HSCH6_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch6_conf0](hsch6_conf0) module"]
pub type HSCH6_CONF0 = crate::Reg<u32, _HSCH6_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH6_CONF0;
#[doc = "`read()` method returns [hsch6_conf0::R](hsch6_conf0::R) reader structure"]
impl crate::Readable for HSCH6_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch6_conf0::W](hsch6_conf0::W) writer structure"]
impl crate::Writable for HSCH6_CONF0 {}
#[doc = "LEDC_HSCH6_CONF0"]
pub mod hsch6_conf0;
#[doc = "LEDC_HSCH6_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch6_hpoint](hsch6_hpoint) module"]
pub type HSCH6_HPOINT = crate::Reg<u32, _HSCH6_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH6_HPOINT;
#[doc = "`read()` method returns [hsch6_hpoint::R](hsch6_hpoint::R) reader structure"]
impl crate::Readable for HSCH6_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch6_hpoint::W](hsch6_hpoint::W) writer structure"]
impl crate::Writable for HSCH6_HPOINT {}
#[doc = "LEDC_HSCH6_HPOINT"]
pub mod hsch6_hpoint;
#[doc = "LEDC_HSCH6_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch6_duty](hsch6_duty) module"]
pub type HSCH6_DUTY = crate::Reg<u32, _HSCH6_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH6_DUTY;
#[doc = "`read()` method returns [hsch6_duty::R](hsch6_duty::R) reader structure"]
impl crate::Readable for HSCH6_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch6_duty::W](hsch6_duty::W) writer structure"]
impl crate::Writable for HSCH6_DUTY {}
#[doc = "LEDC_HSCH6_DUTY"]
pub mod hsch6_duty;
#[doc = "LEDC_HSCH6_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch6_conf1](hsch6_conf1) module"]
pub type HSCH6_CONF1 = crate::Reg<u32, _HSCH6_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH6_CONF1;
#[doc = "`read()` method returns [hsch6_conf1::R](hsch6_conf1::R) reader structure"]
impl crate::Readable for HSCH6_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch6_conf1::W](hsch6_conf1::W) writer structure"]
impl crate::Writable for HSCH6_CONF1 {}
#[doc = "LEDC_HSCH6_CONF1"]
pub mod hsch6_conf1;
#[doc = "LEDC_HSCH6_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch6_duty_r](hsch6_duty_r) module"]
pub type HSCH6_DUTY_R = crate::Reg<u32, _HSCH6_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH6_DUTY_R;
#[doc = "`read()` method returns [hsch6_duty_r::R](hsch6_duty_r::R) reader structure"]
impl crate::Readable for HSCH6_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch6_duty_r::W](hsch6_duty_r::W) writer structure"]
impl crate::Writable for HSCH6_DUTY_R {}
#[doc = "LEDC_HSCH6_DUTY_R"]
pub mod hsch6_duty_r;
#[doc = "LEDC_HSCH7_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch7_conf0](hsch7_conf0) module"]
pub type HSCH7_CONF0 = crate::Reg<u32, _HSCH7_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH7_CONF0;
#[doc = "`read()` method returns [hsch7_conf0::R](hsch7_conf0::R) reader structure"]
impl crate::Readable for HSCH7_CONF0 {}
#[doc = "`write(|w| ..)` method takes [hsch7_conf0::W](hsch7_conf0::W) writer structure"]
impl crate::Writable for HSCH7_CONF0 {}
#[doc = "LEDC_HSCH7_CONF0"]
pub mod hsch7_conf0;
#[doc = "LEDC_HSCH7_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch7_hpoint](hsch7_hpoint) module"]
pub type HSCH7_HPOINT = crate::Reg<u32, _HSCH7_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH7_HPOINT;
#[doc = "`read()` method returns [hsch7_hpoint::R](hsch7_hpoint::R) reader structure"]
impl crate::Readable for HSCH7_HPOINT {}
#[doc = "`write(|w| ..)` method takes [hsch7_hpoint::W](hsch7_hpoint::W) writer structure"]
impl crate::Writable for HSCH7_HPOINT {}
#[doc = "LEDC_HSCH7_HPOINT"]
pub mod hsch7_hpoint;
#[doc = "LEDC_HSCH7_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch7_duty](hsch7_duty) module"]
pub type HSCH7_DUTY = crate::Reg<u32, _HSCH7_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH7_DUTY;
#[doc = "`read()` method returns [hsch7_duty::R](hsch7_duty::R) reader structure"]
impl crate::Readable for HSCH7_DUTY {}
#[doc = "`write(|w| ..)` method takes [hsch7_duty::W](hsch7_duty::W) writer structure"]
impl crate::Writable for HSCH7_DUTY {}
#[doc = "LEDC_HSCH7_DUTY"]
pub mod hsch7_duty;
#[doc = "LEDC_HSCH7_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch7_conf1](hsch7_conf1) module"]
pub type HSCH7_CONF1 = crate::Reg<u32, _HSCH7_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH7_CONF1;
#[doc = "`read()` method returns [hsch7_conf1::R](hsch7_conf1::R) reader structure"]
impl crate::Readable for HSCH7_CONF1 {}
#[doc = "`write(|w| ..)` method takes [hsch7_conf1::W](hsch7_conf1::W) writer structure"]
impl crate::Writable for HSCH7_CONF1 {}
#[doc = "LEDC_HSCH7_CONF1"]
pub mod hsch7_conf1;
#[doc = "LEDC_HSCH7_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hsch7_duty_r](hsch7_duty_r) module"]
pub type HSCH7_DUTY_R = crate::Reg<u32, _HSCH7_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSCH7_DUTY_R;
#[doc = "`read()` method returns [hsch7_duty_r::R](hsch7_duty_r::R) reader structure"]
impl crate::Readable for HSCH7_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [hsch7_duty_r::W](hsch7_duty_r::W) writer structure"]
impl crate::Writable for HSCH7_DUTY_R {}
#[doc = "LEDC_HSCH7_DUTY_R"]
pub mod hsch7_duty_r;
#[doc = "LEDC_LSCH0_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch0_conf0](lsch0_conf0) module"]
pub type LSCH0_CONF0 = crate::Reg<u32, _LSCH0_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH0_CONF0;
#[doc = "`read()` method returns [lsch0_conf0::R](lsch0_conf0::R) reader structure"]
impl crate::Readable for LSCH0_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch0_conf0::W](lsch0_conf0::W) writer structure"]
impl crate::Writable for LSCH0_CONF0 {}
#[doc = "LEDC_LSCH0_CONF0"]
pub mod lsch0_conf0;
#[doc = "LEDC_LSCH0_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch0_hpoint](lsch0_hpoint) module"]
pub type LSCH0_HPOINT = crate::Reg<u32, _LSCH0_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH0_HPOINT;
#[doc = "`read()` method returns [lsch0_hpoint::R](lsch0_hpoint::R) reader structure"]
impl crate::Readable for LSCH0_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch0_hpoint::W](lsch0_hpoint::W) writer structure"]
impl crate::Writable for LSCH0_HPOINT {}
#[doc = "LEDC_LSCH0_HPOINT"]
pub mod lsch0_hpoint;
#[doc = "LEDC_LSCH0_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch0_duty](lsch0_duty) module"]
pub type LSCH0_DUTY = crate::Reg<u32, _LSCH0_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH0_DUTY;
#[doc = "`read()` method returns [lsch0_duty::R](lsch0_duty::R) reader structure"]
impl crate::Readable for LSCH0_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch0_duty::W](lsch0_duty::W) writer structure"]
impl crate::Writable for LSCH0_DUTY {}
#[doc = "LEDC_LSCH0_DUTY"]
pub mod lsch0_duty;
#[doc = "LEDC_LSCH0_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch0_conf1](lsch0_conf1) module"]
pub type LSCH0_CONF1 = crate::Reg<u32, _LSCH0_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH0_CONF1;
#[doc = "`read()` method returns [lsch0_conf1::R](lsch0_conf1::R) reader structure"]
impl crate::Readable for LSCH0_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch0_conf1::W](lsch0_conf1::W) writer structure"]
impl crate::Writable for LSCH0_CONF1 {}
#[doc = "LEDC_LSCH0_CONF1"]
pub mod lsch0_conf1;
#[doc = "LEDC_LSCH0_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch0_duty_r](lsch0_duty_r) module"]
pub type LSCH0_DUTY_R = crate::Reg<u32, _LSCH0_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH0_DUTY_R;
#[doc = "`read()` method returns [lsch0_duty_r::R](lsch0_duty_r::R) reader structure"]
impl crate::Readable for LSCH0_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch0_duty_r::W](lsch0_duty_r::W) writer structure"]
impl crate::Writable for LSCH0_DUTY_R {}
#[doc = "LEDC_LSCH0_DUTY_R"]
pub mod lsch0_duty_r;
#[doc = "LEDC_LSCH1_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch1_conf0](lsch1_conf0) module"]
pub type LSCH1_CONF0 = crate::Reg<u32, _LSCH1_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH1_CONF0;
#[doc = "`read()` method returns [lsch1_conf0::R](lsch1_conf0::R) reader structure"]
impl crate::Readable for LSCH1_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch1_conf0::W](lsch1_conf0::W) writer structure"]
impl crate::Writable for LSCH1_CONF0 {}
#[doc = "LEDC_LSCH1_CONF0"]
pub mod lsch1_conf0;
#[doc = "LEDC_LSCH1_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch1_hpoint](lsch1_hpoint) module"]
pub type LSCH1_HPOINT = crate::Reg<u32, _LSCH1_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH1_HPOINT;
#[doc = "`read()` method returns [lsch1_hpoint::R](lsch1_hpoint::R) reader structure"]
impl crate::Readable for LSCH1_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch1_hpoint::W](lsch1_hpoint::W) writer structure"]
impl crate::Writable for LSCH1_HPOINT {}
#[doc = "LEDC_LSCH1_HPOINT"]
pub mod lsch1_hpoint;
#[doc = "LEDC_LSCH1_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch1_duty](lsch1_duty) module"]
pub type LSCH1_DUTY = crate::Reg<u32, _LSCH1_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH1_DUTY;
#[doc = "`read()` method returns [lsch1_duty::R](lsch1_duty::R) reader structure"]
impl crate::Readable for LSCH1_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch1_duty::W](lsch1_duty::W) writer structure"]
impl crate::Writable for LSCH1_DUTY {}
#[doc = "LEDC_LSCH1_DUTY"]
pub mod lsch1_duty;
#[doc = "LEDC_LSCH1_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch1_conf1](lsch1_conf1) module"]
pub type LSCH1_CONF1 = crate::Reg<u32, _LSCH1_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH1_CONF1;
#[doc = "`read()` method returns [lsch1_conf1::R](lsch1_conf1::R) reader structure"]
impl crate::Readable for LSCH1_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch1_conf1::W](lsch1_conf1::W) writer structure"]
impl crate::Writable for LSCH1_CONF1 {}
#[doc = "LEDC_LSCH1_CONF1"]
pub mod lsch1_conf1;
#[doc = "LEDC_LSCH1_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch1_duty_r](lsch1_duty_r) module"]
pub type LSCH1_DUTY_R = crate::Reg<u32, _LSCH1_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH1_DUTY_R;
#[doc = "`read()` method returns [lsch1_duty_r::R](lsch1_duty_r::R) reader structure"]
impl crate::Readable for LSCH1_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch1_duty_r::W](lsch1_duty_r::W) writer structure"]
impl crate::Writable for LSCH1_DUTY_R {}
#[doc = "LEDC_LSCH1_DUTY_R"]
pub mod lsch1_duty_r;
#[doc = "LEDC_LSCH2_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch2_conf0](lsch2_conf0) module"]
pub type LSCH2_CONF0 = crate::Reg<u32, _LSCH2_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH2_CONF0;
#[doc = "`read()` method returns [lsch2_conf0::R](lsch2_conf0::R) reader structure"]
impl crate::Readable for LSCH2_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch2_conf0::W](lsch2_conf0::W) writer structure"]
impl crate::Writable for LSCH2_CONF0 {}
#[doc = "LEDC_LSCH2_CONF0"]
pub mod lsch2_conf0;
#[doc = "LEDC_LSCH2_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch2_hpoint](lsch2_hpoint) module"]
pub type LSCH2_HPOINT = crate::Reg<u32, _LSCH2_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH2_HPOINT;
#[doc = "`read()` method returns [lsch2_hpoint::R](lsch2_hpoint::R) reader structure"]
impl crate::Readable for LSCH2_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch2_hpoint::W](lsch2_hpoint::W) writer structure"]
impl crate::Writable for LSCH2_HPOINT {}
#[doc = "LEDC_LSCH2_HPOINT"]
pub mod lsch2_hpoint;
#[doc = "LEDC_LSCH2_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch2_duty](lsch2_duty) module"]
pub type LSCH2_DUTY = crate::Reg<u32, _LSCH2_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH2_DUTY;
#[doc = "`read()` method returns [lsch2_duty::R](lsch2_duty::R) reader structure"]
impl crate::Readable for LSCH2_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch2_duty::W](lsch2_duty::W) writer structure"]
impl crate::Writable for LSCH2_DUTY {}
#[doc = "LEDC_LSCH2_DUTY"]
pub mod lsch2_duty;
#[doc = "LEDC_LSCH2_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch2_conf1](lsch2_conf1) module"]
pub type LSCH2_CONF1 = crate::Reg<u32, _LSCH2_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH2_CONF1;
#[doc = "`read()` method returns [lsch2_conf1::R](lsch2_conf1::R) reader structure"]
impl crate::Readable for LSCH2_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch2_conf1::W](lsch2_conf1::W) writer structure"]
impl crate::Writable for LSCH2_CONF1 {}
#[doc = "LEDC_LSCH2_CONF1"]
pub mod lsch2_conf1;
#[doc = "LEDC_LSCH2_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch2_duty_r](lsch2_duty_r) module"]
pub type LSCH2_DUTY_R = crate::Reg<u32, _LSCH2_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH2_DUTY_R;
#[doc = "`read()` method returns [lsch2_duty_r::R](lsch2_duty_r::R) reader structure"]
impl crate::Readable for LSCH2_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch2_duty_r::W](lsch2_duty_r::W) writer structure"]
impl crate::Writable for LSCH2_DUTY_R {}
#[doc = "LEDC_LSCH2_DUTY_R"]
pub mod lsch2_duty_r;
#[doc = "LEDC_LSCH3_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch3_conf0](lsch3_conf0) module"]
pub type LSCH3_CONF0 = crate::Reg<u32, _LSCH3_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH3_CONF0;
#[doc = "`read()` method returns [lsch3_conf0::R](lsch3_conf0::R) reader structure"]
impl crate::Readable for LSCH3_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch3_conf0::W](lsch3_conf0::W) writer structure"]
impl crate::Writable for LSCH3_CONF0 {}
#[doc = "LEDC_LSCH3_CONF0"]
pub mod lsch3_conf0;
#[doc = "LEDC_LSCH3_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch3_hpoint](lsch3_hpoint) module"]
pub type LSCH3_HPOINT = crate::Reg<u32, _LSCH3_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH3_HPOINT;
#[doc = "`read()` method returns [lsch3_hpoint::R](lsch3_hpoint::R) reader structure"]
impl crate::Readable for LSCH3_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch3_hpoint::W](lsch3_hpoint::W) writer structure"]
impl crate::Writable for LSCH3_HPOINT {}
#[doc = "LEDC_LSCH3_HPOINT"]
pub mod lsch3_hpoint;
#[doc = "LEDC_LSCH3_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch3_duty](lsch3_duty) module"]
pub type LSCH3_DUTY = crate::Reg<u32, _LSCH3_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH3_DUTY;
#[doc = "`read()` method returns [lsch3_duty::R](lsch3_duty::R) reader structure"]
impl crate::Readable for LSCH3_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch3_duty::W](lsch3_duty::W) writer structure"]
impl crate::Writable for LSCH3_DUTY {}
#[doc = "LEDC_LSCH3_DUTY"]
pub mod lsch3_duty;
#[doc = "LEDC_LSCH3_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch3_conf1](lsch3_conf1) module"]
pub type LSCH3_CONF1 = crate::Reg<u32, _LSCH3_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH3_CONF1;
#[doc = "`read()` method returns [lsch3_conf1::R](lsch3_conf1::R) reader structure"]
impl crate::Readable for LSCH3_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch3_conf1::W](lsch3_conf1::W) writer structure"]
impl crate::Writable for LSCH3_CONF1 {}
#[doc = "LEDC_LSCH3_CONF1"]
pub mod lsch3_conf1;
#[doc = "LEDC_LSCH3_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch3_duty_r](lsch3_duty_r) module"]
pub type LSCH3_DUTY_R = crate::Reg<u32, _LSCH3_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH3_DUTY_R;
#[doc = "`read()` method returns [lsch3_duty_r::R](lsch3_duty_r::R) reader structure"]
impl crate::Readable for LSCH3_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch3_duty_r::W](lsch3_duty_r::W) writer structure"]
impl crate::Writable for LSCH3_DUTY_R {}
#[doc = "LEDC_LSCH3_DUTY_R"]
pub mod lsch3_duty_r;
#[doc = "LEDC_LSCH4_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch4_conf0](lsch4_conf0) module"]
pub type LSCH4_CONF0 = crate::Reg<u32, _LSCH4_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH4_CONF0;
#[doc = "`read()` method returns [lsch4_conf0::R](lsch4_conf0::R) reader structure"]
impl crate::Readable for LSCH4_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch4_conf0::W](lsch4_conf0::W) writer structure"]
impl crate::Writable for LSCH4_CONF0 {}
#[doc = "LEDC_LSCH4_CONF0"]
pub mod lsch4_conf0;
#[doc = "LEDC_LSCH4_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch4_hpoint](lsch4_hpoint) module"]
pub type LSCH4_HPOINT = crate::Reg<u32, _LSCH4_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH4_HPOINT;
#[doc = "`read()` method returns [lsch4_hpoint::R](lsch4_hpoint::R) reader structure"]
impl crate::Readable for LSCH4_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch4_hpoint::W](lsch4_hpoint::W) writer structure"]
impl crate::Writable for LSCH4_HPOINT {}
#[doc = "LEDC_LSCH4_HPOINT"]
pub mod lsch4_hpoint;
#[doc = "LEDC_LSCH4_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch4_duty](lsch4_duty) module"]
pub type LSCH4_DUTY = crate::Reg<u32, _LSCH4_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH4_DUTY;
#[doc = "`read()` method returns [lsch4_duty::R](lsch4_duty::R) reader structure"]
impl crate::Readable for LSCH4_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch4_duty::W](lsch4_duty::W) writer structure"]
impl crate::Writable for LSCH4_DUTY {}
#[doc = "LEDC_LSCH4_DUTY"]
pub mod lsch4_duty;
#[doc = "LEDC_LSCH4_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch4_conf1](lsch4_conf1) module"]
pub type LSCH4_CONF1 = crate::Reg<u32, _LSCH4_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH4_CONF1;
#[doc = "`read()` method returns [lsch4_conf1::R](lsch4_conf1::R) reader structure"]
impl crate::Readable for LSCH4_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch4_conf1::W](lsch4_conf1::W) writer structure"]
impl crate::Writable for LSCH4_CONF1 {}
#[doc = "LEDC_LSCH4_CONF1"]
pub mod lsch4_conf1;
#[doc = "LEDC_LSCH4_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch4_duty_r](lsch4_duty_r) module"]
pub type LSCH4_DUTY_R = crate::Reg<u32, _LSCH4_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH4_DUTY_R;
#[doc = "`read()` method returns [lsch4_duty_r::R](lsch4_duty_r::R) reader structure"]
impl crate::Readable for LSCH4_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch4_duty_r::W](lsch4_duty_r::W) writer structure"]
impl crate::Writable for LSCH4_DUTY_R {}
#[doc = "LEDC_LSCH4_DUTY_R"]
pub mod lsch4_duty_r;
#[doc = "LEDC_LSCH5_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch5_conf0](lsch5_conf0) module"]
pub type LSCH5_CONF0 = crate::Reg<u32, _LSCH5_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH5_CONF0;
#[doc = "`read()` method returns [lsch5_conf0::R](lsch5_conf0::R) reader structure"]
impl crate::Readable for LSCH5_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch5_conf0::W](lsch5_conf0::W) writer structure"]
impl crate::Writable for LSCH5_CONF0 {}
#[doc = "LEDC_LSCH5_CONF0"]
pub mod lsch5_conf0;
#[doc = "LEDC_LSCH5_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch5_hpoint](lsch5_hpoint) module"]
pub type LSCH5_HPOINT = crate::Reg<u32, _LSCH5_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH5_HPOINT;
#[doc = "`read()` method returns [lsch5_hpoint::R](lsch5_hpoint::R) reader structure"]
impl crate::Readable for LSCH5_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch5_hpoint::W](lsch5_hpoint::W) writer structure"]
impl crate::Writable for LSCH5_HPOINT {}
#[doc = "LEDC_LSCH5_HPOINT"]
pub mod lsch5_hpoint;
#[doc = "LEDC_LSCH5_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch5_duty](lsch5_duty) module"]
pub type LSCH5_DUTY = crate::Reg<u32, _LSCH5_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH5_DUTY;
#[doc = "`read()` method returns [lsch5_duty::R](lsch5_duty::R) reader structure"]
impl crate::Readable for LSCH5_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch5_duty::W](lsch5_duty::W) writer structure"]
impl crate::Writable for LSCH5_DUTY {}
#[doc = "LEDC_LSCH5_DUTY"]
pub mod lsch5_duty;
#[doc = "LEDC_LSCH5_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch5_conf1](lsch5_conf1) module"]
pub type LSCH5_CONF1 = crate::Reg<u32, _LSCH5_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH5_CONF1;
#[doc = "`read()` method returns [lsch5_conf1::R](lsch5_conf1::R) reader structure"]
impl crate::Readable for LSCH5_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch5_conf1::W](lsch5_conf1::W) writer structure"]
impl crate::Writable for LSCH5_CONF1 {}
#[doc = "LEDC_LSCH5_CONF1"]
pub mod lsch5_conf1;
#[doc = "LEDC_LSCH5_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch5_duty_r](lsch5_duty_r) module"]
pub type LSCH5_DUTY_R = crate::Reg<u32, _LSCH5_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH5_DUTY_R;
#[doc = "`read()` method returns [lsch5_duty_r::R](lsch5_duty_r::R) reader structure"]
impl crate::Readable for LSCH5_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch5_duty_r::W](lsch5_duty_r::W) writer structure"]
impl crate::Writable for LSCH5_DUTY_R {}
#[doc = "LEDC_LSCH5_DUTY_R"]
pub mod lsch5_duty_r;
#[doc = "LEDC_LSCH6_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch6_conf0](lsch6_conf0) module"]
pub type LSCH6_CONF0 = crate::Reg<u32, _LSCH6_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH6_CONF0;
#[doc = "`read()` method returns [lsch6_conf0::R](lsch6_conf0::R) reader structure"]
impl crate::Readable for LSCH6_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch6_conf0::W](lsch6_conf0::W) writer structure"]
impl crate::Writable for LSCH6_CONF0 {}
#[doc = "LEDC_LSCH6_CONF0"]
pub mod lsch6_conf0;
#[doc = "LEDC_LSCH6_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch6_hpoint](lsch6_hpoint) module"]
pub type LSCH6_HPOINT = crate::Reg<u32, _LSCH6_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH6_HPOINT;
#[doc = "`read()` method returns [lsch6_hpoint::R](lsch6_hpoint::R) reader structure"]
impl crate::Readable for LSCH6_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch6_hpoint::W](lsch6_hpoint::W) writer structure"]
impl crate::Writable for LSCH6_HPOINT {}
#[doc = "LEDC_LSCH6_HPOINT"]
pub mod lsch6_hpoint;
#[doc = "LEDC_LSCH6_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch6_duty](lsch6_duty) module"]
pub type LSCH6_DUTY = crate::Reg<u32, _LSCH6_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH6_DUTY;
#[doc = "`read()` method returns [lsch6_duty::R](lsch6_duty::R) reader structure"]
impl crate::Readable for LSCH6_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch6_duty::W](lsch6_duty::W) writer structure"]
impl crate::Writable for LSCH6_DUTY {}
#[doc = "LEDC_LSCH6_DUTY"]
pub mod lsch6_duty;
#[doc = "LEDC_LSCH6_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch6_conf1](lsch6_conf1) module"]
pub type LSCH6_CONF1 = crate::Reg<u32, _LSCH6_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH6_CONF1;
#[doc = "`read()` method returns [lsch6_conf1::R](lsch6_conf1::R) reader structure"]
impl crate::Readable for LSCH6_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch6_conf1::W](lsch6_conf1::W) writer structure"]
impl crate::Writable for LSCH6_CONF1 {}
#[doc = "LEDC_LSCH6_CONF1"]
pub mod lsch6_conf1;
#[doc = "LEDC_LSCH6_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch6_duty_r](lsch6_duty_r) module"]
pub type LSCH6_DUTY_R = crate::Reg<u32, _LSCH6_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH6_DUTY_R;
#[doc = "`read()` method returns [lsch6_duty_r::R](lsch6_duty_r::R) reader structure"]
impl crate::Readable for LSCH6_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch6_duty_r::W](lsch6_duty_r::W) writer structure"]
impl crate::Writable for LSCH6_DUTY_R {}
#[doc = "LEDC_LSCH6_DUTY_R"]
pub mod lsch6_duty_r;
#[doc = "LEDC_LSCH7_CONF0\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch7_conf0](lsch7_conf0) module"]
pub type LSCH7_CONF0 = crate::Reg<u32, _LSCH7_CONF0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH7_CONF0;
#[doc = "`read()` method returns [lsch7_conf0::R](lsch7_conf0::R) reader structure"]
impl crate::Readable for LSCH7_CONF0 {}
#[doc = "`write(|w| ..)` method takes [lsch7_conf0::W](lsch7_conf0::W) writer structure"]
impl crate::Writable for LSCH7_CONF0 {}
#[doc = "LEDC_LSCH7_CONF0"]
pub mod lsch7_conf0;
#[doc = "LEDC_LSCH7_HPOINT\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch7_hpoint](lsch7_hpoint) module"]
pub type LSCH7_HPOINT = crate::Reg<u32, _LSCH7_HPOINT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH7_HPOINT;
#[doc = "`read()` method returns [lsch7_hpoint::R](lsch7_hpoint::R) reader structure"]
impl crate::Readable for LSCH7_HPOINT {}
#[doc = "`write(|w| ..)` method takes [lsch7_hpoint::W](lsch7_hpoint::W) writer structure"]
impl crate::Writable for LSCH7_HPOINT {}
#[doc = "LEDC_LSCH7_HPOINT"]
pub mod lsch7_hpoint;
#[doc = "LEDC_LSCH7_DUTY\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch7_duty](lsch7_duty) module"]
pub type LSCH7_DUTY = crate::Reg<u32, _LSCH7_DUTY>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH7_DUTY;
#[doc = "`read()` method returns [lsch7_duty::R](lsch7_duty::R) reader structure"]
impl crate::Readable for LSCH7_DUTY {}
#[doc = "`write(|w| ..)` method takes [lsch7_duty::W](lsch7_duty::W) writer structure"]
impl crate::Writable for LSCH7_DUTY {}
#[doc = "LEDC_LSCH7_DUTY"]
pub mod lsch7_duty;
#[doc = "LEDC_LSCH7_CONF1\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch7_conf1](lsch7_conf1) module"]
pub type LSCH7_CONF1 = crate::Reg<u32, _LSCH7_CONF1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH7_CONF1;
#[doc = "`read()` method returns [lsch7_conf1::R](lsch7_conf1::R) reader structure"]
impl crate::Readable for LSCH7_CONF1 {}
#[doc = "`write(|w| ..)` method takes [lsch7_conf1::W](lsch7_conf1::W) writer structure"]
impl crate::Writable for LSCH7_CONF1 {}
#[doc = "LEDC_LSCH7_CONF1"]
pub mod lsch7_conf1;
#[doc = "LEDC_LSCH7_DUTY_R\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lsch7_duty_r](lsch7_duty_r) module"]
pub type LSCH7_DUTY_R = crate::Reg<u32, _LSCH7_DUTY_R>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSCH7_DUTY_R;
#[doc = "`read()` method returns [lsch7_duty_r::R](lsch7_duty_r::R) reader structure"]
impl crate::Readable for LSCH7_DUTY_R {}
#[doc = "`write(|w| ..)` method takes [lsch7_duty_r::W](lsch7_duty_r::W) writer structure"]
impl crate::Writable for LSCH7_DUTY_R {}
#[doc = "LEDC_LSCH7_DUTY_R"]
pub mod lsch7_duty_r;
#[doc = "LEDC_HSTIMER0_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer0_conf](hstimer0_conf) module"]
pub type HSTIMER0_CONF = crate::Reg<u32, _HSTIMER0_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER0_CONF;
#[doc = "`read()` method returns [hstimer0_conf::R](hstimer0_conf::R) reader structure"]
impl crate::Readable for HSTIMER0_CONF {}
#[doc = "`write(|w| ..)` method takes [hstimer0_conf::W](hstimer0_conf::W) writer structure"]
impl crate::Writable for HSTIMER0_CONF {}
#[doc = "LEDC_HSTIMER0_CONF"]
pub mod hstimer0_conf;
#[doc = "LEDC_HSTIMER0_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer0_value](hstimer0_value) module"]
pub type HSTIMER0_VALUE = crate::Reg<u32, _HSTIMER0_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER0_VALUE;
#[doc = "`read()` method returns [hstimer0_value::R](hstimer0_value::R) reader structure"]
impl crate::Readable for HSTIMER0_VALUE {}
#[doc = "`write(|w| ..)` method takes [hstimer0_value::W](hstimer0_value::W) writer structure"]
impl crate::Writable for HSTIMER0_VALUE {}
#[doc = "LEDC_HSTIMER0_VALUE"]
pub mod hstimer0_value;
#[doc = "LEDC_HSTIMER1_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer1_conf](hstimer1_conf) module"]
pub type HSTIMER1_CONF = crate::Reg<u32, _HSTIMER1_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER1_CONF;
#[doc = "`read()` method returns [hstimer1_conf::R](hstimer1_conf::R) reader structure"]
impl crate::Readable for HSTIMER1_CONF {}
#[doc = "`write(|w| ..)` method takes [hstimer1_conf::W](hstimer1_conf::W) writer structure"]
impl crate::Writable for HSTIMER1_CONF {}
#[doc = "LEDC_HSTIMER1_CONF"]
pub mod hstimer1_conf;
#[doc = "LEDC_HSTIMER1_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer1_value](hstimer1_value) module"]
pub type HSTIMER1_VALUE = crate::Reg<u32, _HSTIMER1_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER1_VALUE;
#[doc = "`read()` method returns [hstimer1_value::R](hstimer1_value::R) reader structure"]
impl crate::Readable for HSTIMER1_VALUE {}
#[doc = "`write(|w| ..)` method takes [hstimer1_value::W](hstimer1_value::W) writer structure"]
impl crate::Writable for HSTIMER1_VALUE {}
#[doc = "LEDC_HSTIMER1_VALUE"]
pub mod hstimer1_value;
#[doc = "LEDC_HSTIMER2_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer2_conf](hstimer2_conf) module"]
pub type HSTIMER2_CONF = crate::Reg<u32, _HSTIMER2_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER2_CONF;
#[doc = "`read()` method returns [hstimer2_conf::R](hstimer2_conf::R) reader structure"]
impl crate::Readable for HSTIMER2_CONF {}
#[doc = "`write(|w| ..)` method takes [hstimer2_conf::W](hstimer2_conf::W) writer structure"]
impl crate::Writable for HSTIMER2_CONF {}
#[doc = "LEDC_HSTIMER2_CONF"]
pub mod hstimer2_conf;
#[doc = "LEDC_HSTIMER2_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer2_value](hstimer2_value) module"]
pub type HSTIMER2_VALUE = crate::Reg<u32, _HSTIMER2_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER2_VALUE;
#[doc = "`read()` method returns [hstimer2_value::R](hstimer2_value::R) reader structure"]
impl crate::Readable for HSTIMER2_VALUE {}
#[doc = "`write(|w| ..)` method takes [hstimer2_value::W](hstimer2_value::W) writer structure"]
impl crate::Writable for HSTIMER2_VALUE {}
#[doc = "LEDC_HSTIMER2_VALUE"]
pub mod hstimer2_value;
#[doc = "LEDC_HSTIMER3_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer3_conf](hstimer3_conf) module"]
pub type HSTIMER3_CONF = crate::Reg<u32, _HSTIMER3_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER3_CONF;
#[doc = "`read()` method returns [hstimer3_conf::R](hstimer3_conf::R) reader structure"]
impl crate::Readable for HSTIMER3_CONF {}
#[doc = "`write(|w| ..)` method takes [hstimer3_conf::W](hstimer3_conf::W) writer structure"]
impl crate::Writable for HSTIMER3_CONF {}
#[doc = "LEDC_HSTIMER3_CONF"]
pub mod hstimer3_conf;
#[doc = "LEDC_HSTIMER3_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [hstimer3_value](hstimer3_value) module"]
pub type HSTIMER3_VALUE = crate::Reg<u32, _HSTIMER3_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HSTIMER3_VALUE;
#[doc = "`read()` method returns [hstimer3_value::R](hstimer3_value::R) reader structure"]
impl crate::Readable for HSTIMER3_VALUE {}
#[doc = "`write(|w| ..)` method takes [hstimer3_value::W](hstimer3_value::W) writer structure"]
impl crate::Writable for HSTIMER3_VALUE {}
#[doc = "LEDC_HSTIMER3_VALUE"]
pub mod hstimer3_value;
#[doc = "LEDC_LSTIMER0_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer0_conf](lstimer0_conf) module"]
pub type LSTIMER0_CONF = crate::Reg<u32, _LSTIMER0_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER0_CONF;
#[doc = "`read()` method returns [lstimer0_conf::R](lstimer0_conf::R) reader structure"]
impl crate::Readable for LSTIMER0_CONF {}
#[doc = "`write(|w| ..)` method takes [lstimer0_conf::W](lstimer0_conf::W) writer structure"]
impl crate::Writable for LSTIMER0_CONF {}
#[doc = "LEDC_LSTIMER0_CONF"]
pub mod lstimer0_conf;
#[doc = "LEDC_LSTIMER0_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer0_value](lstimer0_value) module"]
pub type LSTIMER0_VALUE = crate::Reg<u32, _LSTIMER0_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER0_VALUE;
#[doc = "`read()` method returns [lstimer0_value::R](lstimer0_value::R) reader structure"]
impl crate::Readable for LSTIMER0_VALUE {}
#[doc = "`write(|w| ..)` method takes [lstimer0_value::W](lstimer0_value::W) writer structure"]
impl crate::Writable for LSTIMER0_VALUE {}
#[doc = "LEDC_LSTIMER0_VALUE"]
pub mod lstimer0_value;
#[doc = "LEDC_LSTIMER1_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer1_conf](lstimer1_conf) module"]
pub type LSTIMER1_CONF = crate::Reg<u32, _LSTIMER1_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER1_CONF;
#[doc = "`read()` method returns [lstimer1_conf::R](lstimer1_conf::R) reader structure"]
impl crate::Readable for LSTIMER1_CONF {}
#[doc = "`write(|w| ..)` method takes [lstimer1_conf::W](lstimer1_conf::W) writer structure"]
impl crate::Writable for LSTIMER1_CONF {}
#[doc = "LEDC_LSTIMER1_CONF"]
pub mod lstimer1_conf;
#[doc = "LEDC_LSTIMER1_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer1_value](lstimer1_value) module"]
pub type LSTIMER1_VALUE = crate::Reg<u32, _LSTIMER1_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER1_VALUE;
#[doc = "`read()` method returns [lstimer1_value::R](lstimer1_value::R) reader structure"]
impl crate::Readable for LSTIMER1_VALUE {}
#[doc = "`write(|w| ..)` method takes [lstimer1_value::W](lstimer1_value::W) writer structure"]
impl crate::Writable for LSTIMER1_VALUE {}
#[doc = "LEDC_LSTIMER1_VALUE"]
pub mod lstimer1_value;
#[doc = "LEDC_LSTIMER2_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer2_conf](lstimer2_conf) module"]
pub type LSTIMER2_CONF = crate::Reg<u32, _LSTIMER2_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER2_CONF;
#[doc = "`read()` method returns [lstimer2_conf::R](lstimer2_conf::R) reader structure"]
impl crate::Readable for LSTIMER2_CONF {}
#[doc = "`write(|w| ..)` method takes [lstimer2_conf::W](lstimer2_conf::W) writer structure"]
impl crate::Writable for LSTIMER2_CONF {}
#[doc = "LEDC_LSTIMER2_CONF"]
pub mod lstimer2_conf;
#[doc = "LEDC_LSTIMER2_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer2_value](lstimer2_value) module"]
pub type LSTIMER2_VALUE = crate::Reg<u32, _LSTIMER2_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER2_VALUE;
#[doc = "`read()` method returns [lstimer2_value::R](lstimer2_value::R) reader structure"]
impl crate::Readable for LSTIMER2_VALUE {}
#[doc = "`write(|w| ..)` method takes [lstimer2_value::W](lstimer2_value::W) writer structure"]
impl crate::Writable for LSTIMER2_VALUE {}
#[doc = "LEDC_LSTIMER2_VALUE"]
pub mod lstimer2_value;
#[doc = "LEDC_LSTIMER3_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer3_conf](lstimer3_conf) module"]
pub type LSTIMER3_CONF = crate::Reg<u32, _LSTIMER3_CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER3_CONF;
#[doc = "`read()` method returns [lstimer3_conf::R](lstimer3_conf::R) reader structure"]
impl crate::Readable for LSTIMER3_CONF {}
#[doc = "`write(|w| ..)` method takes [lstimer3_conf::W](lstimer3_conf::W) writer structure"]
impl crate::Writable for LSTIMER3_CONF {}
#[doc = "LEDC_LSTIMER3_CONF"]
pub mod lstimer3_conf;
#[doc = "LEDC_LSTIMER3_VALUE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [lstimer3_value](lstimer3_value) module"]
pub type LSTIMER3_VALUE = crate::Reg<u32, _LSTIMER3_VALUE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LSTIMER3_VALUE;
#[doc = "`read()` method returns [lstimer3_value::R](lstimer3_value::R) reader structure"]
impl crate::Readable for LSTIMER3_VALUE {}
#[doc = "`write(|w| ..)` method takes [lstimer3_value::W](lstimer3_value::W) writer structure"]
impl crate::Writable for LSTIMER3_VALUE {}
#[doc = "LEDC_LSTIMER3_VALUE"]
pub mod lstimer3_value;
#[doc = "LEDC_INT_RAW\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [int_raw](int_raw) module"]
pub type INT_RAW = crate::Reg<u32, _INT_RAW>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INT_RAW;
#[doc = "`read()` method returns [int_raw::R](int_raw::R) reader structure"]
impl crate::Readable for INT_RAW {}
#[doc = "`write(|w| ..)` method takes [int_raw::W](int_raw::W) writer structure"]
impl crate::Writable for INT_RAW {}
#[doc = "LEDC_INT_RAW"]
pub mod int_raw;
#[doc = "LEDC_INT_ST\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [int_st](int_st) module"]
pub type INT_ST = crate::Reg<u32, _INT_ST>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INT_ST;
#[doc = "`read()` method returns [int_st::R](int_st::R) reader structure"]
impl crate::Readable for INT_ST {}
#[doc = "`write(|w| ..)` method takes [int_st::W](int_st::W) writer structure"]
impl crate::Writable for INT_ST {}
#[doc = "LEDC_INT_ST"]
pub mod int_st;
#[doc = "LEDC_INT_ENA\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [int_ena](int_ena) module"]
pub type INT_ENA = crate::Reg<u32, _INT_ENA>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INT_ENA;
#[doc = "`read()` method returns [int_ena::R](int_ena::R) reader structure"]
impl crate::Readable for INT_ENA {}
#[doc = "`write(|w| ..)` method takes [int_ena::W](int_ena::W) writer structure"]
impl crate::Writable for INT_ENA {}
#[doc = "LEDC_INT_ENA"]
pub mod int_ena;
#[doc = "LEDC_INT_CLR\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [int_clr](int_clr) module"]
pub type INT_CLR = crate::Reg<u32, _INT_CLR>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INT_CLR;
#[doc = "`read()` method returns [int_clr::R](int_clr::R) reader structure"]
impl crate::Readable for INT_CLR {}
#[doc = "`write(|w| ..)` method takes [int_clr::W](int_clr::W) writer structure"]
impl crate::Writable for INT_CLR {}
#[doc = "LEDC_INT_CLR"]
pub mod int_clr;
#[doc = "LEDC_CONF\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [conf](conf) module"]
pub type CONF = crate::Reg<u32, _CONF>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CONF;
#[doc = "`read()` method returns [conf::R](conf::R) reader structure"]
impl crate::Readable for CONF {}
#[doc = "`write(|w| ..)` method takes [conf::W](conf::W) writer structure"]
impl crate::Writable for CONF {}
#[doc = "LEDC_CONF"]
pub mod conf;
#[doc = "LEDC_DATE\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [date](date) module"]
pub type DATE = crate::Reg<u32, _DATE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DATE;
#[doc = "`read()` method returns [date::R](date::R) reader structure"]
impl crate::Readable for DATE {}
#[doc = "`write(|w| ..)` method takes [date::W](date::W) writer structure"]
impl crate::Writable for DATE {}
#[doc = "LEDC_DATE"]
pub mod date;