no-OS
maxim_timer.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef MAXIM_TIMER_H_
41 #define MAXIM_TIMER_H_
42 
43 /******************************************************************************/
44 /***************************** Include Files **********************************/
45 /******************************************************************************/
46 #include "tmr.h"
47 #include "stdint.h"
48 #include "no_os_timer.h"
49 
50 /******************************************************************************/
51 /********************** Macros and Constants Definitions **********************/
52 /******************************************************************************/
53 #define SOURCE_CLOCK_FREQ PeripheralClock
54 
55 /******************************************************************************/
56 /*************************** Types Declarations *******************************/
57 /******************************************************************************/
58 
62 extern const struct no_os_timer_platform_ops max_timer_ops;
63 
64 #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:107
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:211
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:310
no_os_timer_init_param::id
uint16_t id
Definition: no_os_timer.h:91
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:302
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:102
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:60
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:227
max_timer_start
int max_timer_start(struct no_os_timer_desc *desc)
Timer count start function.
Definition: maxim_timer.c:180
no_os_timer_init_param::ticks_count
uint32_t ticks_count
Definition: no_os_timer.h:95
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:243
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:195
no_os_error.h
Error codes definition.
no_os_timer_init_param::freq_hz
uint32_t freq_hz
Definition: no_os_timer.h:93
no_os_timer_desc::ticks_count
uint32_t ticks_count
Definition: no_os_timer.h:71
no_os_timer_desc::id
uint16_t id
Definition: no_os_timer.h:67
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:109
max_timer_ops
const struct no_os_timer_platform_ops max_timer_ops
Maxim specific timer platform ops.
Definition: maxim_timer.c:310
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:144
no_os_timer_init_param
Structure holding the parameters for timer initialization.
Definition: no_os_timer.h:89
no_os_timer_desc::freq_hz
uint32_t freq_hz
Definition: no_os_timer.h:69
NO_OS_BIT
#define NO_OS_BIT(x)
Definition: no_os_util.h:51
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:259
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:75
max_timer_remove
int max_timer_remove(struct no_os_timer_desc *desc)
Timer driver remove function.
Definition: maxim_timer.c:163
no_os_timer_desc::extra
void * extra
Definition: no_os_timer.h:75
no_os_timer_desc
Structure holding timer descriptor.
Definition: no_os_timer.h:63
no_os_util.h
Header file of utility functions.
SOURCE_CLOCK_FREQ
#define SOURCE_CLOCK_FREQ
Definition: maxim_timer.h:53
maxim_timer.h
Header file for Maxim timer platform driver.