summaryrefslogtreecommitdiffstats
path: root/include/timer.h
blob: ed427981fcb6bca9dcbe29057e3ca9d699793bba (plain)
1
2
3
4
5
6
7
8
9
#ifndef _TIMER_H__
#define _TIMER_H__

typedef void (*timercb_t)(void);

void timer_init(void);
void timer_add(timercb_t timercb, int timeout);

#endif