WXK
2024-12-16 78e84fcf264afd731cd66c807d9fcb690fe12126
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
/**************************************************************************
 * @file     pan_timer.h
 * @version  V1.00
 * $Revision: 2 $
 * $Date: 2023/11/08 15:51 $
 * @brief    Panchip series TIMER driver header file
 *
 * @note
 * Copyright (C) 2023 Panchip Technology Corp. All rights reserved.
 *****************************************************************************/
#ifndef __PAN_TIMER_H__
#define __PAN_TIMER_H__
 
/**
 * @brief Timer Interface
 * @defgroup timer_interface Timer Interface
 * @{
 */
 
#ifdef __cplusplus
extern "C"
{
#endif
 
 
 
/** @defgroup TIMER_WORK_MODE_FLAG Timer work mode
 * @brief       Timer work mode definition
 * @{ */
 
typedef enum _TIMER_CntModeDef
{
    TIMER_ONESHOT_MODE    = (0UL << TIMER_CTL_OPMODE_Pos),  /*!< Timer working in one shot mode */
    TIMER_PERIODIC_MODE   = (1UL << TIMER_CTL_OPMODE_Pos),  /*!< Timer working in periodic mode */
    TIMER_TOGGLE_MODE     = (2UL << TIMER_CTL_OPMODE_Pos),  /*!< Timer working in toggle output mode */
    TIMER_CONTINUOUS_MODE = (3UL << TIMER_CTL_OPMODE_Pos)   /*!< Timer working in continuous mode */
} TIMER_CntModeDef;
/**@} */
 
/** @defgroup TIMER_COUNTING_MODE_FLAG Timer counting mode
 * @brief       Timer counting mode definition
 * @{ */
typedef enum _TIMER_CapModeDef
{
    TIMER_CAPTURE_FREE_COUNTING_MODE    = (0UL),                        /*!< Free counting mode */
    TIMER_CAPTURE_TRIGGER_COUNTING_MODE = (TIMER_EXTCTL_CAPSEL_Msk),    /*!< Trigger counting mode */
    TIMER_CAPTURE_COUNTER_RESET_MODE    = (TIMER_EXTCTL_CAPFUNCS_Msk)   /*!< Counter reset mode */
} TIMER_CapModeDef;
/**@} */
 
/** @defgroup TIMER_CAPUTURE_MODE_FLAG Timer capture mode
 * @brief       Timer capture edge definition
 * @{ */
typedef enum _TIMER_CapEdgeDef
{
    TIMER_CAPTURE_FALLING_EDGE              = (0UL << TIMER_EXTCTL_CAPEDGE_Pos),  /*!< Falling edge trigger timer capture */
    TIMER_CAPTURE_RISING_EDGE               = (1UL << TIMER_EXTCTL_CAPEDGE_Pos),  /*!< Rising edge trigger timer capture */
    TIMER_CAPTURE_BOTH_EDGE                 = (2UL << TIMER_EXTCTL_CAPEDGE_Pos),  /*!< Both edge trigger timer capture, valid only in Free-Cnt Mode */
    TIMER_CAPTURE_FALLING_THEN_RISING_EDGE  = (2UL << TIMER_EXTCTL_CAPEDGE_Pos),  /*!< Falling edge then rising edge trigger timer capture, valid only in Trig-Cnt Mode */
    TIMER_CAPTURE_RISING_THEN_FALLING_EDGE  = (3UL << TIMER_EXTCTL_CAPEDGE_Pos)   /*!< Rising edge then falling edge trigger timer capture, valid only in Trig-Cnt Mode */
} TIMER_CapEdgeDef;
/**@} */
 
/** @defgroup TIMER_COUNTER_EDGE_FLAG Timer counting edge
 * @brief       Timer counting edge definition
 * @{ */
typedef enum _TIMER_EvtCntEdgeDef
{
    TIMER_COUNTER_FALLING_EDGE  = (0UL),                        /*!< Counter increase on falling edge of external event */
    TIMER_COUNTER_RISING_EDGE   = (TIMER_EXTCTL_CNTPHASE_Msk)   /*!< Counter increase on rising edge of external event */
} TIMER_EvtCntEdgeDef;
/**@} */
 
// #define TIMER_TOGGLE_TMX_CNT_OUT            (0UL)                           /*!< Timer use TMx_CNT_OUT, x = 0, 1 pin as toggle output pin   */
 
/** @defgroup TIMER_CAPUTURE_SRC_FLAG Timer capture souce
 * @brief       Timer capture source definition
 * @{ */
typedef enum _TIMER_CapSrcDef
{
    TIMER_CAPTURE_SOURCE_EXT_PIN    = (0UL),                  /*!< Capture source is external GPIO pin */
    TIMER_CAPTURE_SOURCE_32K_OUTPUT = (TIMER_CTL_CAPSRC_Msk)  /*!< Capture source is internal 32KHz RCL Clock */
} TIMER_CapSrcDef;
/**@} */
 
/**
 * @brief Timer 0 comparator selection: Peripheral timer0 comparator select cmp0
 */
typedef enum _TIMER0_CmpSelDef
{
    TMR0_COMPARATOR_SEL_CMP    = (0),    /*!< Peripheral timer0 comparator select cmp0 */
    TMR0_COMPARATOR_SEL_CMP1   = (1),    /*!< Peripheral timer0 comparator select cmp1 */
    TMR0_COMPARATOR_SEL_CMP2   = (2)     /*!< Peripheral timer0 comparator select cmp2 */
} TIMER0_CmpSelDef;
/**@} */
 
#define    FIXED_DEVIATION            (12)    /*!< deviation from hw timer counter count to compare value to interrupt*/
 
/**@} */
 
 
/**
  * @brief This API is used to enable timer capture function with specified mode and capture edge
  * @param[in] timer The base address of Timer module
  * @param[in] capMode Timer capture mode. Could be
  *                 - \ref TIMER_CAPTURE_FREE_COUNTING_MODE
  *                 - \ref TIMER_CAPTURE_TRIGGER_COUNTING_MODE
  *                 - \ref TIMER_CAPTURE_COUNTER_RESET_MODE
  * @param[in] capEdge Timer capture edge. Possible values are
  *                 - \ref TIMER_CAPTURE_FALLING_EDGE
  *                 - \ref TIMER_CAPTURE_RISING_EDGE
  *                 - \ref TIMER_CAPTURE_BOTH_EDGE
  * @return None
  * @note Timer frequency should be configured separately by using \ref TIMER_Open API, or program registers directly
  */
__STATIC_INLINE void TIMER_EnableCapture(TIMER_T *timer, TIMER_CapModeDef capMode, TIMER_CapEdgeDef capEdge)
{
 
    timer->EXTCTL = (timer->EXTCTL & ~(TIMER_EXTCTL_CAPSEL_Msk |
                                       TIMER_EXTCTL_CAPFUNCS_Msk |
                                       TIMER_EXTCTL_CAPEDGE_Msk)) |
                    capMode | capEdge | TIMER_EXTCTL_CAPEN_Msk;
}
 
/**
  * @brief This API is used to disable the Timer capture function
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableCapture(TIMER_T *timer)
{
    timer->EXTCTL &= ~TIMER_EXTCTL_CAPEN_Msk;
}
 
/**
  * @brief This function is used to enable the Timer event counter function with specify detection edge
  * @param[in] timer The base address of Timer module
  * @param[in] evtCntEdge Detection edge of counter pin. Could be ether
  *             - \ref TIMER_COUNTER_RISING_EDGE, or
  *             - \ref TIMER_COUNTER_FALLING_EDGE
  * @return None
  * @note Timer compare value should be configured separately by using \ref TIMER_SetCmpValue function or program registers directly
  */
__STATIC_INLINE void TIMER_EnableEventCounter(TIMER_T *timer, TIMER_EvtCntEdgeDef evtCntEdge)
{
    timer->EXTCTL = (timer->EXTCTL & ~TIMER_EXTCTL_CNTPHASE_Msk) | evtCntEdge;
    timer->CTL |= TIMER_CTL_EXTCNTEN_Msk;
}
 
/**
  * @brief This API is used to disable the Timer event counter function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableEventCounter(TIMER_T *timer)
{
    timer->CTL &= ~TIMER_CTL_EXTCNTEN_Msk;
}
 
/**
  * @brief This function is used to set new Timer prescale value
  * @param[in] timer The base address of Timer module
  * @param[in] u32Value  Timer prescale value. Valid values are between 0 to 0xFF
  * @return None
  * @note Clock input is divided by (prescale + 1) before it is fed into timer
  * \hideinitializer
  */
__STATIC_INLINE void TIMER_SetPrescaleValue(TIMER_T *timer, uint32_t u32Value)
{
    timer->CTL = (timer->CTL & ~TIMER_CTL_PSC_Msk) | u32Value;
}
 
/**
  * @brief This function is used to Set Timer counting mode
  * @param[in] timer    The base address of Timer module
  * @param[in] cntMode  Operation mode. Possible options are
  *                     - \ref TIMER_ONESHOT_MODE
  *                     - \ref TIMER_PERIODIC_MODE
  *                     - \ref TIMER_TOGGLE_MODE
  *                     - \ref TIMER_CONTINUOUS_MODE
  * @return None
  */
__STATIC_INLINE void TIMER_SetCountingMode(TIMER_T *timer, TIMER_CntModeDef cntMode)
{
    timer->CTL = (timer->CTL & ~TIMER_CTL_OPMODE_Msk) | cntMode;
}
 
/**
  * @brief This function is used to check if specify Timer is inactive or active
  * @param[in] timer The base address of Timer module
  * @return timer is activate or inactivate
  * @retval 0 Timer 24-bit up counter is inactive
  * @retval 1 Timer 24-bit up counter is active
  * \hideinitializer
  */
__STATIC_INLINE bool TIMER_IsActive(TIMER_T *timer)
{
    return timer->CTL & TIMER_CTL_ACTSTS_Msk ? true : false;
}
 
 
/**
  * @brief This function is used to start Timer counting
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_Start(TIMER_T *timer)
{
    timer->CTL |= TIMER_CTL_CNTEN_Msk;
}
 
/**
  * @brief This function is used to stop Timer counting
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_Stop(TIMER_T *timer)
{
    timer->CTL &= ~TIMER_CTL_CNTEN_Msk;
}
 
/**
  * @brief This function is used to reset Timer counting, prescale counter and CNTEN
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_Reset(TIMER_T *timer)
{
    timer->CTL |= TIMER_CTL_RSTCNT_Msk;
}
 
/**
  * @brief This function is used to enable the Timer wake-up function
  * @param[in] timer The base address of Timer module
  * @return None
  * @note  To wake the system from power down mode, timer clock source must be ether LXT or LIRC
  */
__STATIC_INLINE void TIMER_EnableWakeup(TIMER_T *timer)
{
    timer->CTL |= TIMER_CTL_WKEN_Msk;
}
 
/**
  * @brief This function is used to disable the Timer wake-up function
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableWakeup(TIMER_T *timer)
{
    timer->CTL &= ~TIMER_CTL_WKEN_Msk;
}
 
 
/**
  * @brief This function is used to enable the capture pin detection de-bounce function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_EnableCaptureDebounce(TIMER_T *timer)
{
    timer->EXTCTL |= TIMER_EXTCTL_CAPDBEN_Msk;
}
 
/**
  * @brief This function is used to disable the capture pin detection de-bounce function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableCaptureDebounce(TIMER_T *timer)
{
    timer->EXTCTL &= ~TIMER_EXTCTL_CAPDBEN_Msk;
}
 
 
/**
  * @brief This function is used to enable the counter pin detection de-bounce function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_EnableEventCounterDebounce(TIMER_T *timer)
{
    timer->EXTCTL |= TIMER_EXTCTL_CNTDBEN_Msk;
}
 
/**
  * @brief This function is used to disable the counter pin detection de-bounce function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableEventCounterDebounce(TIMER_T *timer)
{
    timer->EXTCTL &= ~TIMER_EXTCTL_CNTDBEN_Msk;
}
 
/**
  * @brief This function is used to enable the Timer time-out interrupt function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_EnableInt(TIMER_T *timer)
{
    timer->CTL |= TIMER_CTL_INTEN_Msk;
}
 
/**
  * @brief This function is used to disable the Timer time-out interrupt function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableInt(TIMER_T *timer)
{
    timer->CTL &= ~TIMER_CTL_INTEN_Msk;
}
 
/**
  * @brief This function is used to enable the Timer capture trigger interrupt function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_EnableCaptureInt(TIMER_T *timer)
{
    timer->EXTCTL |= TIMER_EXTCTL_CAPIEN_Msk;
}
 
/**
  * @brief This function is used to disable the Timer capture trigger interrupt function.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_DisableCaptureInt(TIMER_T *timer)
{
    timer->EXTCTL &= ~TIMER_EXTCTL_CAPIEN_Msk;
}
 
/**
  * @brief This function indicates Timer time-out interrupt occurred or not.
  * @param[in] timer The base address of Timer module
  * @return Timer time-out interrupt occurred or not
  * @retval 0 Timer time-out interrupt did not occur
  * @retval 1 Timer time-out interrupt occurred
  */
__STATIC_INLINE uint32_t TIMER_GetIntFlag(TIMER_T *timer)
{
    return(timer->INTSTS & TIMER_INTSTS_TIF_Msk ? 1 : 0);
}
 
/**
  * @brief This function clears the Timer time-out interrupt flag.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_ClearIntFlag(TIMER_T *timer)
{
    timer->INTSTS = TIMER_INTSTS_TIF_Msk;
}
 
/**
  * @brief This function indicates Timer time-out event occurred or not.
  * @param[in] timer The base address of Timer module
  * @return Timer time-out event occurred or not
  * @retval 0 Timer time-out event did not occur
  * @retval Timer time-out event occurred
  */
__STATIC_INLINE uint32_t TIMER_GetTFFlag(TIMER_T *timer)
{
    if (timer == TIMER0) {
        return (timer->INTSTS & (TIMER_INTSTS_TF0_Msk | TIMER_INTSTS_TF1_Msk | TIMER_INTSTS_TF2_Msk)); 
    } else{
        return (timer->INTSTS & (0x1 << 2));
    }
}
 
/**
  * @brief This function clears the Timer time-out evnet flag.
  * @param[in] timer The base address of Timer module
  * @param[in] cmp_seq The Timer0 comparator sequence (e.g., TMR0_COMPARATOR_SEL_CMP0).
  * @return None
  */
__STATIC_INLINE void TIMER_ClearTFFlag(TIMER_T *timer, uint32_t timer_flag)
{
    timer->INTSTS = timer_flag; 
}
 
/**
  * @brief This function indicates Timer has waked up system or not.
  * @param[in] timer The base address of Timer module
  * @return Timer has waked up system or not
  * @retval 0 Timer did not wake up system
  * @retval Timer wake up system
  */
__STATIC_INLINE uint32_t TIMER_GetWakeupFlag(TIMER_T *timer)
{
    if (timer == TIMER0) {
        return (timer->INTSTS & (TIMER_INTSTS_TWKF0_Msk | TIMER_INTSTS_TWKF1_Msk | TIMER_INTSTS_TWKF2_Msk)); 
    } else{
        return (timer->INTSTS & TIMER_INTSTS_TWKF0_Msk);
    }
}
 
/**
  * @brief This function clears the Timer wakeup interrupt flag.
  * @param[in] timer The base address of Timer module
  * @param[in] cmp_seq The Timer0 comparator sequence (e.g., TMR0_COMPARATOR_SEL_CMP0).
  * @return None
  */
__STATIC_INLINE void TIMER_ClearWakeupFlag(TIMER_T *timer, uint32_t wake_flag)
{
    timer->INTSTS = wake_flag; 
}
 
/**
  * @brief This function indicates Timer capture interrupt occurred or not.
  * @param[in] timer The base address of Timer module
  * @return Timer capture interrupt occurred or not
  * @retval 0 Timer capture interrupt did not occur
  * @retval 1 Timer capture interrupt occurred
  */
__STATIC_INLINE uint32_t TIMER_GetCaptureIntFlag(TIMER_T *timer)
{
    return timer->EINTSTS & TIMER_EINTSTS_CAPIF_Msk;
}
 
/**
  * @brief This function clears the Timer capture interrupt flag.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_ClearCaptureIntFlag(TIMER_T *timer)
{
    timer->EINTSTS = TIMER_EINTSTS_CAPIF_Msk;
}
 
/**
  * @brief This function indicates Timer capture event occurred or not.
  * @param[in] timer The base address of Timer module
  * @return Timer capture event occurred or not
  * @retval 0 Timer capture event did not occur
  * @retval 1 Timer capture event occurred
  */
__STATIC_INLINE uint32_t TIMER_GetCaptureFlag(TIMER_T *timer)
{
    return ((timer->EINTSTS & TIMER_EINTSTS_CAPF_Msk)? 1:0);
}
 
/**
  * @brief This function clears the Timer capture event flag.
  * @param[in] timer The base address of Timer module
  * @return None
  */
__STATIC_INLINE void TIMER_ClearCaptureFlag(TIMER_T *timer)
{
    timer->EINTSTS = TIMER_EINTSTS_CAPF_Msk;
}
 
 
/**
  * @brief This function set the Timer capture source.
  * @param[in] timer The base address of Timer module
  * @param[in] capSrc    The capture source for timer capture functions
    *                    \ref TIMER_CAPTURE_SOURCE_EXT_PIN
    *                    \ref TIMER_CAPTURE_SOURCE_32K_OUTPUT
  * @return None
  */
__STATIC_INLINE void TIMER_SetCaptureSource(TIMER_T *timer, TIMER_CapSrcDef capSrc)
{
    timer->CTL = (timer->CTL & ~TIMER_CTL_CAPSRC_Msk) | capSrc;
}
 
/**
  * @brief This function gets the Timer capture data.
  * @param[in] timer The base address of Timer module
  * @return Timer capture data value
  */
__STATIC_INLINE uint32_t TIMER_GetCaptureData(TIMER_T *timer)
{
    return timer->CAP;
}
 
/**
  * @brief This function reports the current timer counter value.
  * @param[in] timer The base address of Timer module
  * @return Timer counter value
  */
__STATIC_INLINE uint32_t TIMER_GetCounter(TIMER_T *timer)
{
    return timer->CNT;
}
 
/**
  * @brief This function set the timer counter mode.
  * @param[in] timer The base address of Timer module
  * @param[in] u32CntMode count mode select, \ref TIMER_CntModeDef
  * @return Timer counter value 
  */
__STATIC_INLINE void TIMER_SetTmrCounterMode(TIMER_T *timer,uint32_t u32CntMode)
{
    timer->CTL &= ~(TIMER_CTL_OPMODE_Msk);
    timer->CTL |= u32CntMode;
}
 
/**
  * @brief This API is used to configure timer to operate in specified mode
  *        and frequency. If timer cannot work in target frequency, a closest
  *        frequency will be chose and returned.
  * @param[in] timer The base address of Timer module
  * @param[in] idx comparator sequence number. Could be
  *             - \ref TMR0_COMPARATOR_SEL_CMP 
  *             - \ref TMR0_COMPARATOR_SEL_CMP1
  *             - \ref TMR0_COMPARATOR_SEL_CMP2
  * @param[in] u32Value  Timer compare value.
  *             timer0--> Valid values are between 2 to 0xFFFFFFFF
  *             timer1--> Valid values are between 2 to 0xFFFFFF
  *             timer2--> Valid values are between 2 to 0xFFFFFF
  * @return None
  * \hideinitializer
  */
 
 
 
uint32_t TIMER_Open(TIMER_T *timer, TIMER_CntModeDef cntMode, uint32_t u32Freq);
 
/**
  * @brief This API stops Timer counting and disable the Timer interrupt function
  * @param[in] timer The base address of Timer module
  * @return None
  */
void TIMER_Close(TIMER_T *timer);
 
/**
  * @brief This API is used to create a delay loop for u32usec micro seconds
  * @param[in] timer The base address of Timer module
  * @param[in] u32Usec Delay period in micro seconds with 10 usec every step. Valid values are between 10~1000000 (10 micro second ~ 1 second)
  * @return None
  * @note This API overwrites the register setting of the timer used to count the delay time.
  * @note This API use polling mode. So there is no need to enable interrupt for the timer module used to generate delay
  */
void TIMER_Delay(TIMER_T *timer, uint32_t u32Usec);
 
 
/**
  * @brief This function is used to set new Timer compared value
  * @param[in] timer The base address of Timer module
  * @param[in] cmp_seq The Timer comparator sequence (e.g., TMR0_COMPARATOR_SEL_CMP0).
  * @param[in] u32Value  Timer compare value. Valid values are between 2 to 0xFFFFFF
  * @return None
  */
void TIMER_SetCmpValue(TIMER_T *timer, TIMER0_CmpSelDef cmp_seq, uint32_t u32Value);
 
/**@} */
 
 
#ifdef __cplusplus
}
#endif
 
#endif //__PAN_TIMER_H__
 
/*** (C) COPYRIGHT 2023 Panchip Technology Corp. ***/