no-OS
maxim_timer.h
Go to the documentation of this file.
1 /***************************************************************************/
34 #ifndef MAXIM_TIMER_H_
35 #define MAXIM_TIMER_H_
36 
37 /******************************************************************************/
38 /***************************** Include Files **********************************/
39 /******************************************************************************/
40 #include "tmr.h"
41 #include "stdint.h"
42 #include "no_os_timer.h"
43 
44 /******************************************************************************/
45 /********************** Macros and Constants Definitions **********************/
46 /******************************************************************************/
47 #define SOURCE_CLOCK_FREQ PeripheralClock
48 
49 /******************************************************************************/
50 /*************************** Types Declarations *******************************/
51 /******************************************************************************/
52 
56 extern const struct no_os_timer_platform_ops max_timer_ops;
57 
58 #endif //MAXIM_TIMER_H_
maxim_timer.h
Header file for Maxim timer platform driver.
no_os_timer_platform_ops
Structure holding timer function pointers that point to the platform specific function.
Definition: no_os_timer.h:101
no_os_alloc.h
max_timer_counter_get
int max_timer_counter_get(struct no_os_timer_desc *desc, uint32_t *counter)
Function to get the current timer counter value.
Definition: maxim_timer.c:205
maxim_timer.h
Header file for Maxim timer platform driver.
max_timer_ops
const struct no_os_timer_platform_ops max_timer_ops
maxim platform specific timer platform ops structure
Definition: maxim_timer.c:304
no_os_timer_init_param::id
uint16_t id
Definition: no_os_timer.h:85
max_get_elapsed_nsec
int max_get_elapsed_nsec(struct no_os_timer_desc *desc, uint64_t *elapsed_time)
Not implemented.
Definition: maxim_timer.c:296
maxim_timer.h
Header file for Maxim timer platform driver.
max_timer_init
int max_timer_init(struct no_os_timer_desc **desc, const struct no_os_timer_init_param *param)
Timer driver init function.
Definition: maxim_timer.c:96
maxim_timer.h
Header file for Maxim timer platform driver.
no_os_timer.h
Timer control module header.
no_os_calloc
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
max_timer_counter_set
int max_timer_counter_set(struct no_os_timer_desc *desc, uint32_t new_val)
Function to set the timer counter value.
Definition: maxim_timer.c:221
max_timer_start
int max_timer_start(struct no_os_timer_desc *desc)
Timer count start function.
Definition: maxim_timer.c:174
no_os_timer_init_param::ticks_count
uint32_t ticks_count
Definition: no_os_timer.h:89
max_timer_count_clk_get
int max_timer_count_clk_get(struct no_os_timer_desc *desc, uint32_t *freq_hz)
Function to get the timer frequency.
Definition: maxim_timer.c:237
no_os_field_prep
uint32_t no_os_field_prep(uint32_t mask, uint32_t val)
max_timer_stop
int max_timer_stop(struct no_os_timer_desc *desc)
Timer count stop function.
Definition: maxim_timer.c:189
no_os_error.h
Error codes definition.
no_os_timer_init_param::freq_hz
uint32_t freq_hz
Definition: no_os_timer.h:87
no_os_timer_desc::ticks_count
uint32_t ticks_count
Definition: no_os_timer.h:65
no_os_timer_desc::id
uint16_t id
Definition: no_os_timer.h:61
no_os_timer_platform_ops::init
int32_t(* init)(struct no_os_timer_desc **, const struct no_os_timer_init_param *)
Definition: no_os_timer.h:103
max_timer_ops
const struct no_os_timer_platform_ops max_timer_ops
Maxim specific timer platform ops.
Definition: maxim_timer.c:304
maxim_timer.h
Header file for Maxim timer platform driver.
maxim_timer.h
Header file for Maxim timer platform driver.
no_os_timer_counter_get
int32_t no_os_timer_counter_get(struct no_os_timer_desc *desc, uint32_t *counter)
Get the value of the counter register for the timer.
Definition: no_os_timer.c:138
no_os_timer_init_param
Structure holding the parameters for timer initialization.
Definition: no_os_timer.h:83
no_os_timer_desc::freq_hz
uint32_t freq_hz
Definition: no_os_timer.h:63
NO_OS_BIT
#define NO_OS_BIT(x)
Definition: no_os_util.h:45
max_timer_count_clk_set
int max_timer_count_clk_set(struct no_os_timer_desc *desc, uint32_t freq_hz)
Function to set the timer frequency.
Definition: maxim_timer.c:253
no_os_free
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
max_timer_remove
int max_timer_remove(struct no_os_timer_desc *desc)
Timer driver remove function.
Definition: maxim_timer.c:157
no_os_timer_desc::extra
void * extra
Definition: no_os_timer.h:69
no_os_timer_desc
Structure holding timer descriptor.
Definition: no_os_timer.h:57
no_os_util.h
Header file of utility functions.
SOURCE_CLOCK_FREQ
#define SOURCE_CLOCK_FREQ
Definition: maxim_timer.h:47
maxim_timer.h
Header file for Maxim timer platform driver.