Lines Matching defs:timer
79 #define TIMER_SET_CMP_VALUE(timer, u32Value) ((timer)->CMP = (u32Value)) argument
93 #define TIMER_SET_PRESCALE_VALUE(timer, u32Value) ((timer)->CTL = ((timer)->CTL & ~TIMER_CTL_PSC_… argument
106 #define TIMER_IS_ACTIVE(timer) (((timer)->CTL & TIMER_CTL_ACTSTS_Msk)? 1 : 0) argument
121 #define TIMER_SELECT_TOUT_PIN(timer, u32ToutSel) ((timer)->CTL = ((timer)->CTL & ~TIMER_CTL_TGLP… argument
136 #define TIMER_SET_OPMODE(timer, u32OpMode) ((timer)->CTL = ((timer)->CTL & ~TIMER_CTL_OPMODE_Msk)… argument
172 __STATIC_INLINE void TIMER_Start(TIMER_T *timer) in TIMER_Start()
186 __STATIC_INLINE void TIMER_Stop(TIMER_T *timer) in TIMER_Stop()
202 __STATIC_INLINE void TIMER_EnableWakeup(TIMER_T *timer) in TIMER_EnableWakeup()
216 __STATIC_INLINE void TIMER_DisableWakeup(TIMER_T *timer) in TIMER_DisableWakeup()
230 __STATIC_INLINE void TIMER_StartCapture(TIMER_T *timer) in TIMER_StartCapture()
244 __STATIC_INLINE void TIMER_StopCapture(TIMER_T *timer) in TIMER_StopCapture()
258 __STATIC_INLINE void TIMER_EnableCaptureDebounce(TIMER_T *timer) in TIMER_EnableCaptureDebounce()
272 __STATIC_INLINE void TIMER_DisableCaptureDebounce(TIMER_T *timer) in TIMER_DisableCaptureDebounce()
286 __STATIC_INLINE void TIMER_EnableEventCounterDebounce(TIMER_T *timer) in TIMER_EnableEventCounterDebounce()
300 __STATIC_INLINE void TIMER_DisableEventCounterDebounce(TIMER_T *timer) in TIMER_DisableEventCounterDebounce()
314 __STATIC_INLINE void TIMER_EnableInt(TIMER_T *timer) in TIMER_EnableInt()
328 __STATIC_INLINE void TIMER_DisableInt(TIMER_T *timer) in TIMER_DisableInt()
342 __STATIC_INLINE void TIMER_EnableCaptureInt(TIMER_T *timer) in TIMER_EnableCaptureInt()
356 __STATIC_INLINE void TIMER_DisableCaptureInt(TIMER_T *timer) in TIMER_DisableCaptureInt()
371 __STATIC_INLINE uint32_t TIMER_GetIntFlag(TIMER_T *timer) in TIMER_GetIntFlag()
385 __STATIC_INLINE void TIMER_ClearIntFlag(TIMER_T *timer) in TIMER_ClearIntFlag()
400 __STATIC_INLINE uint32_t TIMER_GetCaptureIntFlag(TIMER_T *timer) in TIMER_GetCaptureIntFlag()
414 __STATIC_INLINE void TIMER_ClearCaptureIntFlag(TIMER_T *timer) in TIMER_ClearCaptureIntFlag()
429 __STATIC_INLINE uint32_t TIMER_GetWakeupFlag(TIMER_T *timer) in TIMER_GetWakeupFlag()
443 __STATIC_INLINE void TIMER_ClearWakeupFlag(TIMER_T *timer) in TIMER_ClearWakeupFlag()
457 __STATIC_INLINE uint32_t TIMER_GetCaptureData(TIMER_T *timer) in TIMER_GetCaptureData()
471 __STATIC_INLINE uint32_t TIMER_GetCounter(TIMER_T *timer) in TIMER_GetCounter()
485 __STATIC_INLINE void TIMER_ResetCounter(TIMER_T *timer) in TIMER_ResetCounter()