Go to the documentation of this file.
33 #ifndef STM32_TIMER_H_
34 #define STM32_TIMER_H_
63 #endif // STM32_TIMER_H_
Header file for the stm32 timer driver.
TIM_HandleTypeDef * htimer
Definition: stm32_timer.h:46
uint16_t id
Definition: no_os_timer.h:85
const struct no_os_timer_platform_ops stm32_timer_ops
stm32 specific timer platform ops structure
Definition: stm32_timer.c:341
const struct no_os_timer_platform_ops stm32_timer_ops
stm32 platform specific timer platform ops structure
Definition: stm32_timer.c:341
Structure holding the initialization parameters for stm32 platform specific timer parameters.
Definition: stm32_timer.h:45
TIM_HandleTypeDef * htimer
Definition: stm32_timer.h:55
int32_t stm32_timer_remove(struct no_os_timer_desc *desc)
Free the resources allocated by no_os_timer_init().
Definition: stm32_timer.c:197
int32_t stm32_timer_get_elapsed_time_nsec(struct no_os_timer_desc *desc, uint64_t *elapsed_time)
Get the elapsed time in nsec for the timer.
Definition: stm32_timer.c:331
Timer control module header.
void * no_os_calloc(size_t nitems, size_t size)
Allocate memory and return a pointer to it, set memory to 0.
Definition: chibios_alloc.c:54
uint32_t ticks_count
Definition: no_os_timer.h:89
uint32_t freq_hz
Definition: no_os_timer.h:87
uint32_t ticks_count
Definition: no_os_timer.h:65
int32_t stm32_timer_init(struct no_os_timer_desc **desc, const struct no_os_timer_init_param *param)
Initialize the timer peripheral.
Definition: stm32_timer.c:134
uint16_t id
Definition: no_os_timer.h:61
int32_t stm32_timer_start(struct no_os_timer_desc *desc)
Start a timer.
Definition: stm32_timer.c:216
Structure holding the parameters for timer initialization.
Definition: no_os_timer.h:83
uint32_t freq_hz
Definition: no_os_timer.h:63
void no_os_free(void *ptr)
Deallocate memory previously allocated by a call to no_os_calloc or no_os_malloc.
Definition: chibios_alloc.c:69
#define NULL
Definition: wrapper.h:64
stm32 platform specific timer descriptor
Definition: stm32_timer.h:53
void * extra
Definition: no_os_timer.h:69
void * extra
Definition: no_os_timer.h:93
Structure holding timer descriptor.
Definition: no_os_timer.h:57
int32_t stm32_timer_counter_set(struct no_os_timer_desc *desc, uint32_t new_val)
Set the timer counter register value.
Definition: stm32_timer.c:266
Header file of utility functions.
Error macro definition for ARM Compiler.
int32_t stm32_timer_count_clk_get(struct no_os_timer_desc *desc, uint32_t *freq_hz)
Get the timer clock frequency.
Definition: stm32_timer.c:281
int32_t stm32_timer_stop(struct no_os_timer_desc *desc)
Stop a timer from counting.
Definition: stm32_timer.c:233
int32_t stm32_timer_counter_get(struct no_os_timer_desc *desc, uint32_t *counter)
Get the value of the counter register for the timer.
Definition: stm32_timer.c:250
int32_t stm32_timer_count_clk_set(struct no_os_timer_desc *desc, uint32_t freq_hz)
Set the timer clock frequency.
Definition: stm32_timer.c:297