Subversion Repositories Code-Repo

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
113 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 timer1_enable(void);
10
void timer1_disable(void);
11
void timer2_interrupt_handler(void);
12
void timer3_interrupt_handler(void);
13
void timer3_enable(void);
14
void timer3_disable(void);
15
 
16
#endif