Subversion Repositories Code-Repo

Rev

Rev 206 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 206 Rev 231
Line 3... Line 3...
3
 
3
 
4
typedef struct {
4
typedef struct {
5
    void (*callback_function)(void);
5
    void (*callback_function)(void);
6
} TIMER5_DATA;
6
} TIMER5_DATA;
7
 
7
 
8
void TIMER5_Init(TIMER5_DATA *data, void (*callback)(void), unsigned int time_us);
8
void TIMER5_Init(TIMER5_DATA *data, void (*callback)(void), uint32_t time_us);
9
void TIMER5_Start(void);
9
void TIMER5_Start(void);
10
void TIMER5_Stop(void);
10
void TIMER5_Stop(void);
11
 
11
 
12
#endif	/* TIMER5_H */
12
#endif	/* TIMER5_H */
13
 
13