MINI51DE_BSP V3.02.004
The Board Support Package for Mini51DE Series MCU
timer.h
Go to the documentation of this file.
1/**************************************************************************/
12#ifndef __TIMER_H__
13#define __TIMER_H__
14
15#ifdef __cplusplus
16extern "C"
17{
18#endif
19
20
33#define TIMER_ONESHOT_MODE (0UL)
34#define TIMER_PERIODIC_MODE (1UL << TIMER_TCSR_MODE_Pos)
35#define TIMER_TOGGLE_MODE (2UL << TIMER_TCSR_MODE_Pos)
36#define TIMER_CONTINUOUS_MODE (3UL << TIMER_TCSR_MODE_Pos)
37#define TIMER_CAPTURE_FREE_COUNTING_MODE (0UL)
38#define TIMER_CAPTURE_TRIGGER_COUNTING_MODE (TIMER_TEXCON_CAP_MODE_Msk)
39#define TIMER_CAPTURE_COUNTER_RESET_MODE (TIMER_TEXCON_RSTCAPSEL_Msk)
40#define TIMER_CAPTURE_FALLING_EDGE (0UL)
41#define TIMER_CAPTURE_RISING_EDGE (1UL << TIMER_TEXCON_TEX_EDGE_Pos)
42#define TIMER_CAPTURE_FALLING_THEN_RISING_EDGE (2UL << TIMER_TEXCON_TEX_EDGE_Pos)
43#define TIMER_CAPTURE_RISING_THEN_FALLING_EDGE (3UL << TIMER_TEXCON_TEX_EDGE_Pos)
44#define TIMER_COUNTER_RISING_EDGE (TIMER_TEXCON_TX_PHASE_Msk)
45#define TIMER_COUNTER_FALLING_EDGE (0UL)
46#define TIMER_TOGGLE_TX (0UL)
47#define TIMER_TOGGLE_TXEX (TIMER_TCSR_TOGGLE_PIN_Msk) /* end of group MINI51_TIMER_EXPORTED_CONSTANTS */
50
51
63#define TIMER_SET_CMP_VALUE(timer, u32Value) ((timer)->TCMPR = (u32Value))
64
73#define TIMER_SET_PRESCALE_VALUE(timer, u32Value) ((timer)->TCSR = ((timer)->TCSR & ~TIMER_TCSR_PRESCALE_Msk) | (u32Value))
74
83#define TIMER_IS_ACTIVE(timer) ((timer)->TCSR & TIMER_TCSR_CACT_Msk ? 1 : 0)
84
94#define TIMER_SELECT_TOUT_PIN(timer, u32ToutSel) ((timer)->TCSR = ((timer)->TCSR & ~TIMER_TCSR_TOGGLE_PIN_Msk) | (u32ToutSel))
95
96
97
103__STATIC_INLINE void TIMER_Start(TIMER_T *timer)
104{
105 timer->TCSR |= TIMER_TCSR_CEN_Msk;
106}
107
113__STATIC_INLINE void TIMER_Stop(TIMER_T *timer)
114{
115 timer->TCSR &= ~TIMER_TCSR_CEN_Msk;
116}
117
124__STATIC_INLINE void TIMER_EnableWakeup(TIMER_T *timer)
125{
127}
128
134__STATIC_INLINE void TIMER_DisableWakeup(TIMER_T *timer)
135{
136 timer->TCSR &= ~TIMER_TCSR_WAKE_EN_Msk;
137}
138
139
145__STATIC_INLINE void TIMER_EnableCaptureDebounce(TIMER_T *timer)
146{
148}
149
155__STATIC_INLINE void TIMER_DisableCaptureDebounce(TIMER_T *timer)
156{
157 timer->TEXCON &= ~TIMER_TEXCON_TEXDB_Msk;
158}
159
160
166__STATIC_INLINE void TIMER_EnableEventCounterDebounce(TIMER_T *timer)
167{
169}
170
176__STATIC_INLINE void TIMER_DisableEventCounterDebounce(TIMER_T *timer)
177{
178 timer->TEXCON &= ~TIMER_TEXCON_TCDB_Msk;
179}
180
186__STATIC_INLINE void TIMER_EnableInt(TIMER_T *timer)
187{
188 timer->TCSR |= TIMER_TCSR_IE_Msk;
189}
190
196__STATIC_INLINE void TIMER_DisableInt(TIMER_T *timer)
197{
198 timer->TCSR &= ~TIMER_TCSR_IE_Msk;
199}
200
206__STATIC_INLINE void TIMER_EnableCaptureInt(TIMER_T *timer)
207{
209}
210
216__STATIC_INLINE void TIMER_DisableCaptureInt(TIMER_T *timer)
217{
218 timer->TEXCON &= ~TIMER_TEXCON_TEXIEN_Msk;
219}
220
228__STATIC_INLINE uint32_t TIMER_GetIntFlag(TIMER_T *timer)
229{
230 return(timer->TISR & TIMER_TISR_TIF_Msk ? 1 : 0);
231}
232
238__STATIC_INLINE void TIMER_ClearIntFlag(TIMER_T *timer)
239{
240 timer->TISR = TIMER_TISR_TIF_Msk;
241}
242
250__STATIC_INLINE uint32_t TIMER_GetCaptureIntFlag(TIMER_T *timer)
251{
252 return timer->TEXISR;
253}
254
260__STATIC_INLINE void TIMER_ClearCaptureIntFlag(TIMER_T *timer)
261{
263}
264
272__STATIC_INLINE uint32_t TIMER_GetWakeupFlag(TIMER_T *timer)
273{
274 return (timer->TISR & TIMER_TISR_TWF_Msk ? 1 : 0);
275}
276
282__STATIC_INLINE void TIMER_ClearWakeupFlag(TIMER_T *timer)
283{
284 timer->TISR = TIMER_TISR_TWF_Msk;
285}
286
292__STATIC_INLINE uint32_t TIMER_GetCaptureData(TIMER_T *timer)
293{
294 return timer->TCAP;
295}
296
302__STATIC_INLINE uint32_t TIMER_GetCounter(TIMER_T *timer)
303{
304 return timer->TDR;
305}
306
307uint32_t TIMER_Open(TIMER_T *timer, uint32_t u32Mode, uint32_t u32Freq);
308void TIMER_Close(TIMER_T *timer);
309void TIMER_Delay(TIMER_T *timer, uint32_t u32Usec);
310void TIMER_EnableCapture(TIMER_T *timer, uint32_t u32CapMode, uint32_t u32Edge);
311void TIMER_DisableCapture(TIMER_T *timer);
312void TIMER_EnableEventCounter(TIMER_T *timer, uint32_t u32Edge);
314uint32_t TIMER_GetModuleClock(TIMER_T *timer);
315
316 /* end of group MINI51_TIMER_EXPORTED_FUNCTIONS */
318 /* end of group MINI51_TIMER_Driver */
320 /* end of group MINI51_Device_Driver */
322
323#ifdef __cplusplus
324}
325#endif
326
327#endif //__TIMER_H__
328
329/*** (C) COPYRIGHT 2013 Nuvoton Technology Corp. ***/
#define TIMER_TEXCON_TCDB_Msk
#define TIMER_TEXCON_TEXIEN_Msk
#define TIMER_TISR_TIF_Msk
#define TIMER_TCSR_IE_Msk
#define TIMER_TEXISR_TEXIF_Msk
#define TIMER_TISR_TWF_Msk
#define TIMER_TCSR_CEN_Msk
#define TIMER_TCSR_WAKE_EN_Msk
#define TIMER_TEXCON_TEXDB_Msk
__STATIC_INLINE uint32_t TIMER_GetCaptureData(TIMER_T *timer)
This function gets the Timer capture data.
Definition: timer.h:292
void TIMER_Delay(TIMER_T *timer, uint32_t u32Usec)
This API is used to create a delay loop for u32usec micro seconds.
Definition: timer.c:88
__STATIC_INLINE uint32_t TIMER_GetCounter(TIMER_T *timer)
This function reports the current timer counter value.
Definition: timer.h:302
__STATIC_INLINE void TIMER_ClearIntFlag(TIMER_T *timer)
This function clears the Timer time-out interrupt flag.
Definition: timer.h:238
__STATIC_INLINE void TIMER_Start(TIMER_T *timer)
This function is used to start Timer counting.
Definition: timer.h:103
__STATIC_INLINE void TIMER_DisableCaptureDebounce(TIMER_T *timer)
This function is used to disable the capture pin detection de-bounce function.
Definition: timer.h:155
void TIMER_DisableCapture(TIMER_T *timer)
This API is used to disable the Timer capture function.
Definition: timer.c:160
uint32_t TIMER_Open(TIMER_T *timer, uint32_t u32Mode, uint32_t u32Freq)
This API is used to configure timer to operate in specified mode and frequency. If timer cannot work ...
Definition: timer.c:42
__STATIC_INLINE void TIMER_Stop(TIMER_T *timer)
This function is used to stop Timer counting.
Definition: timer.h:113
__STATIC_INLINE void TIMER_EnableEventCounterDebounce(TIMER_T *timer)
This function is used to enable the counter pin detection de-bounce function.
Definition: timer.h:166
__STATIC_INLINE uint32_t TIMER_GetCaptureIntFlag(TIMER_T *timer)
This function indicates Timer capture interrupt occurred or not.
Definition: timer.h:250
__STATIC_INLINE void TIMER_ClearCaptureIntFlag(TIMER_T *timer)
This function clears the Timer capture interrupt flag.
Definition: timer.h:260
__STATIC_INLINE uint32_t TIMER_GetWakeupFlag(TIMER_T *timer)
This function indicates Timer has waked up system or not.
Definition: timer.h:272
void TIMER_DisableEventCounter(TIMER_T *timer)
This API is used to disable the Timer event counter function.
Definition: timer.c:186
__STATIC_INLINE void TIMER_DisableInt(TIMER_T *timer)
This function is used to disable the Timer time-out interrupt function.
Definition: timer.h:196
__STATIC_INLINE void TIMER_EnableInt(TIMER_T *timer)
This function is used to enable the Timer time-out interrupt function.
Definition: timer.h:186
uint32_t TIMER_GetModuleClock(TIMER_T *timer)
This API is used to get the clock frequency of Timer.
Definition: timer.c:197
__STATIC_INLINE void TIMER_DisableWakeup(TIMER_T *timer)
This function is used to disable the Timer wake-up function.
Definition: timer.h:134
void TIMER_EnableEventCounter(TIMER_T *timer, uint32_t u32Edge)
This function is used to enable the Timer counter function with specify detection edge.
Definition: timer.c:175
void TIMER_EnableCapture(TIMER_T *timer, uint32_t u32CapMode, uint32_t u32Edge)
This API is used to enable timer capture function with specified mode and capture edge.
Definition: timer.c:146
void TIMER_Close(TIMER_T *timer)
This API stops Timer counting and disable the Timer interrupt function.
Definition: timer.c:73
__STATIC_INLINE void TIMER_DisableEventCounterDebounce(TIMER_T *timer)
This function is used to disable the counter pin detection de-bounce function.
Definition: timer.h:176
__STATIC_INLINE void TIMER_EnableCaptureDebounce(TIMER_T *timer)
This function is used to enable the capture pin detection de-bounce function.
Definition: timer.h:145
__STATIC_INLINE void TIMER_DisableCaptureInt(TIMER_T *timer)
This function is used to disable the Timer capture trigger interrupt function.
Definition: timer.h:216
__STATIC_INLINE void TIMER_EnableCaptureInt(TIMER_T *timer)
This function is used to enable the Timer capture trigger interrupt function.
Definition: timer.h:206
__STATIC_INLINE void TIMER_EnableWakeup(TIMER_T *timer)
This function is used to enable the Timer wake-up function.
Definition: timer.h:124
__STATIC_INLINE uint32_t TIMER_GetIntFlag(TIMER_T *timer)
This function indicates Timer time-out interrupt occurred or not.
Definition: timer.h:228
__STATIC_INLINE void TIMER_ClearWakeupFlag(TIMER_T *timer)
This function clears the Timer wakeup interrupt flag.
Definition: timer.h:282
__IO uint32_t TEXCON
__I uint32_t TCAP
__IO uint32_t TCSR
__IO uint32_t TEXISR
__IO uint32_t TISR
__I uint32_t TDR