tao_z
2022-06-01 0ff91e66071237834a1501c78648729c8c32f67a
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
/**
  ******************************************************************************
  * @file     xl_port.h
  * @author   software group
  * @brief    This file contains all the functions prototypes for the PORT 
  *           firmware library.
  ******************************************************************************
  * @attention
    *
  * 2019 by Chipways Communications,Inc. All Rights Reserved.
  * This software is supplied under the terms of a license
  * agreement or non-disclosure agreement with Chipways.
  * Passing on and copying of this document,and communication
  * of its contents is not permitted without prior written
  * authorization.
  *
  * <h2><center>&copy; COPYRIGHT 2019 Chipways</center></h2>
  ******************************************************************************
  */
    
/* Define to prevent recursive inclusion -------------------------------------*/      
#ifndef XL_PORT_H
#define XL_PORT_H
 
#ifdef __cplusplus
extern "C"{
#endif
/* Includes ---------------------------------------------------------------*/
#include "XL6600.h"
    
/* Register define ------------------------------------------------------------*/
 
/* IOFLT0 Bit Fields */
#define PORT_IOFLT0_FLTA_MASK                    0x3u
#define PORT_IOFLT0_FLTA_SHIFT                   0
#define PORT_IOFLT0_FLTB_MASK                    0xCu
#define PORT_IOFLT0_FLTB_SHIFT                   2
#define PORT_IOFLT0_FLTC_MASK                    0x30u
#define PORT_IOFLT0_FLTC_SHIFT                   4
#define PORT_IOFLT0_FLTD_MASK                    0xC0u
#define PORT_IOFLT0_FLTD_SHIFT                   6
#define PORT_IOFLT0_FLTE_MASK                    0x300u
#define PORT_IOFLT0_FLTE_SHIFT                   8
#define PORT_IOFLT0_FLTF_MASK                    0xC00u
#define PORT_IOFLT0_FLTF_SHIFT                   10
#define PORT_IOFLT0_FLTG_MASK                    0x3000u
#define PORT_IOFLT0_FLTG_SHIFT                   12
#define PORT_IOFLT0_FLTH_MASK                    0xC000u
#define PORT_IOFLT0_FLTH_SHIFT                   14
#define PORT_IOFLT0_FLTRST_MASK                  0x30000u
#define PORT_IOFLT0_FLTRST_SHIFT                 16
#define PORT_IOFLT0_FLTKBI0_MASK                 0xC0000u
#define PORT_IOFLT0_FLTKBI0_SHIFT                18
#define PORT_IOFLT0_FLTKBI1_MASK                 0x300000u
#define PORT_IOFLT0_FLTKBI1_SHIFT                20
#define PORT_IOFLT0_FLTNMI_MASK                  0xC00000u
#define PORT_IOFLT0_FLTNMI_SHIFT                 22
#define PORT_IOFLT0_FLTDIV1_MASK                 0x3000000u
#define PORT_IOFLT0_FLTDIV1_SHIFT                24
#define PORT_IOFLT0_FLTDIV2_MASK                 0x1C000000u
#define PORT_IOFLT0_FLTDIV2_SHIFT                26
#define PORT_IOFLT0_FLTDIV3_MASK                 0xE0000000u
#define PORT_IOFLT0_FLTDIV3_SHIFT                29
/* IOFLT1 Bit Fields */
#define PORT_IOFLT1_FLTI_MASK                    0x3u
#define PORT_IOFLT1_FLTI_SHIFT                   0
#define PORT_IOFLT1_FLTIRQ_MASK                  0x30u
#define PORT_IOFLT1_FLTIRQ_SHIFT                 4
#define PORT_IOFLT1_FLTFTM0_MASK                 0xC0u
#define PORT_IOFLT1_FLTFTM0_SHIFT                6
#define PORT_IOFLT1_FLTFTM1_MASK                 0x300u
#define PORT_IOFLT1_FLTFTM1_SHIFT                8
#define PORT_IOFLT1_FLTPWT_MASK                  0xC00u
#define PORT_IOFLT1_FLTPWT_SHIFT                 10
#define PORT_IOFLT1_FLTI2C0_MASK                 0x3000u
#define PORT_IOFLT1_FLTI2C0_SHIFT                12
#define PORT_IOFLT1_FLTI2C1_MASK                 0xC000u
#define PORT_IOFLT1_FLTI2C1_SHIFT                14
#define PORT_IOFLT1_FLTEWM_MASK                  0x30000u
#define PORT_IOFLT1_FLTEWM_SHIFT                 16
/* PUE0 Bit Fields */
#define PORT_PUE0_PTAPE0_MASK                    0x1u
#define PORT_PUE0_PTAPE0_SHIFT                   0
#define PORT_PUE0_PTAPE1_MASK                    0x2u
#define PORT_PUE0_PTAPE1_SHIFT                   1
#define PORT_PUE0_PTAPE2_MASK                    0x4u
#define PORT_PUE0_PTAPE2_SHIFT                   2
#define PORT_PUE0_PTAPE3_MASK                    0x8u
#define PORT_PUE0_PTAPE3_SHIFT                   3
#define PORT_PUE0_PTAPE4_MASK                    0x10u
#define PORT_PUE0_PTAPE4_SHIFT                   4
#define PORT_PUE0_PTAPE5_MASK                    0x20u
#define PORT_PUE0_PTAPE5_SHIFT                   5
#define PORT_PUE0_PTAPE6_MASK                    0x40u
#define PORT_PUE0_PTAPE6_SHIFT                   6
#define PORT_PUE0_PTAPE7_MASK                    0x80u
#define PORT_PUE0_PTAPE7_SHIFT                   7
 
#define PORT_PUE0_PTBPE0_MASK                    0x100u
#define PORT_PUE0_PTBPE0_SHIFT                   8
#define PORT_PUE0_PTBPE1_MASK                    0x200u
#define PORT_PUE0_PTBPE1_SHIFT                   9
#define PORT_PUE0_PTBPE2_MASK                    0x400u
#define PORT_PUE0_PTBPE2_SHIFT                   10
#define PORT_PUE0_PTBPE3_MASK                    0x800u
#define PORT_PUE0_PTBPE3_SHIFT                   11
#define PORT_PUE0_PTBPE4_MASK                    0x1000u
#define PORT_PUE0_PTBPE4_SHIFT                   12
#define PORT_PUE0_PTBPE5_MASK                    0x2000u
#define PORT_PUE0_PTBPE5_SHIFT                   13
#define PORT_PUE0_PTBPE6_MASK                    0x4000u
#define PORT_PUE0_PTBPE6_SHIFT                   14
#define PORT_PUE0_PTBPE7_MASK                    0x8000u
#define PORT_PUE0_PTBPE7_SHIFT                   15
 
#define PORT_PUE0_PTCPE0_MASK                    0x10000u
#define PORT_PUE0_PTCPE0_SHIFT                   16
#define PORT_PUE0_PTCPE1_MASK                    0x20000u
#define PORT_PUE0_PTCPE1_SHIFT                   17
#define PORT_PUE0_PTCPE2_MASK                    0x40000u
#define PORT_PUE0_PTCPE2_SHIFT                   18
#define PORT_PUE0_PTCPE3_MASK                    0x80000u
#define PORT_PUE0_PTCPE3_SHIFT                   19
#define PORT_PUE0_PTCPE4_MASK                    0x100000u
#define PORT_PUE0_PTCPE4_SHIFT                   20
#define PORT_PUE0_PTCPE5_MASK                    0x200000u
#define PORT_PUE0_PTCPE5_SHIFT                   21
#define PORT_PUE0_PTCPE6_MASK                    0x400000u
#define PORT_PUE0_PTCPE6_SHIFT                   22
#define PORT_PUE0_PTCPE7_MASK                    0x800000u
#define PORT_PUE0_PTCPE7_SHIFT                   23
#define PORT_PUE0_PTDPE0_MASK                    0x1000000u
#define PORT_PUE0_PTDPE0_SHIFT                   24
#define PORT_PUE0_PTDPE1_MASK                    0x2000000u
#define PORT_PUE0_PTDPE1_SHIFT                   25
#define PORT_PUE0_PTDPE2_MASK                    0x4000000u
#define PORT_PUE0_PTDPE2_SHIFT                   26
#define PORT_PUE0_PTDPE3_MASK                    0x8000000u
#define PORT_PUE0_PTDPE3_SHIFT                   27
#define PORT_PUE0_PTDPE4_MASK                    0x10000000u
#define PORT_PUE0_PTDPE4_SHIFT                   28
#define PORT_PUE0_PTDPE5_MASK                    0x20000000u
#define PORT_PUE0_PTDPE5_SHIFT                   29
#define PORT_PUE0_PTDPE6_MASK                    0x40000000u
#define PORT_PUE0_PTDPE6_SHIFT                   30
#define PORT_PUE0_PTDPE7_MASK                    0x80000000u
#define PORT_PUE0_PTDPE7_SHIFT                   31
/* PUE1 Bit Fields */
#define PORT_PUE1_PTEPE0_MASK                    0x1u
#define PORT_PUE1_PTEPE0_SHIFT                   0
#define PORT_PUE1_PTEPE1_MASK                    0x2u
#define PORT_PUE1_PTEPE1_SHIFT                   1
#define PORT_PUE1_PTEPE2_MASK                    0x4u
#define PORT_PUE1_PTEPE2_SHIFT                   2
#define PORT_PUE1_PTEPE3_MASK                    0x8u
#define PORT_PUE1_PTEPE3_SHIFT                   3
#define PORT_PUE1_PTEPE4_MASK                    0x10u
#define PORT_PUE1_PTEPE4_SHIFT                   4
#define PORT_PUE1_PTEPE5_MASK                    0x20u
#define PORT_PUE1_PTEPE5_SHIFT                   5
#define PORT_PUE1_PTEPE6_MASK                    0x40u
#define PORT_PUE1_PTEPE6_SHIFT                   6
#define PORT_PUE1_PTEPE7_MASK                    0x80u
#define PORT_PUE1_PTEPE7_SHIFT                   7
#define PORT_PUE1_PTFPE0_MASK                    0x100u
#define PORT_PUE1_PTFPE0_SHIFT                   8
#define PORT_PUE1_PTFPE1_MASK                    0x200u
#define PORT_PUE1_PTFPE1_SHIFT                   9
#define PORT_PUE1_PTFPE2_MASK                    0x400u
#define PORT_PUE1_PTFPE2_SHIFT                   10
#define PORT_PUE1_PTFPE3_MASK                    0x800u
#define PORT_PUE1_PTFPE3_SHIFT                   11
#define PORT_PUE1_PTFPE4_MASK                    0x1000u
#define PORT_PUE1_PTFPE4_SHIFT                   12
#define PORT_PUE1_PTFPE5_MASK                    0x2000u
#define PORT_PUE1_PTFPE5_SHIFT                   13
#define PORT_PUE1_PTFPE6_MASK                    0x4000u
#define PORT_PUE1_PTFPE6_SHIFT                   14
#define PORT_PUE1_PTFPE7_MASK                    0x8000u
#define PORT_PUE1_PTFPE7_SHIFT                   15
 
#define PORT_PUE1_PTGPE0_MASK                    0x10000u
#define PORT_PUE1_PTGPE0_SHIFT                   16
#define PORT_PUE1_PTGPE1_MASK                    0x20000u
#define PORT_PUE1_PTGPE1_SHIFT                   17
#define PORT_PUE1_PTGPE2_MASK                    0x40000u
#define PORT_PUE1_PTGPE2_SHIFT                   18
#define PORT_PUE1_PTGPE3_MASK                    0x80000u
#define PORT_PUE1_PTGPE3_SHIFT                   19
#define PORT_PUE1_PTGPE4_MASK                    0x100000u
#define PORT_PUE1_PTGPE4_SHIFT                   20
#define PORT_PUE1_PTGPE5_MASK                    0x200000u
#define PORT_PUE1_PTGPE5_SHIFT                   21
#define PORT_PUE1_PTGPE6_MASK                    0x400000u
#define PORT_PUE1_PTGPE6_SHIFT                   22
#define PORT_PUE1_PTGPE7_MASK                    0x800000u
#define PORT_PUE1_PTGPE7_SHIFT                   23
 
#define PORT_PUE1_PTHPE0_MASK                    0x1000000u
#define PORT_PUE1_PTHPE0_SHIFT                   24
#define PORT_PUE1_PTHPE1_MASK                    0x2000000u
#define PORT_PUE1_PTHPE1_SHIFT                   25
#define PORT_PUE1_PTHPE2_MASK                    0x4000000u
#define PORT_PUE1_PTHPE2_SHIFT                   26
#define PORT_PUE1_PTHPE3_MASK                    0x8000000u
#define PORT_PUE1_PTHPE3_SHIFT                   27
#define PORT_PUE1_PTHPE4_MASK                    0x10000000u
#define PORT_PUE1_PTHPE4_SHIFT                   28
#define PORT_PUE1_PTHPE5_MASK                    0x20000000u
#define PORT_PUE1_PTHPE5_SHIFT                   29
#define PORT_PUE1_PTHPE6_MASK                    0x40000000u
#define PORT_PUE1_PTHPE6_SHIFT                   30
#define PORT_PUE1_PTHPE7_MASK                    0x80000000u
#define PORT_PUE1_PTHPE7_SHIFT                   31 
/* PUE2 Bit Fields */
#define PORT_PUE2_PTIPE0_MASK                    0x1u
#define PORT_PUE2_PTIPE0_SHIFT                   0
#define PORT_PUE2_PTIPE1_MASK                    0x2u
#define PORT_PUE2_PTIPE1_SHIFT                   1
#define PORT_PUE2_PTIPE2_MASK                    0x4u
#define PORT_PUE2_PTIPE2_SHIFT                   2
#define PORT_PUE2_PTIPE3_MASK                    0x8u
#define PORT_PUE2_PTIPE3_SHIFT                   3
#define PORT_PUE2_PTIPE4_MASK                    0x10u
#define PORT_PUE2_PTIPE4_SHIFT                   4
#define PORT_PUE2_PTIPE5_MASK                    0x20u
#define PORT_PUE2_PTIPE5_SHIFT                   5
#define PORT_PUE2_PTIPE6_MASK                    0x40u
#define PORT_PUE2_PTIPE6_SHIFT                   6
/* HDRVE Bit Fields */
#define PORT_HDRVE_PTB4_MASK                     0x1u
#define PORT_HDRVE_PTB4_SHIFT                    0
#define PORT_HDRVE_PTB5_MASK                     0x2u
#define PORT_HDRVE_PTB5_SHIFT                    1
#define PORT_HDRVE_PTD0_MASK                     0x4u
#define PORT_HDRVE_PTD0_SHIFT                    2
#define PORT_HDRVE_PTD1_MASK                     0x8u
#define PORT_HDRVE_PTD1_SHIFT                    3
#define PORT_HDRVE_PTE0_MASK                     0x10u
#define PORT_HDRVE_PTE0_SHIFT                    4
#define PORT_HDRVE_PTE1_MASK                     0x20u
#define PORT_HDRVE_PTE1_SHIFT                    5
#define PORT_HDRVE_PTH0_MASK                     0x40u
#define PORT_HDRVE_PTH0_SHIFT                    6
#define PORT_HDRVE_PTH1_MASK                     0x80u
#define PORT_HDRVE_PTH1_SHIFT                    7
 
/** PORT - Register Layout Typedef */
typedef struct {
  __IO uint32_t IOFLT0;                            /*!< ¶Ë¿ÚÂ˲¨¼Ä´æÆ÷0, offset: 0x0 */
  __IO uint32_t IOFLT1;                            /*!< ¶Ë¿ÚÂ˲¨¼Ä´æÆ÷1, offset: 0x4 */
  __IO uint32_t PUE0;                              /*!< ¶Ë¿ÚÉÏÀ­Ê¹ÄܼĴæÆ÷0, offset: 0x8 */
  __IO uint32_t PUE1;                              /*!< ¶Ë¿ÚÉÏÀ­Ê¹ÄܼĴæÆ÷1, offset: 0xC */
  __IO uint32_t PUE2;                              /*!< ¶Ë¿ÚÉÏÀ­Ê¹ÄܼĴæÆ÷2, offset: 0x10 */
  __IO uint32_t HDRVE;                             /*!< ¶Ë¿Ú´óµçÁ÷Çý¶¯Ê¹ÄܼĴæÆ÷, offset: 0x14 */
} PORT_Type, *PORT_MemMapPtr;
 
extern PORT_Type*        PORT;
 
/** @addtogroup XL6600_StdPeriph_Driver
  * @{
  */
 
/** @addtogroup PORT 
  * @{
  */
 
/* Exported types ------------------------------------------------------------*/ 
 
/** 
  * @brief PORT¶Ë¿ÚÂ˲¨Æ÷0½á¹¹Ì嶨Òå
  */
typedef struct 
{
        uint32_t      iofltdiv3;     /*!< ¶Ë¿ÚÂ˲¨Æ÷·Ö×é 3 */
        uint32_t      iofltdiv2;     /*!< ¶Ë¿ÚÂ˲¨Æ÷·Ö×é 2 */
        uint32_t      iofltdiv1;     /*!< ¶Ë¿ÚÂ˲¨Æ÷·Ö×é 1 */
        uint32_t      iofltnmi;      /*!< Õë¶Ô NMI ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ           */
        uint32_t      iofltkbi1;     /*!< Õë¶Ô KBI1 ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ           */
        uint32_t      iofltkbi0;     /*!< Õë¶Ô KBI0 ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ           */
        uint32_t      iofltrst;      /*!< Õë¶Ô RESET ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltpth;      /*!< Õë¶Ô PTH ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltptg;      /*!< Õë¶Ô PTG ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltptf;      /*!< Õë¶Ô PTF ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltpte;      /*!< Õë¶Ô PTE ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltptd;      /*!< Õë¶Ô PTD ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltptc;      /*!< Õë¶Ô PTC ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltptb;      /*!< Õë¶Ô PTB ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint32_t      iofltpta;      /*!< Õë¶Ô PTA ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
 
}port_ioflt0_config;
 
/** 
  * @brief PORT¶Ë¿ÚÂ˲¨Æ÷1½á¹¹Ì嶨Òå
  */
typedef struct
{
        uint16_t     ioflti2c1;     /*!< Õë¶Ô SCL1/SDA1 ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint16_t     ioflti2c0;     /*!< Õë¶Ô SCL0/SDA0 ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint16_t     iofltpwt;      /*!< Õë¶Ô PWT_IN1/PWT_IN0   ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint16_t     iofltftm1;     /*!< Õë¶Ô FTM1CH0/FTM1CH1   ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ         */
        uint16_t     iofltftm0;     /*!< Õë¶Ô   FTM0CH0/FTM0CH1 ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ */
        uint16_t     iofltirq;      /*!< Õë¶Ô IRQ ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ           */
        uint16_t     iofltpti;      /*!< Õë¶Ô PTI ÊäÈëµÄÂ˲¨Æ÷Ñ¡Ôñ           */
 
}port_ioflt1_config;
 
 
/* Exported constants --------------------------------------------------------*/
/** @defgroup PORT_Exported_Constants PORTÄ£¿éʹÓòÎÊý¶¨Òå
  * @{
  */
/** @defgroup PORT_Filter_Division_3 PORTÂ˲¨Æ÷·Ö×é3ÉèÖö¨Òå
  * @{
  */
#define       Port_FLTDIV3SetLPOCLK                     ((uint32_t)0x00000000u)        /*!< LPOCLK */
#define        Port_FLTDIV3SetLPOCLKDiv2                 ((uint32_t)0x20000000u)        /*!< LPOCLK/2 */
#define        Port_FLTDIV3SetLPOCLKDiv4                 ((uint32_t)0x40000000u)        /*!< LPOCLK/4 */
#define        Port_FLTDIV3SetLPOCLKDiv8                 ((uint32_t)0x60000000u)        /*!< LPOCLK/8 */
#define        Port_FLTDIV3SetLPOCLKDiv16                 ((uint32_t)0x80000000u)        /*!< LPOCLK/16 */
#define        Port_FLTDIV3SetLPOCLKDiv32                 ((uint32_t)0xA0000000u)        /*!< LPOCLK/32 */
#define        Port_FLTDIV3SetLPOCLKDiv64                   ((uint32_t)0xC0000000u)        /*!< LPOCLK/64 */
#define        Port_FLTDIV3SetLPOCLKDiv128               ((uint32_t)0xE0000000u)        /*!< LPOCLK/128 */
/**
    * @}
    */
    
/** @defgroup PORT_Filter_Division_2 PORTÂ˲¨Æ÷·Ö×é2ÉèÖö¨Òå
 
  * @{
  */
#define       Port_FLTDIV2SetBUSCLKDiv32                   ((uint32_t)0x00000000u)        /*!< BUSCLK/32 */
#define        Port_FLTDIV2SetBUSCLKDiv64                 ((uint32_t)0x04000000u)        /*!< BUSCLK/64 */
#define        Port_FLTDIV2SetBUSCLKDiv128               ((uint32_t)0x08000000u)        /*!< BUSCLK/128 */
#define        Port_FLTDIV2SetBUSCLKDiv256               ((uint32_t)0x0C000000u)        /*!< BUSCLK/256 */
#define        Port_FLTDIV2SetBUSCLKDiv512               ((uint32_t)0x10000000u)        /*!< BUSCLK/512 */
#define        Port_FLTDIV2SetBUSCLKDiv1024               ((uint32_t)0x14000000u)        /*!< BUSCLK/1024 */
#define        Port_FLTDIV2SetBUSCLKDiv2048               ((uint32_t)0x18000000u)        /*!< BUSCLK/2048 */
#define        Port_FLTDIV2SetBUSCLKDiv4096               ((uint32_t)0x1C000000u)        /*!< BUSCLK/4096 */
/**
    * @}
    */
    
/** @defgroup PORT_Filter_Division_1 PORTÂ˲¨Æ÷·Ö×é1ÉèÖö¨Òå
  * @{
  */
#define        Port_FLTDIV1SetBUSCLKDiv2             ((uint32_t)0x00000000)        /*!< BUSCLK/2 */
#define        Port_FLTDIV1SetBUSCLKDiv4              ((uint32_t)0x01000000)        /*!< BUSCLK/4 */
#define        Port_FLTDIV1SetBUSCLKDiv8           ((uint32_t)0x02000000)        /*!< BUSCLK/8 */
#define        Port_FLTDIV1SetBUSCLKDiv16           ((uint32_t)0x03000000)        /*!< BUSCLK/16 */
/**
    * @}
    */
 
/** @defgroup PORT_NMI_Filter_Division_Seclect PORTÕë¶ÔNMIÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTNMINoFilter                          ((uint32_t)0x00000000)            /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTNMIFLTDIV1                           ((uint32_t)0x00400000)            /*!< Selects FLTDIV1, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTNMIFLTDIV2                          ((uint32_t)0x00800000)               /*!< Selects FLTDIV2, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTNMIFLTDIV3                              ((uint32_t)0x00C00000)         /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_KBI1_Filter_Division_Seclect PORTÕë¶ÔKBI1ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTKBI1NoFilter                         ((uint32_t)0x00000000)          /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTKBI1FLTDIV1                      ((uint32_t)0x00100000)            /*!< Selects FLTDIV1, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTKBI1FLTDIV2                      ((uint32_t)0x00200000)            /*!< Selects FLTDIV2, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTKBI1FLTDIV3                               ((uint32_t)0x00300000)        /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_KBI0_Filter_Division_Seclect PORTÕë¶ÔKBI0ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTKBI0NoFilter                         ((uint32_t)0x00000000)        /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTKBI0FLTDIV1                           ((uint32_t)0x00040000)        /*!< Selects FLTDIV1, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTKBI0FLTDIV2                        ((uint32_t)0x00080000)          /*!< Selects FLTDIV2, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTKBI0FLTDIV3                           ((uint32_t)0x000C0000)        /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_RESET/IRQ_Filter_Division_Seclect PORTÕë¶ÔRESET/IRQÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTRSTNoFilter                         ((uint32_t)0x00000000)          /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTRSTFLTDIV1                            ((uint32_t)0x00010000)            /*!< Selects FLTDIV1, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTRSTFLTDIV2                         ((uint32_t)0x00020000)            /*!< Selects FLTDIV2, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTRSTFLTDIV3                          ((uint32_t)0x00030000)        /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTH_Filter_Division_Seclect PORTÕë¶ÔPTHÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define       Port_FLTHBUSCLK                              ((uint32_t)0x00000000)        /*!< BUSCLK */
#define        Port_FLTHFLTDIV1                                 ((uint32_t)0x00004000)        /*!< BUSCLK1 */
#define        Port_FLTHFLTDIV2                                ((uint32_t)0x00008000)          /*!< BUSCLK2 */
#define        Port_FLTHFLTDIV3                              ((uint32_t)0x0000C000)        /*!< BUSCLK3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTG_Filter_Division_Seclect PORTÕë¶ÔPTGÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTGBUSCLK                              ((uint32_t)0x00000000)          /*!< BUSCLK */
#define        Port_FLTGFLTDIV1                                 ((uint32_t)0x00001000)        /*!< FLTDIV1 */
#define        Port_FLTGFLTDIV2                                ((uint32_t)0x00002000)        /*!< FLTDIV2 */
#define        Port_FLTGFLTDIV3                              ((uint32_t)0x00003000)          /*!< FLTDIV3 */                                                                            
/**
    * @}
    */
 
/** @defgroup PORT_PTF_Filter_Division_Seclect PORTÕë¶ÔPTFÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTFBUSCLK                              ((uint32_t)0x00000000)        /*!< BUSCLK */
#define        Port_FLTFFLTDIV1                               ((uint32_t)0x00000400)        /*!< FLTDIV1 */
#define        Port_FLTFFLTDIV2                               ((uint32_t)0x00000800)        /*!< FLTDIV2 */
#define        Port_FLTFFLTDIV3                                ((uint32_t)0x00000C00)    /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTE_Filter_Division_Seclect PORTÕë¶ÔPTEÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTEBUSCLK                              ((uint32_t)0x00000000)            /*!< BUSCLK */
#define        Port_FLTEFLTDIV1                             ((uint32_t)0x00000100)        /*!< FLTDIV1 */
#define        Port_FLTEFLTDIV2                             ((uint32_t)0x00000200)          /*!< FLTDIV2 */
#define        Port_FLTEFLTDIV3                                ((uint32_t)0x00000300)        /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTD_Filter_Division_Seclect PORTÕë¶ÔPTDÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTDBUSCLK                             ((uint32_t)0x00000000)        /*!< BUSCLK */
#define        Port_FLTDFLTDIV1                             ((uint32_t)0x00000040)        /*!< FLTDIV1 */
#define        Port_FLTDFLTDIV2                                ((uint32_t)0x00000080)        /*!< FLTDIV2 */
#define        Port_FLTDFLTDIV3                                  ((uint32_t)0x000000C0)    /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTC_Filter_Division_Seclect PORTÕë¶ÔPTCÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTCBUSCLK                               ((uint32_t)0x00000000)      /*!< BUSCLK */
#define        Port_FLTCFLTDIV1                               ((uint32_t)0x00000010)        /*!< FLTDIV1 */
#define        Port_FLTCFLTDIV2                             ((uint32_t)0x00000020)        /*!< FLTDIV2 */
#define        Port_FLTCFLTDIV3                            ((uint32_t)0x00000030)    /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTB_Filter_Division_Seclect     PORTÕë¶ÔPTBÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTBBUSCLK                             ((uint32_t)0x00000000)          /*!< BUSCLK */
#define        Port_FLTBFLTDIV1                                  ((uint32_t)0x00000004)        /*!< FLTDIV1 */
#define        Port_FLTBFLTDIV2                               ((uint32_t)0x00000008)        /*!< FLTDIV2 */
#define        Port_FLTBFLTDIV3                            ((uint32_t)0x0000000C)        /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PTA_Filter_Division_Seclect     PORTÕë¶ÔPTAÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTABUSCLK                             ((uint32_t)0x00000000)          /*!< BUSCLK */
#define        Port_FLTAFLTDIV1                                  ((uint32_t)0x00000001)        /*!< FLTDIV1 */
#define        Port_FLTAFLTDIV2                               ((uint32_t)0x00000002)        /*!< FLTDIV2 */
#define        Port_FLTAFLTDIV3                            ((uint32_t)0x00000003)        /*!< FLTDIV3 */
/**
    * @}
    */
    
    
/** @defgroup PORT_EWM_Filter_Division_Seclect PORTÕë¶ÔEWMÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTEWMNoFilter                           ((uint16_t)0x00000)        /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTEWMFLTDIV1                            ((uint16_t)0x10000)            /*!< FLTDIV1 */
#define        Port_FLTEWMFLTDIV2                             ((uint16_t)0x20000)          /*!< FLTDIV2 */
#define        Port_FLTIEWMBUSCLK                            ((uint16_t)0x30000)          /*!< FLTDIV3 */        
/**
    * @}
    */
 
/** @defgroup PORT_I2C1_Filter_Division_Seclect PORTÕë¶ÔI2C1ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTI2C1NoFilter                           ((uint16_t)0x0000)        /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTI2C1FLTDIV1                            ((uint16_t)0x4000)          /*!< FLTDIV1 */
#define        Port_FLTI2C1FLTDIV2                             ((uint16_t)0x8000)        /*!< FLTDIV2 */
#define        Port_FLTI2C1BUSCLK                            ((uint16_t)0xC000)          /*!< FLTDIV3 */                                                                             
/**
    * @}
    */
 
/** @defgroup PORT_I2C0_Filter_Division_Seclect PORTÕë¶ÔI2C0ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTI2C0NoFilter                         ((uint16_t)0x0000)          /*!< ÎÞÂ˲¨Æ÷ */
#define       Port_FLTI2C0FLTDIV1                             ((uint16_t)0x1000)      /*!< FLTDIV1 */
#define        Port_FLTI2C0FLTDIV2                             ((uint16_t)0x2000)      /*!< FLTDIV2 */
#define        Port_FLTI2C0BUSCLK                           ((uint16_t)0x3000)              /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PWT_Filter_Division_Seclect PORTÕë¶ÔPWTÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTPWTNoFilter                         ((uint16_t)0x0000)   /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTPWTFLTDIV1                           ((uint16_t)0x0400)     /*!< FLTDIV1 */
#define        Port_FLTPWTFLTDIV2                           ((uint16_t)0x0800)     /*!< FLTDIV2 */
#define        Port_FLTPWTFLTDIV3                          ((uint16_t)0x0C00)   /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_FTM1_Filter_Division_Seclect PORTÕë¶ÔFTM1ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define    Port_FLTFTM1NoFilter                             ((uint16_t)0x0000)   /*!< No filter */
#define    Port_FLTFTM1FLTDIV1                               ((uint16_t)0x0100)   /*!< FLTDIV1 */
#define    Port_FLTFTM1FLTDIV2                               ((uint16_t)0x0200)   /*!< FLTDIV2 */
#define    Port_FLTFTM1FLTDIV3                              ((uint16_t)0x0300)     /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_FTM0_Filter_Division_Seclect PORTÕë¶ÔFTM0ÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTFTM0NoFilter                        ((uint16_t)0x0000)   /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTFTM0FLTDIV1                           ((uint16_t)0x0040)      /*!< FLTDIV1 */
#define        Port_FLTFTM0FLTDIV2                            ((uint16_t)0x0080)   /*!< FLTDIV2 */
#define        Port_FLTFTM0FLTDIV3                           ((uint16_t)0x00C0)     /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_IRQ_Filter_Division_Seclect PORTÕë¶ÔIRQÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTIRQNoFilter                           ((uint16_t)0x0000)   /*!< ÎÞÂ˲¨Æ÷ */
#define        Port_FLTIRQFLTDIV1                              ((uint16_t)0x0010)     /*!< Selects FLTDIV1, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTIRQFLTDIV2                              ((uint16_t)0x0020)     /*!< Selects FLTDIV2, Stop Ä£Ê½ÏÂ×Ô¶¯Çл»µ½FLTDIV3 */
#define        Port_FLTIRQFLTDIV3                           ((uint16_t)0x0030)   /*!< FLTDIV3 */
                                                                             
/**
    * @}
    */
 
/** @defgroup PORT_PTI_Filter_Division_Seclect PORTÕë¶ÔPTIÊäÈëÂ˲¨Ñ¡Ôñ¶¨Òå
  * @{
  */
#define        Port_FLTPTIBUSCLK                            ((uint16_t)0x0000)   /*!< BUSCLK */
#define        Port_FLTPTIFLTDIV1                           ((uint16_t)0x0001)   /*!< FLTDIV1 */
#define        Port_FLTPTIFLTDIV2                           ((uint16_t)0x0002)   /*!< FLTDIV2 */
#define        Port_FLTPTIFLTDIV3                           ((uint16_t)0x0003)   /*!< FLTDIV3 */
/**
    * @}
    */
 
/** @defgroup PORT_PullPin_Seclect PORTÒý½ÅÉÏÀ­Ñ¡Ôñ
  * @{
  */
#define    PORT_PTA0             0             /*!< GPIOÒý½ÅPTA0 */
#define    PORT_PTA1            1             /*!< GPIOÒý½ÅPTA1 */
#define    PORT_PTA2            2             /*!< GPIOÒý½ÅPTA2 */
#define    PORT_PTA3               3       /*!< GPIOÒý½ÅPTA3 */
#define    PORT_PTA4               4       /*!< GPIOÒý½ÅPTA4 */
#define    PORT_PTA5            5       /*!< GPIOÒý½ÅPTA5 */
#define    PORT_PTA6            6       /*!< GPIOÒý½ÅPTA6 */
#define    PORT_PTA7            7       /*!< GPIOÒý½ÅPTA7 */
#define    PORT_PTB0            8       /*!< GPIOÒý½ÅPTB0 */
#define    PORT_PTB1            9       /*!< GPIOÒý½ÅPTB1 */
#define    PORT_PTB2            10      /*!< GPIOÒý½ÅPTB2 */
#define    PORT_PTB3            11      /*!< GPIOÒý½ÅPTB3 */
#define    PORT_PTB4            12      /*!< GPIOÒý½ÅPTB4 */
#define    PORT_PTB5            13      /*!< GPIOÒý½ÅPTB5 */
#define    PORT_PTB6            14      /*!< GPIOÒý½ÅPTB6 */
#define    PORT_PTB7            15      /*!< GPIOÒý½ÅPTB7 */
#define    PORT_PTC0            16      /*!< GPIOÒý½ÅPTC0 */
#define    PORT_PTC1            17      /*!< GPIOÒý½ÅPTC1 */
#define    PORT_PTC2            18      /*!< GPIOÒý½ÅPTC2 */
#define    PORT_PTC3            19      /*!< GPIOÒý½ÅPTC3 */
#define    PORT_PTC4            20      /*!< GPIOÒý½ÅPTC4 */
#define    PORT_PTC5            21      /*!< GPIOÒý½ÅPTC5 */
#define    PORT_PTC6            22      /*!< GPIOÒý½ÅPTC6 */
#define    PORT_PTC7            23      /*!< GPIOÒý½ÅPTC7 */
#define    PORT_PTD0            24      /*!< GPIOÒý½ÅPTD0 */
#define    PORT_PTD1            25      /*!< GPIOÒý½ÅPTD1 */
#define    PORT_PTD2            26      /*!< GPIOÒý½ÅPTD2 */
#define    PORT_PTD3            27      /*!< GPIOÒý½ÅPTD3 */
#define    PORT_PTD4            28      /*!< GPIOÒý½ÅPTD4 */
#define    PORT_PTD5            29      /*!< GPIOÒý½ÅPTD5 */
#define    PORT_PTD6            30      /*!< GPIOÒý½ÅPTD6 */
#define    PORT_PTD7            31      /*!< GPIOÒý½ÅPTD7 */
    /* in GPIOB register */
#define    PORT_PTE0            32       /*!< GPIOÒý½ÅPTE0 */
#define    PORT_PTE1            33       /*!< GPIOÒý½ÅPTE1 */
#define    PORT_PTE2            34       /*!< GPIOÒý½ÅPTE2 */
#define    PORT_PTE3            35       /*!< GPIOÒý½ÅPTE3 */
#define    PORT_PTE4            36       /*!< GPIOÒý½ÅPTE4 */
#define    PORT_PTE5            37       /*!< GPIOÒý½ÅPTE5 */
#define    PORT_PTE6            38       /*!< GPIOÒý½ÅPTE6 */
#define    PORT_PTE7            39       /*!< GPIOÒý½ÅPTE7 */
#define    PORT_PTF0            40       /*!< GPIOÒý½ÅPTF0 */
#define    PORT_PTF1            41       /*!< GPIOÒý½ÅPTF1 */
#define    PORT_PTF2            42      /*!< GPIOÒý½ÅPTF2 */
#define    PORT_PTF3            43      /*!< GPIOÒý½ÅPTF3 */
#define    PORT_PTF4            44      /*!< GPIOÒý½ÅPTF4 */
#define    PORT_PTF5            45      /*!< GPIOÒý½ÅPTF5 */
#define    PORT_PTF6            46      /*!< GPIOÒý½ÅPTF6 */
#define    PORT_PTF7            47      /*!< GPIOÒý½ÅPTF7 */
#define    PORT_PTG0            48      /*!< GPIOÒý½ÅPTG0 */
#define    PORT_PTG1            49      /*!< GPIOÒý½ÅPTG1 */
#define    PORT_PTG2            50      /*!< GPIOÒý½ÅPTG2 */
#define    PORT_PTG3            51      /*!< GPIOÒý½ÅPTG3 */
#define    PORT_PTG4            52      /*!< GPIOÒý½ÅPTG4 */
#define    PORT_PTG5            53      /*!< GPIOÒý½ÅPTG5 */
#define    PORT_PTG6            54      /*!< GPIOÒý½ÅPTG6 */
#define    PORT_PTG7            55      /*!< GPIOÒý½ÅPTG7 */
#define    PORT_PTH0            56      /*!< GPIOÒý½ÅPTH0 */
#define    PORT_PTH1            57      /*!< GPIOÒý½ÅPTH1 */
#define    PORT_PTH2            58      /*!< GPIOÒý½ÅPTH2 */
#define    PORT_PTH3            59      /*!< GPIOÒý½ÅPTH3 */
#define    PORT_PTH4            60      /*!< GPIOÒý½ÅPTH4 */
#define    PORT_PTH5            61      /*!< GPIOÒý½ÅPTH5 */
#define    PORT_PTH6            62      /*!< GPIOÒý½ÅPTH6 */
#define    PORT_PTH7            63      /*!< GPIOÒý½ÅPTH7 */
    /* in GPIOC register */
#define    PORT_PTI0            64       /*!< GPIOÒý½ÅPTI0 */
#define    PORT_PTI1            65       /*!< GPIOÒý½ÅPTI1 */
#define    PORT_PTI2            66       /*!< GPIOÒý½ÅPTI2 */
#define    PORT_PTI3            67       /*!< GPIOÒý½ÅPTI3 */
#define    PORT_PTI4            68       /*!< GPIOÒý½ÅPTI4 */
#define    PORT_PTI5            69       /*!< GPIOÒý½ÅPTI5 */
#define    PORT_PTI6            70       /*!< GPIOÒý½ÅPTI6 */
/**
    * @}
    */
                                                    
/** @defgroup PORT_HighDrive_Seclect PORT´óµçÁ÷Çý¶¯Òý½Å¶¨Òå
  * @{
  */
#define        PORT_PullPTB4          0        /*!< Òý½ÅPTB4 */
#define        PORT_PullPTB5        1        /*!< Òý½ÅPTB5 */
#define        PORT_PullPTD0        2        /*!< Òý½ÅPTD0 */
#define        PORT_PullPTD1        3        /*!< Òý½ÅPTD1 */
#define        PORT_PullPTE0        4        /*!< Òý½ÅPTE0 */
#define        PORT_PullPTE1        5        /*!< Òý½ÅPTE1 */
#define        PORT_PullPTH0        6        /*!< Òý½ÅPTH0 */
#define        PORT_PullPTH1        7        /*!< Òý½ÅPTH1 */
/**
    * @}
    */
 
 
 
/**
    * @}
    */
 
/* Exported macro ------------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/ 
void PORT_DeInit(void);
void PORT_IOFLT0Config(const port_ioflt0_config *IOflt0ConfigPtr);
void PORT_IOFLT1Config(const port_ioflt1_config *IOflt1ConfigPtr);
void PORT_FLTDIV3ConSet(uint32_t clk);
void PORT_FLTDIV2Set(uint32_t clk);
void PORT_FLTDIV1Set(uint32_t clk);
void PORT_FLTNMISET(uint32_t NMIFilter);
void PORT_FLTKBI1SET(uint32_t KBI1Filter);
void PORT_FLTKBI0SET(uint32_t KBI0Filter);
void PORT_FLTRSTSET(uint32_t RSTFilter);
void PORT_FLTISET(uint32_t FLTIFilter);
void PORT_FLTHSET(uint32_t FLTHFilter);
void PORT_FLTGSET(uint32_t FLTGFilter);
void PORT_FLTFSET(uint32_t FLTFFilter);
void PORT_FLTESET(uint32_t FLTEFilter);
void PORT_FLTDSET(uint32_t FLTDFilter);
void PORT_FLTCSET(uint32_t FLTCFilter);
void PORT_FLTBSET(uint32_t FLTBFilter);
void PORT_FLTASET(uint32_t FLTAFilter);
void PORT_FLTEWMSET(uint32_t FLTEWMFilter);
void PORT_FLTI2C1SET(uint32_t FLTI2C1Filter);
void PORT_FLTI2C0SET(uint32_t FLTI2C0Filter);
void PORT_FLTPWTSET(uint32_t FLTPWTFilter);
void PORT_FLTFTM1SET(uint32_t FLTFTM1Filter);
void PORT_FLTFTM0SET(uint32_t FLTFTM0Filter);
void PORT_FLTIRQSET(uint32_t FLTIRQFilter);
void PORT_PullPinCmd(uint8_t PortPin,FunctionalState NewState);
void PORT_HDRVEPinCmd(uint8_t hdrvePin,FunctionalState NewState);
    
 
#ifdef __cplusplus
}
#endif    
    
#endif /* __XL_PORT_H */
/**
  * @}
  */
 
/**
  * @}
  */