Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 119 |
Kevin |
1 |
#ifndef __timer_interrupt_handler_h
|
|
|
2 |
#define __timer_interrupt_handler_h
|
|
|
3 |
|
|
|
4 |
void timers_init(void);
|
|
|
5 |
void timer0_interrupt_handler(void);
|
|
|
6 |
void timer0_enable(void);
|
|
|
7 |
void timer0_disable(void);
|
|
|
8 |
void timer1_interrupt_handler(void);
|
|
|
9 |
void timer2_interrupt_handler(void);
|
|
|
10 |
void timer3_interrupt_handler(void);
|
|
|
11 |
void timer3_enable(void);
|
|
|
12 |
void timer3_disable(void);
|
|
|
13 |
|
|
|
14 |
#endif
|