Rev 223 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef TIMER_H
#define TIMER_H
void TIMER_1_Init(void (*callback)(void));
void TIMER_1_Start(void);
void TIMER_1_Stop(void);
void TIMER_1_Interrupt_Handler(void);
// Timer 2 is used to manually PWM the LED
void TIMER_2_Init(void (*callback)(void));
void TIMER_2_Start(void);
void TIMER_2_Stop(void);
void TIMER_2_Interrupt_Handler(void);
#endif /* TIMER_H */