Header file containing functions prototypes of DUAL TIMER LL library. More...
#include "gr55xx.h"
Go to the source code of this file.
Classes | |
struct | _ll_dual_timer_init |
LL DUAL TIMER init Structure definition. More... | |
Macros | |
#define | LL_DUAL_TIMER_FREERUNNING_MODE 0x00000000U |
#define | LL_DUAL_TIMER_PERIODIC_MODE DUAL_TIMER_CTRL_MODE |
#define | LL_DUAL_TIMER_PRESCALER_DIV0 0x00000000U |
#define | LL_DUAL_TIMER_PRESCALER_DIV16 (1UL << DUAL_TIMER_CTRL_PRE_Pos) |
#define | LL_DUAL_TIMER_PRESCALER_DIV256 (2UL << DUAL_TIMER_CTRL_PRE_Pos) |
#define | LL_DUAL_TIMER_COUNTERSIZE_16 0x00000000U |
#define | LL_DUAL_TIMER_COUNTERSIZE_32 DUAL_TIMER_CTRL_SIZE |
#define | DUAL_TIMER_DEFAULT_CONFIG |
LL DUAL_TIMER InitStrcut default configuartion. More... | |
#define | LL_DUAL_TIMER_WriteReg(__instance__, __REG__, __VALUE__) WRITE_REG(__instance__->__REG__, (__VALUE__)) |
Write a value in DUAL_TIMER register. More... | |
#define | LL_DUAL_TIMER_ReadReg(__instance__, __REG__) READ_REG(__instance__->__REG__) |
Read a value in DUAL_TIMER register. More... | |
Typedefs | |
typedef struct _ll_dual_timer_init | ll_dual_timer_init_t |
LL DUAL TIMER init Structure definition. More... | |
Functions | |
__STATIC_INLINE void | ll_dual_timer_enable_counter (dual_timer_regs_t *DUAL_TIMERx) |
Enable dual_timer counter. More... | |
__STATIC_INLINE void | ll_dual_timer_disable_counter (dual_timer_regs_t *DUAL_TIMERx) |
Disable dual_timer counter. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_is_enabled_counter (dual_timer_regs_t *DUAL_TIMERx) |
Indicate whether the dual_timer counter is enabled. More... | |
__STATIC_INLINE void | ll_dual_timer_set_counter_mode (dual_timer_regs_t *DUAL_TIMERx, uint32_t counter_mode) |
Set the counter mode. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_counter_mode (dual_timer_regs_t *DUAL_TIMERx) |
Get the counter mode. More... | |
__STATIC_INLINE void | ll_dual_timer_set_prescaler (dual_timer_regs_t *DUAL_TIMERx, uint32_t prescaler) |
Set the prescaler. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_prescaler (dual_timer_regs_t *DUAL_TIMERx) |
Get the prescaler. More... | |
__STATIC_INLINE void | ll_dual_timer_set_counter_size (dual_timer_regs_t *DUAL_TIMERx, uint32_t counter_size) |
Set the counter size. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_counter_size (dual_timer_regs_t *DUAL_TIMERx) |
Get the counter size. More... | |
__STATIC_INLINE void | ll_dual_timer_enable_oneshot (dual_timer_regs_t *DUAL_TIMERx) |
Enable one-shot mode. More... | |
__STATIC_INLINE void | ll_dual_timer_disable_oneshot (dual_timer_regs_t *DUAL_TIMERx) |
Disable one-shot mode. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_is_enabled_oneshot (dual_timer_regs_t *DUAL_TIMERx) |
Indicate whether the one-shot mode is enabled. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_counter (dual_timer_regs_t *DUAL_TIMERx) |
Get the counter value. More... | |
__STATIC_INLINE void | ll_dual_timer_set_auto_reload (dual_timer_regs_t *DUAL_TIMERx, uint32_t auto_reload) |
Set the auto-reload value. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_auto_reload (dual_timer_regs_t *DUAL_TIMERx) |
Get the auto-reload value. More... | |
__STATIC_INLINE void | ll_dual_timer_set_background_reload (dual_timer_regs_t *DUAL_TIMERx, uint32_t background_reload) |
Set the backgroud-reload value. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_background_reload (dual_timer_regs_t *DUAL_TIMERx) |
Get the backgroud-reload value. More... | |
__STATIC_INLINE void | ll_dual_timer_enable_it (dual_timer_regs_t *DUAL_TIMERx) |
Enable dual_timer interrupt. More... | |
__STATIC_INLINE void | ll_dual_timer_disable_it (dual_timer_regs_t *DUAL_TIMERx) |
Disable dual_timer interrput. More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_is_enabled_it (dual_timer_regs_t *DUAL_TIMERx) |
Indicate whether the dual_timer interrput is enabled. More... | |
__STATIC_INLINE void | ll_dual_timer_clear_flag_it (dual_timer_regs_t *DUAL_TIMERx) |
Clear the interrupt flag (INTSTAT). More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_is_active_flag_it (dual_timer_regs_t *DUAL_TIMERx) |
Indicate whether interrupt flag (INTSTAT) is set (interrupt is pending). More... | |
__STATIC_INLINE uint32_t | ll_dual_timer_get_raw_it_flag (dual_timer_regs_t *DUAL_TIMERx) |
Get Dual_timer raw interrupt flags. More... | |
error_status_t | ll_dual_timer_deinit (dual_timer_regs_t *DUAL_TIMERx) |
De-initialize DUAL_TIMER registers (Registers restored to their default values). More... | |
error_status_t | ll_dual_timer_init (dual_timer_regs_t *DUAL_TIMERx, ll_dual_timer_init_t *p_dual_timer_init) |
Initialize DUAL_TIMER registers according to the specified parameters in p_dual_timer_init. More... | |
Header file containing functions prototypes of DUAL 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_dual_tim.h.