Header file containing functions prototypes of TIMER LL library. More...
#include "gr55xx.h"
Go to the source code of this file.
Classes | |
struct | _ll_timer_init_t |
LL TIMER init Structure definition. More... | |
Macros | |
#define | TIMER_DEFAULT_CONFIG |
LL TIMER InitStrcut default configuartion. More... | |
#define | LL_TIMER_WriteReg(__instance__, __REG__, __VALUE__) WRITE_REG(__instance__->__REG__, (__VALUE__)) |
Write a value in TIMER register. More... | |
#define | LL_TIMER_ReadReg(__instance__, __REG__) READ_REG(__instance__->__REG__) |
Read a value in TIMER register. More... | |
Typedefs | |
typedef struct _ll_timer_init_t | ll_timer_init_t |
LL TIMER init Structure definition. More... | |
Functions | |
__STATIC_INLINE void | ll_timer_enable_counter (timer_regs_t *TIMERx) |
Enable timer counter. More... | |
__STATIC_INLINE void | ll_timer_disable_counter (timer_regs_t *TIMERx) |
Disable timer counter. More... | |
__STATIC_INLINE uint32_t | ll_timer_is_enabled_counter (timer_regs_t *TIMERx) |
Indicate whether the timer counter is enabled. More... | |
__STATIC_INLINE void | ll_timer_set_counter (timer_regs_t *TIMERx, uint32_t counter) |
Set the counter value. More... | |
__STATIC_INLINE uint32_t | ll_timer_get_counter (timer_regs_t *TIMERx) |
Get the counter value. More... | |
__STATIC_INLINE void | ll_timer_set_auto_reload (timer_regs_t *TIMERx, uint32_t auto_reload) |
Set the auto-reload value. More... | |
__STATIC_INLINE uint32_t | ll_timer_get_auto_reload (timer_regs_t *TIMERx) |
Get the auto-reload value. More... | |
__STATIC_INLINE void | ll_timer_enable_it (timer_regs_t *TIMERx) |
Enable timer interrupt. More... | |
__STATIC_INLINE void | ll_timer_disable_it (timer_regs_t *TIMERx) |
Disable timer interrput. More... | |
__STATIC_INLINE uint32_t | ll_timer_is_enabled_it (timer_regs_t *TIMERx) |
Indicate whether the timer interrput is enabled. More... | |
__STATIC_INLINE void | ll_timer_clear_flag_it (timer_regs_t *TIMERx) |
Clear the interrupt flag (INTSTAT). More... | |
__STATIC_INLINE uint32_t | ll_timer_is_active_flag_it (timer_regs_t *TIMERx) |
Indicate whether interrupt flag (INTSTAT) is set (interrupt is pending). More... | |
error_status_t | ll_timer_deinit (timer_regs_t *TIMERx) |
De-initialize TIMER registers (Registers restored to their default values). More... | |
error_status_t | ll_timer_init (timer_regs_t *TIMERx, ll_timer_init_t *p_timer_init) |
Initialize TIMER registers according to the specified parameters in TIMER_InitStruct. More... | |
void | ll_timer_struct_init (ll_timer_init_t *p_timer_init) |
Set each field of a ll_timer_init_t type structure to default value. More... | |
Header file containing functions prototypes of TIMER LL library.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of GOODIX nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file gr55xx_ll_tim.h.