Subversion Repositories Code-Repo

Rev

Rev 231 | Details | Compare with Previous | 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);
206 Kevin 6
} TIMER5_DATA;
201 Kevin 7
 
231 Kevin 8
void TIMER5_Init(TIMER5_DATA *data, void (*callback)(void), uint32_t time_us);
199 Kevin 9
void TIMER5_Start(void);
10
void TIMER5_Stop(void);
11
 
12
#endif	/* TIMER5_H */
13