timer.h 152 B

123456789
  1. #ifndef _TIMER_H__
  2. #define _TIMER_H__
  3. typedef void (*timercb_t)(void);
  4. void timer_init(void);
  5. void timer_add(timercb_t timercb, int timeout);
  6. #endif