25 #ifndef __ESP_TIMER_H__
26 #define __ESP_TIMER_H__
33 typedef void os_timer_func_t(
void *timer_arg);
40 os_timer_func_t *timer_func;
41 bool timer_repeat_flag;
void os_timer_setfn(os_timer_t *ptimer, os_timer_func_t *pfunction, void *parg)
Set the timer callback function.
Definition: esp_timer.h:35
void os_timer_arm(os_timer_t *ptimer, uint32 msec, bool repeat_flag)
Enable the millisecond timer.
void os_timer_disarm(os_timer_t *ptimer)
Disarm the timer.