Subversion Repositories Code-Repo

Rev

Rev 119 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 119 Rev 147
Line 1... Line 1...
1
#ifndef __timer_interrupt_handler_h
1
#ifndef __timer_interrupt_handler_h
2
#define __timer_interrupt_handler_h
2
#define __timer_interrupt_handler_h
3
 
3
 
4
void timers_init(void);
4
void Timer1_Init(void);
5
void timer0_interrupt_handler(void);
-
 
6
void timer0_enable(void);
5
void Timer1_Enable(void);
7
void timer0_disable(void);
6
void Timer1_Disable(void);
8
void timer1_interrupt_handler(void);
7
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
 
8
 
14
#endif
9
#endif