Rev 223 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#ifndef TIMER_H#define TIMER_Hvoid 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 LEDvoid 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 */