#include <time.h>
#include <sys/time.h>
Go to the source code of this file.
Data Structures | |
struct | TASK_S |
Task to schedule definition. More... | |
Functions | |
void | timer_new_task (TASK_S *task, void(*runFunction)(void)) |
Create a task. More... | |
void | timer_start_task (TASK_S *task, void(*alertFunction)(int), int period_us) |
Start some task. More... | |
void | timer_stop_task (TASK_S *task) |
Stop some task. More... | |