Configuration functions

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...
 

Detailed Description

Function Documentation

◆ ll_timer_disable_counter()

__STATIC_INLINE void ll_timer_disable_counter ( timer_regs_t *  TIMERx)

Disable timer counter.

Register|BitsName --------|-------- CTRL | EN

Parameters
TIMERxTimer instance
Return values
None

Definition at line 260 of file ll_tim.h.

◆ ll_timer_enable_counter()

__STATIC_INLINE void ll_timer_enable_counter ( timer_regs_t *  TIMERx)

Enable timer counter.

Register|BitsName --------|-------- CTRL | EN

Parameters
TIMERxTimer instance
Return values
None

Definition at line 245 of file ll_tim.h.

◆ ll_timer_get_auto_reload()

__STATIC_INLINE uint32_t ll_timer_get_auto_reload ( timer_regs_t *  TIMERx)

Get the auto-reload value.

Register|BitsName --------|-------- RELOAD | RELOAD

Parameters
TIMERxTimer instance
Return values
Auto-reloadvalue

Definition at line 338 of file ll_tim.h.

◆ ll_timer_get_counter()

__STATIC_INLINE uint32_t ll_timer_get_counter ( timer_regs_t *  TIMERx)

Get the counter value.

Register|BitsName --------|-------- VALUE | VALUE

Parameters
TIMERxTimer instance
Return values
Countervalue (between Min_Data=0 and Max_Data=0xFFFFFFFF)

Definition at line 306 of file ll_tim.h.

◆ ll_timer_is_enabled_counter()

__STATIC_INLINE uint32_t ll_timer_is_enabled_counter ( timer_regs_t *  TIMERx)

Indicate whether the timer counter is enabled.

Register|BitsName --------|-------- CTRL | EN

Parameters
TIMERxTimer instance
Return values
Stateof bit (1 or 0).

Definition at line 275 of file ll_tim.h.

◆ ll_timer_set_auto_reload()

__STATIC_INLINE void ll_timer_set_auto_reload ( timer_regs_t *  TIMERx,
uint32_t  auto_reload 
)

Set the auto-reload value.

Note
The counter is blocked while the auto-reload value is null.

Register|BitsName --------|-------- RELOAD | RELOAD

Parameters
TIMERxTimer instance
auto_reloadbetween Min_Data=0 and Max_Data=0xFFFFFFFF
Return values
None

Definition at line 323 of file ll_tim.h.

◆ ll_timer_set_counter()

__STATIC_INLINE void ll_timer_set_counter ( timer_regs_t *  TIMERx,
uint32_t  counter 
)

Set the counter value.

Register|BitsName --------|-------- VALUE | VALUE

Parameters
TIMERxTimer instance
counterCounter value (between Min_Data=0 and Max_Data=0xFFFFFFFF)
Return values
None

Definition at line 291 of file ll_tim.h.