Subversion Repositories Code-Repo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
199 Kevin 1
#ifndef TIMER5_H
2
#define	TIMER5_H
3
 
201 Kevin 4
typedef struct {
5
    void (*callback_function)(void);
6
} TIMER_DATA;
7
 
8
void TIMER5_Init(TIMER_DATA *data, void (*callback)(void), unsigned int time_us);
199 Kevin 9
void TIMER5_Start(void);
10
void TIMER5_Stop(void);
11
 
12
#endif	/* TIMER5_H */
13