Subversion Repositories Code-Repo

Rev

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

Rev Author Line No. Line
202 Kevin 1
#ifndef TIMER_H
2
#define	TIMER_H
3
 
223 Kevin 4
void TIMER_1_Init(void (*callback)(void));
202 Kevin 5
void TIMER_1_Start(void);
6
void TIMER_1_Stop(void);
7
void TIMER_1_Interrupt_Handler(void);
8
 
223 Kevin 9
// Timer 2 is used to manually PWM the LED
10
void TIMER_2_Init(void (*callback)(void));
222 Kevin 11
void TIMER_2_Start(void);
12
void TIMER_2_Stop(void);
13
void TIMER_2_Interrupt_Handler(void);
14
 
202 Kevin 15
#endif	/* TIMER_H */