Subversion Repositories Code-Repo

Rev

Rev 329 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
329 Kevin 1
#ifndef TIMER_H
2
#define	TIMER_H
3
 
4
void TIMER1_Init(void);
5
void TIMER1_Start(void);
6
void TIMER1_Stop(void);
7
uint16_t TIMER1_Read(void);
8
void TIMER1_Interrupt_Handler(void);
9
 
10
#endif	/* TIMER_H */
11