hc32f448_driver_sys 0.1.1

Provide driver function binding for HDSC's HC32F448 MCU.
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
/* automatically generated by rust-bindgen 0.72.1 */

#[repr(C)]
#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct __BindgenBitfieldUnit<Storage> {
    storage: Storage,
}
impl<Storage> __BindgenBitfieldUnit<Storage> {
    #[inline]
    pub const fn new(storage: Storage) -> Self {
        Self { storage }
    }
}
impl<Storage> __BindgenBitfieldUnit<Storage>
where
    Storage: AsRef<[u8]> + AsMut<[u8]>,
{
    #[inline]
    fn extract_bit(byte: u8, index: usize) -> bool {
        let bit_index = if cfg!(target_endian = "big") {
            7 - (index % 8)
        } else {
            index % 8
        };
        let mask = 1 << bit_index;
        byte & mask == mask
    }
    #[inline]
    pub fn get_bit(&self, index: usize) -> bool {
        debug_assert!(index / 8 < self.storage.as_ref().len());
        let byte_index = index / 8;
        let byte = self.storage.as_ref()[byte_index];
        Self::extract_bit(byte, index)
    }
    #[inline]
    pub unsafe fn raw_get_bit(this: *const Self, index: usize) -> bool {
        debug_assert!(index / 8 < core::mem::size_of::<Storage>());
        let byte_index = index / 8;
        let byte = unsafe {
            *(core::ptr::addr_of!((*this).storage) as *const u8).offset(byte_index as isize)
        };
        Self::extract_bit(byte, index)
    }
    #[inline]
    fn change_bit(byte: u8, index: usize, val: bool) -> u8 {
        let bit_index = if cfg!(target_endian = "big") {
            7 - (index % 8)
        } else {
            index % 8
        };
        let mask = 1 << bit_index;
        if val {
            byte | mask
        } else {
            byte & !mask
        }
    }
    #[inline]
    pub fn set_bit(&mut self, index: usize, val: bool) {
        debug_assert!(index / 8 < self.storage.as_ref().len());
        let byte_index = index / 8;
        let byte = &mut self.storage.as_mut()[byte_index];
        *byte = Self::change_bit(*byte, index, val);
    }
    #[inline]
    pub unsafe fn raw_set_bit(this: *mut Self, index: usize, val: bool) {
        debug_assert!(index / 8 < core::mem::size_of::<Storage>());
        let byte_index = index / 8;
        let byte = unsafe {
            (core::ptr::addr_of_mut!((*this).storage) as *mut u8).offset(byte_index as isize)
        };
        unsafe { *byte = Self::change_bit(*byte, index, val) };
    }
    #[inline]
    pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
        let mut val = 0;
        for i in 0..(bit_width as usize) {
            if self.get_bit(i + bit_offset) {
                let index = if cfg!(target_endian = "big") {
                    bit_width as usize - 1 - i
                } else {
                    i
                };
                val |= 1 << index;
            }
        }
        val
    }
    #[inline]
    pub unsafe fn raw_get(this: *const Self, bit_offset: usize, bit_width: u8) -> u64 {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
        let mut val = 0;
        for i in 0..(bit_width as usize) {
            if unsafe { Self::raw_get_bit(this, i + bit_offset) } {
                let index = if cfg!(target_endian = "big") {
                    bit_width as usize - 1 - i
                } else {
                    i
                };
                val |= 1 << index;
            }
        }
        val
    }
    #[inline]
    pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
        for i in 0..(bit_width as usize) {
            let mask = 1 << i;
            let val_bit_is_set = val & mask == mask;
            let index = if cfg!(target_endian = "big") {
                bit_width as usize - 1 - i
            } else {
                i
            };
            self.set_bit(index + bit_offset, val_bit_is_set);
        }
    }
    #[inline]
    pub unsafe fn raw_set(this: *mut Self, bit_offset: usize, bit_width: u8, val: u64) {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
        for i in 0..(bit_width as usize) {
            let mask = 1 << i;
            let val_bit_is_set = val & mask == mask;
            let index = if cfg!(target_endian = "big") {
                bit_width as usize - 1 - i
            } else {
                i
            };
            unsafe { Self::raw_set_bit(this, index + bit_offset, val_bit_is_set) };
        }
    }
}
pub const CLK_PLL_OFF: u32 = 1;
pub const CLK_PLL_ON: u32 = 0;
pub const CLK_PLL_SRC_XTAL: u32 = 0;
pub const CLK_PLL_SRC_HRC: u32 = 1;
pub const CLK_XTAL_OFF: u32 = 1;
pub const CLK_XTAL_ON: u32 = 0;
pub const CLK_XTAL_DRV_HIGH: u32 = 0;
pub const CLK_XTAL_DRV_MID: u32 = 16;
pub const CLK_XTAL_DRV_LOW: u32 = 32;
pub const CLK_XTAL_DRV_ULOW: u32 = 48;
pub const CLK_XTAL_MD_OSC: u32 = 0;
pub const CLK_XTAL_MD_EXCLK: u32 = 64;
pub const CLK_XTAL_STB_133US: u32 = 1;
pub const CLK_XTAL_STB_255US: u32 = 2;
pub const CLK_XTAL_STB_499US: u32 = 3;
pub const CLK_XTAL_STB_988US: u32 = 4;
pub const CLK_XTAL_STB_2MS: u32 = 5;
pub const CLK_XTAL_STB_4MS: u32 = 6;
pub const CLK_XTAL_STB_8MS: u32 = 7;
pub const CLK_XTAL_STB_16MS: u32 = 8;
pub const CLK_XTAL_STB_31MS: u32 = 9;
pub const CLK_XTALDIV_OFF: u32 = 0;
pub const CLK_XTALDIV_ON: u32 = 1;
pub const CLK_XTALSTD_OFF: u32 = 0;
pub const CLK_XTALSTD_ON: u32 = 128;
pub const CLK_XTALSTD_EXP_TYPE_NONE: u32 = 0;
pub const CLK_XTALSTD_EXP_TYPE_RST: u32 = 6;
pub const CLK_XTALSTD_EXP_TYPE_INT: u32 = 1;
pub const CLK_XTAL32_OFF: u32 = 1;
pub const CLK_XTAL32_ON: u32 = 0;
pub const CLK_XTAL32_DRV_MID: u32 = 0;
pub const CLK_XTAL32_DRV_HIGH: u32 = 1;
pub const CLK_XTAL32_FILTER_ALL_MD: u32 = 0;
pub const CLK_XTAL32_FILTER_RUN_MD: u32 = 1;
pub const CLK_XTAL32_FILTER_OFF: u32 = 3;
pub const CLK_HRC_OFF: u32 = 1;
pub const CLK_HRC_ON: u32 = 0;
pub const CLK_STB_FLAG_HRC: u32 = 1;
pub const CLK_STB_FLAG_XTAL: u32 = 8;
pub const CLK_STB_FLAG_PLL: u32 = 32;
pub const CLK_STB_FLAG_MASK: u32 = 41;
pub const CLK_SYSCLK_SRC_HRC: u32 = 0;
pub const CLK_SYSCLK_SRC_MRC: u32 = 1;
pub const CLK_SYSCLK_SRC_LRC: u32 = 2;
pub const CLK_SYSCLK_SRC_XTAL: u32 = 3;
pub const CLK_SYSCLK_SRC_XTAL32: u32 = 4;
pub const CLK_SYSCLK_SRC_PLL: u32 = 5;
pub const CLK_BUS_PCLK0: u32 = 7;
pub const CLK_BUS_PCLK1: u32 = 112;
pub const CLK_BUS_PCLK2: u32 = 1792;
pub const CLK_BUS_PCLK3: u32 = 28672;
pub const CLK_BUS_PCLK4: u32 = 458752;
pub const CLK_BUS_EXCLK: u32 = 7340032;
pub const CLK_BUS_HCLK: u32 = 117440512;
pub const CLK_BUS_CLK_ALL: u32 = 125269879;
pub const CLK_SYSCLK_DIV1: u32 = 0;
pub const CLK_SYSCLK_DIV2: u32 = 1;
pub const CLK_SYSCLK_DIV4: u32 = 2;
pub const CLK_SYSCLK_DIV8: u32 = 3;
pub const CLK_SYSCLK_DIV16: u32 = 4;
pub const CLK_SYSCLK_DIV32: u32 = 5;
pub const CLK_SYSCLK_DIV64: u32 = 6;
pub const CLK_HCLK_DIV1: u32 = 0;
pub const CLK_HCLK_DIV2: u32 = 16777216;
pub const CLK_HCLK_DIV4: u32 = 33554432;
pub const CLK_HCLK_DIV8: u32 = 50331648;
pub const CLK_HCLK_DIV16: u32 = 67108864;
pub const CLK_HCLK_DIV32: u32 = 83886080;
pub const CLK_HCLK_DIV64: u32 = 100663296;
pub const CLK_PCLK1_DIV1: u32 = 0;
pub const CLK_PCLK1_DIV2: u32 = 16;
pub const CLK_PCLK1_DIV4: u32 = 32;
pub const CLK_PCLK1_DIV8: u32 = 48;
pub const CLK_PCLK1_DIV16: u32 = 64;
pub const CLK_PCLK1_DIV32: u32 = 80;
pub const CLK_PCLK1_DIV64: u32 = 96;
pub const CLK_PCLK4_DIV1: u32 = 0;
pub const CLK_PCLK4_DIV2: u32 = 65536;
pub const CLK_PCLK4_DIV4: u32 = 131072;
pub const CLK_PCLK4_DIV8: u32 = 196608;
pub const CLK_PCLK4_DIV16: u32 = 262144;
pub const CLK_PCLK4_DIV32: u32 = 327680;
pub const CLK_PCLK4_DIV64: u32 = 393216;
pub const CLK_PCLK3_DIV1: u32 = 0;
pub const CLK_PCLK3_DIV2: u32 = 4096;
pub const CLK_PCLK3_DIV4: u32 = 8192;
pub const CLK_PCLK3_DIV8: u32 = 12288;
pub const CLK_PCLK3_DIV16: u32 = 16384;
pub const CLK_PCLK3_DIV32: u32 = 20480;
pub const CLK_PCLK3_DIV64: u32 = 24576;
pub const CLK_EXCLK_DIV1: u32 = 0;
pub const CLK_EXCLK_DIV2: u32 = 1048576;
pub const CLK_EXCLK_DIV4: u32 = 2097152;
pub const CLK_EXCLK_DIV8: u32 = 3145728;
pub const CLK_EXCLK_DIV16: u32 = 4194304;
pub const CLK_EXCLK_DIV32: u32 = 5242880;
pub const CLK_EXCLK_DIV64: u32 = 6291456;
pub const CLK_PCLK2_DIV1: u32 = 0;
pub const CLK_PCLK2_DIV2: u32 = 256;
pub const CLK_PCLK2_DIV4: u32 = 512;
pub const CLK_PCLK2_DIV8: u32 = 768;
pub const CLK_PCLK2_DIV16: u32 = 1024;
pub const CLK_PCLK2_DIV32: u32 = 1280;
pub const CLK_PCLK2_DIV64: u32 = 1536;
pub const CLK_PCLK0_DIV1: u32 = 0;
pub const CLK_PCLK0_DIV2: u32 = 1;
pub const CLK_PCLK0_DIV4: u32 = 2;
pub const CLK_PCLK0_DIV8: u32 = 3;
pub const CLK_PCLK0_DIV16: u32 = 4;
pub const CLK_PCLK0_DIV32: u32 = 5;
pub const CLK_PCLK0_DIV64: u32 = 6;
pub const CLK_MCANCLK_SYSCLK_DIV2: u32 = 1;
pub const CLK_MCANCLK_SYSCLK_DIV3: u32 = 2;
pub const CLK_MCANCLK_SYSCLK_DIV4: u32 = 3;
pub const CLK_MCANCLK_SYSCLK_DIV5: u32 = 4;
pub const CLK_MCANCLK_SYSCLK_DIV6: u32 = 5;
pub const CLK_MCANCLK_SYSCLK_DIV7: u32 = 6;
pub const CLK_MCANCLK_SYSCLK_DIV8: u32 = 7;
pub const CLK_MCANCLK_PLLQ: u32 = 8;
pub const CLK_MCANCLK_PLLR: u32 = 9;
pub const CLK_MCANCLK_XTAL: u32 = 13;
pub const CLK_MCAN1: u32 = 1;
pub const CLK_MCAN2: u32 = 2;
pub const CLK_PERIPHCLK_PCLK: u32 = 0;
pub const CLK_PERIPHCLK_PLLQ: u32 = 8;
pub const CLK_PERIPHCLK_PLLR: u32 = 9;
pub const CLK_TPIUCLK_DIV1: u32 = 0;
pub const CLK_TPIUCLK_DIV2: u32 = 1;
pub const CLK_TPIUCLK_DIV4: u32 = 2;
pub const CLK_MCO1: u32 = 0;
pub const CLK_MCO2: u32 = 1;
pub const CLK_MCO_SRC_HRC: u32 = 0;
pub const CLK_MCO_SRC_MRC: u32 = 1;
pub const CLK_MCO_SRC_LRC: u32 = 2;
pub const CLK_MCO_SRC_XTAL: u32 = 3;
pub const CLK_MCO_SRC_XTAL32: u32 = 4;
pub const CLK_MCO_SRC_PLLP: u32 = 6;
pub const CLK_MCO_SRC_PLLQ: u32 = 8;
pub const CLK_MCO_SRC_HCLK: u32 = 11;
pub const CLK_MCO_DIV1: u32 = 0;
pub const CLK_MCO_DIV2: u32 = 16;
pub const CLK_MCO_DIV4: u32 = 32;
pub const CLK_MCO_DIV8: u32 = 48;
pub const CLK_MCO_DIV16: u32 = 64;
pub const CLK_MCO_DIV32: u32 = 80;
pub const CLK_MCO_DIV64: u32 = 96;
pub const CLK_MCO_DIV128: u32 = 112;
pub const en_functional_state_t_DISABLE: en_functional_state_t = 0;
pub const en_functional_state_t_ENABLE: en_functional_state_t = 1;
#[doc = " @brief Functional state"]
pub type en_functional_state_t = ::core::ffi::c_uint;
pub const en_flag_status_t_RESET: en_flag_status_t = 0;
pub const en_flag_status_t_SET: en_flag_status_t = 1;
#[doc = " @brief Flag status"]
pub type en_flag_status_t = ::core::ffi::c_uint;
#[doc = " Global type definitions ('typedef')\n/\n/**\n @defgroup CLK_Global_Types CLK Global Types\n @{\n/\n/**\n @brief  CLK XTAL configuration structure definition"]
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_xtal_init_t {
    #[doc = "< The new state of the XTAL.\nThis parameter can be a value of @ref CLK_XTAL_State"]
    pub u8State: u8,
    #[doc = "< The XTAL drive ability, only valid in OSC mode.\nThis parameter can be a value of @ref CLK_XTAL_Driver"]
    pub u8Drv: u8,
    #[doc = "< The XTAL mode selection osc or exclk.\nThis parameter can be a value of @ref CLK_XTAL_Mode_Selection"]
    pub u8Mode: u8,
    #[doc = "< The XTAL stable time selection.\nThis parameter can be a value of @ref CLK_XTAL_Stable_Time_Selection"]
    pub u8StableTime: u8,
}
#[doc = " @brief  CLK XTAL divide structure definition"]
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_xtaldiv_init_t {
    #[doc = "< The new state of the XTAL divide.\nThis parameter can be a value of @ref CLK_XTALDIV_State"]
    pub u32State: u32,
    #[doc = "< The numerator of XTAL divide."]
    pub u32Num: u32,
    #[doc = "< The denominator of XTAL divide."]
    pub u32Den: u32,
}
#[doc = " @brief  CLK XTAL32 configuration structure definition"]
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_xtal32_init_t {
    #[doc = "< The new state of the XTAL32 divide.\nThis parameter can be a value of @ref CLK_XTAL32_State"]
    pub u8State: u8,
    #[doc = "< The Xtal32 drive ability setting,\nThis parameter can be a value of @ref CLK_XTAL32_Drive"]
    pub u8Drv: u8,
    #[doc = "< Xtal32 noise filter setting,\nThis parameter can be a value of@ref CLK_XTAL32_Filter_Selection"]
    pub u8Filter: u8,
}
#[doc = " @brief  CLK clock frequency configuration structure definition"]
#[repr(C)]
#[derive(Copy, Clone)]
pub struct stc_clock_scale_t {
    pub __bindgen_anon_1: stc_clock_scale_t__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union stc_clock_scale_t__bindgen_ty_1 {
    #[doc = "< clock frequency config register"]
    pub SCFGR: u32,
    pub SCFGR_f: stc_clock_scale_t__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[repr(align(4))]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_scale_t__bindgen_ty_1__bindgen_ty_1 {
    pub _bitfield_align_1: [u8; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
}
impl stc_clock_scale_t__bindgen_ty_1__bindgen_ty_1 {
    #[inline]
    pub fn PCLK0S(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_PCLK0S(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(0usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PCLK0S_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                0usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PCLK0S_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                0usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd0(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd0(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(3usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd0_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                3usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd0_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                3usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PCLK1S(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_PCLK1S(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(4usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PCLK1S_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                4usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PCLK1S_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                4usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd1(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd1(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(7usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd1_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                7usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd1_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                7usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PCLK2S(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_PCLK2S(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(8usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PCLK2S_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                8usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PCLK2S_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                8usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd2(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(11usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd2(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(11usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd2_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                11usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd2_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                11usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PCLK3S(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(12usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_PCLK3S(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(12usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PCLK3S_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                12usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PCLK3S_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                12usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd3(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(15usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd3(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(15usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd3_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                15usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd3_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                15usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PCLK4S(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(16usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_PCLK4S(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(16usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PCLK4S_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                16usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PCLK4S_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                16usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd4(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(19usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd4(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(19usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd4_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                19usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd4_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                19usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn EXCKS(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(20usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_EXCKS(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(20usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn EXCKS_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                20usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_EXCKS_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                20usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd5(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(23usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_resvd5(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(23usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd5_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                23usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd5_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                23usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn HCLKS(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(24usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_HCLKS(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(24usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn HCLKS_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                24usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_HCLKS_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                24usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd6(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(27usize, 5u8) as u32) }
    }
    #[inline]
    pub fn set_resvd6(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(27usize, 5u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd6_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                27usize,
                5u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd6_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                27usize,
                5u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn new_bitfield_1(
        PCLK0S: u32,
        resvd0: u32,
        PCLK1S: u32,
        resvd1: u32,
        PCLK2S: u32,
        resvd2: u32,
        PCLK3S: u32,
        resvd3: u32,
        PCLK4S: u32,
        resvd4: u32,
        EXCKS: u32,
        resvd5: u32,
        HCLKS: u32,
        resvd6: u32,
    ) -> __BindgenBitfieldUnit<[u8; 4usize]> {
        let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
        __bindgen_bitfield_unit.set(0usize, 3u8, {
            let PCLK0S: u32 = unsafe { ::core::mem::transmute(PCLK0S) };
            PCLK0S as u64
        });
        __bindgen_bitfield_unit.set(3usize, 1u8, {
            let resvd0: u32 = unsafe { ::core::mem::transmute(resvd0) };
            resvd0 as u64
        });
        __bindgen_bitfield_unit.set(4usize, 3u8, {
            let PCLK1S: u32 = unsafe { ::core::mem::transmute(PCLK1S) };
            PCLK1S as u64
        });
        __bindgen_bitfield_unit.set(7usize, 1u8, {
            let resvd1: u32 = unsafe { ::core::mem::transmute(resvd1) };
            resvd1 as u64
        });
        __bindgen_bitfield_unit.set(8usize, 3u8, {
            let PCLK2S: u32 = unsafe { ::core::mem::transmute(PCLK2S) };
            PCLK2S as u64
        });
        __bindgen_bitfield_unit.set(11usize, 1u8, {
            let resvd2: u32 = unsafe { ::core::mem::transmute(resvd2) };
            resvd2 as u64
        });
        __bindgen_bitfield_unit.set(12usize, 3u8, {
            let PCLK3S: u32 = unsafe { ::core::mem::transmute(PCLK3S) };
            PCLK3S as u64
        });
        __bindgen_bitfield_unit.set(15usize, 1u8, {
            let resvd3: u32 = unsafe { ::core::mem::transmute(resvd3) };
            resvd3 as u64
        });
        __bindgen_bitfield_unit.set(16usize, 3u8, {
            let PCLK4S: u32 = unsafe { ::core::mem::transmute(PCLK4S) };
            PCLK4S as u64
        });
        __bindgen_bitfield_unit.set(19usize, 1u8, {
            let resvd4: u32 = unsafe { ::core::mem::transmute(resvd4) };
            resvd4 as u64
        });
        __bindgen_bitfield_unit.set(20usize, 3u8, {
            let EXCKS: u32 = unsafe { ::core::mem::transmute(EXCKS) };
            EXCKS as u64
        });
        __bindgen_bitfield_unit.set(23usize, 1u8, {
            let resvd5: u32 = unsafe { ::core::mem::transmute(resvd5) };
            resvd5 as u64
        });
        __bindgen_bitfield_unit.set(24usize, 3u8, {
            let HCLKS: u32 = unsafe { ::core::mem::transmute(HCLKS) };
            HCLKS as u64
        });
        __bindgen_bitfield_unit.set(27usize, 5u8, {
            let resvd6: u32 = unsafe { ::core::mem::transmute(resvd6) };
            resvd6 as u64
        });
        __bindgen_bitfield_unit
    }
}
#[doc = " @brief  CLK PLL configuration structure definition"]
#[repr(C)]
#[derive(Copy, Clone)]
pub struct stc_clock_pll_init_t {
    #[doc = "< PLL new state, @ref CLK_PLL_State for details"]
    pub u8PLLState: u8,
    pub __bindgen_anon_1: stc_clock_pll_init_t__bindgen_ty_1,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union stc_clock_pll_init_t__bindgen_ty_1 {
    #[doc = "< PLL config register"]
    pub PLLCFGR: u32,
    pub PLLCFGR_f: stc_clock_pll_init_t__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[repr(align(4))]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_pll_init_t__bindgen_ty_1__bindgen_ty_1 {
    pub _bitfield_align_1: [u16; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
}
impl stc_clock_pll_init_t__bindgen_ty_1__bindgen_ty_1 {
    #[inline]
    pub fn PLLM(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 2u8) as u32) }
    }
    #[inline]
    pub fn set_PLLM(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(0usize, 2u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLM_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                0usize,
                2u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLM_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                0usize,
                2u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd0(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(2usize, 5u8) as u32) }
    }
    #[inline]
    pub fn set_resvd0(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(2usize, 5u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd0_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                2usize,
                5u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd0_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                2usize,
                5u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PLLSRC(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_PLLSRC(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(7usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLSRC_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                7usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLSRC_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                7usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PLLN(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 9u8) as u32) }
    }
    #[inline]
    pub fn set_PLLN(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(8usize, 9u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLN_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                8usize,
                9u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLN_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                8usize,
                9u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn resvd1(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(17usize, 3u8) as u32) }
    }
    #[inline]
    pub fn set_resvd1(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(17usize, 3u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn resvd1_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                17usize,
                3u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_resvd1_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                17usize,
                3u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PLLR(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(20usize, 4u8) as u32) }
    }
    #[inline]
    pub fn set_PLLR(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(20usize, 4u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLR_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                20usize,
                4u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLR_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                20usize,
                4u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PLLQ(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(24usize, 4u8) as u32) }
    }
    #[inline]
    pub fn set_PLLQ(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(24usize, 4u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLQ_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                24usize,
                4u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLQ_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                24usize,
                4u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn PLLP(&self) -> u32 {
        unsafe { ::core::mem::transmute(self._bitfield_1.get(28usize, 4u8) as u32) }
    }
    #[inline]
    pub fn set_PLLP(&mut self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            self._bitfield_1.set(28usize, 4u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn PLLP_raw(this: *const Self) -> u32 {
        unsafe {
            ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
                ::core::ptr::addr_of!((*this)._bitfield_1),
                28usize,
                4u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_PLLP_raw(this: *mut Self, val: u32) {
        unsafe {
            let val: u32 = ::core::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
                ::core::ptr::addr_of_mut!((*this)._bitfield_1),
                28usize,
                4u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn new_bitfield_1(
        PLLM: u32,
        resvd0: u32,
        PLLSRC: u32,
        PLLN: u32,
        resvd1: u32,
        PLLR: u32,
        PLLQ: u32,
        PLLP: u32,
    ) -> __BindgenBitfieldUnit<[u8; 4usize]> {
        let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
        __bindgen_bitfield_unit.set(0usize, 2u8, {
            let PLLM: u32 = unsafe { ::core::mem::transmute(PLLM) };
            PLLM as u64
        });
        __bindgen_bitfield_unit.set(2usize, 5u8, {
            let resvd0: u32 = unsafe { ::core::mem::transmute(resvd0) };
            resvd0 as u64
        });
        __bindgen_bitfield_unit.set(7usize, 1u8, {
            let PLLSRC: u32 = unsafe { ::core::mem::transmute(PLLSRC) };
            PLLSRC as u64
        });
        __bindgen_bitfield_unit.set(8usize, 9u8, {
            let PLLN: u32 = unsafe { ::core::mem::transmute(PLLN) };
            PLLN as u64
        });
        __bindgen_bitfield_unit.set(17usize, 3u8, {
            let resvd1: u32 = unsafe { ::core::mem::transmute(resvd1) };
            resvd1 as u64
        });
        __bindgen_bitfield_unit.set(20usize, 4u8, {
            let PLLR: u32 = unsafe { ::core::mem::transmute(PLLR) };
            PLLR as u64
        });
        __bindgen_bitfield_unit.set(24usize, 4u8, {
            let PLLQ: u32 = unsafe { ::core::mem::transmute(PLLQ) };
            PLLQ as u64
        });
        __bindgen_bitfield_unit.set(28usize, 4u8, {
            let PLLP: u32 = unsafe { ::core::mem::transmute(PLLP) };
            PLLP as u64
        });
        __bindgen_bitfield_unit
    }
}
#[doc = " @brief  CLK bus frequency structure definition"]
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_clock_freq_t {
    #[doc = "< System clock frequency."]
    pub u32SysclkFreq: u32,
    #[doc = "< Hclk frequency."]
    pub u32HclkFreq: u32,
    #[doc = "< Pclk0 frequency."]
    pub u32Pclk0Freq: u32,
    #[doc = "< Pclk1 frequency."]
    pub u32Pclk1Freq: u32,
    #[doc = "< Pclk2 frequency."]
    pub u32Pclk2Freq: u32,
    #[doc = "< Pclk3 frequency."]
    pub u32Pclk3Freq: u32,
    #[doc = "< Pclk4 frequency."]
    pub u32Pclk4Freq: u32,
    #[doc = "< Exclk frequency."]
    pub u32ExclkFreq: u32,
}
#[doc = " @brief  CLK PLL clock frequency structure definition"]
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct stc_pll_clock_freq_t {
    #[doc = "< PLL vcin clock frequency."]
    pub u32PllVcin: u32,
    #[doc = "< PLL vco clock frequency."]
    pub u32PllVco: u32,
    #[doc = "< PLLp clock frequency."]
    pub u32PllP: u32,
    #[doc = "< PLLq clock frequency."]
    pub u32PllQ: u32,
    #[doc = "< PLLr clock frequency."]
    pub u32PllR: u32,
}
unsafe extern "C" {
    #[doc = "Global function prototypes (definition in C source)\n/\n/**\n @addtogroup CLK_Global_Functions\n @{"]
    pub fn CLK_HrcCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_MrcCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_LrcCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_HrcTrim(i8TrimVal: i8);
    pub fn CLK_MrcTrim(i8TrimVal: i8);
    pub fn CLK_LrcTrim(i8TrimVal: i8);
    pub fn CLK_XtalStructInit(pstcXtalInit: *mut stc_clock_xtal_init_t) -> i32;
    pub fn CLK_XtalInit(pstcXtalInit: *const stc_clock_xtal_init_t) -> i32;
    pub fn CLK_XtalCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_XtalDivCmd(enNewState: en_functional_state_t);
    pub fn CLK_XtalDivStructInit(pstcXtalDivInit: *mut stc_clock_xtaldiv_init_t) -> i32;
    pub fn CLK_XtalDivInit(pstcXtalDivInit: *const stc_clock_xtaldiv_init_t) -> i32;
    pub fn CLK_XtalStdCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_XtalStdInit(u8State: u8, u8ExceptionType: u8) -> i32;
    pub fn CLK_SetXtalStdExceptionType(u8ExceptionType: u8) -> i32;
    pub fn CLK_ClearXtalStdStatus();
    pub fn CLK_GetXtalStdStatus() -> en_flag_status_t;
    pub fn CLK_Xtal32StructInit(pstcXtal32Init: *mut stc_clock_xtal32_init_t) -> i32;
    pub fn CLK_Xtal32Init(pstcXtal32Init: *const stc_clock_xtal32_init_t) -> i32;
    pub fn CLK_Xtal32Cmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_SetPLLSrc(u32PllSrc: u32);
    pub fn CLK_PLLStructInit(pstcPLLInit: *mut stc_clock_pll_init_t) -> i32;
    pub fn CLK_PLLInit(pstcPLLInit: *const stc_clock_pll_init_t) -> i32;
    pub fn CLK_PLLCmd(enNewState: en_functional_state_t) -> i32;
    pub fn CLK_GetPLLClockFreq(pstcPllClkFreq: *mut stc_pll_clock_freq_t) -> i32;
    pub fn CLK_MCOConfig(u8Ch: u8, u8Src: u8, u8Div: u8);
    pub fn CLK_MCOCmd(u8Ch: u8, enNewState: en_functional_state_t);
    pub fn CLK_GetStableStatus(u8Flag: u8) -> en_flag_status_t;
    pub fn CLK_SetSysClockSrc(u8Src: u8);
    pub fn CLK_SetClockDiv(u32Clock: u32, u32Div: u32);
    pub fn CLK_GetClockFreq(pstcClockFreq: *mut stc_clock_freq_t) -> i32;
    pub fn CLK_GetBusClockFreq(u32Clock: u32) -> u32;
    pub fn CLK_SetPeriClockSrc(u16Src: u16);
    pub fn CLK_SetCANClockSrc(u8Unit: u8, u8Src: u8);
    pub fn CLK_TpiuClockCmd(enNewState: en_functional_state_t);
    pub fn CLK_SetTpiuClockDiv(u8Div: u8);
}