8#ifndef __LIBDRAGON_TIMER_H
9#define __LIBDRAGON_TIMER_H
51typedef struct timer_link
75#define TF_CONTINUOUS 1
87#define TIMER_TICKS(us) ((int)TIMER_TICKS_LL(us))
96#define TIMER_MICROS(tk) ((int)TIMER_MICROS_LL(tk))
106#define TIMER_TICKS_LL(us) ((long long)(us) * TICKS_PER_SECOND / 1000000)
115#define TIMER_MICROS_LL(tk) ((long long)(tk) * 1000000 / TICKS_PER_SECOND)
int flags
Timer flags. See TF_ONE_SHOT, TF_CONTINUOUS, and TF_DISABLED.
Definition timer.h:60
int ovfl
To correct for drift.
Definition timer.h:58
uint32_t left
Absolute ticks value at which the timer expires.
Definition timer.h:54
uint32_t set
Ticks to set if continuous.
Definition timer.h:56
void * ctx
Callback context parameter.
Definition timer.h:67
struct timer_link * next
Link to next timer.
Definition timer.h:69
void(* timer_callback1_t)(int ovfl)
Timer callback function without context.
Definition timer.h:44
void(* timer_callback2_t)(int ovfl, void *ctx)
Timer callback function with context.
Definition timer.h:46
Timer structure.
Definition timer.h:52
void start_timer(timer_link_t *timer, int ticks, int flags, timer_callback1_t callback)
Start a timer (not currently in the list)
Definition timer.c:244
void timer_close(void)
Free and close the timer subsystem.
Definition timer.c:357
timer_link_t * new_timer(int ticks, int flags, timer_callback1_t callback)
Create a new timer and add to list.
Definition timer.c:188
timer_link_t * new_timer_context(int ticks, int flags, timer_callback2_t callback, void *ctx)
Create a new timer with context and add to list.
Definition timer.c:216
void timer_init(void)
Initialize the timer subsystem.
Definition timer.c:174
void stop_timer(timer_link_t *timer)
Stop a timer and remove it from the list.
Definition timer.c:315
void delete_timer(timer_link_t *timer)
Remove a timer from the list and delete it.
Definition timer.c:347
void start_timer_context(timer_link_t *timer, int ticks, int flags, timer_callback2_t callback, void *ctx)
Start a timer (not currently in the list) with context.
Definition timer.c:270
long long timer_ticks(void)
Return total ticks since timer was initialized, as a 64-bit counter.
Definition timer.c:392
void restart_timer(timer_link_t *timer)
Reset a timer and add to list.
Definition timer.c:296