Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 284 |
Kevin |
1 |
#ifndef INTERRUPTS_H
|
|
|
2 |
#define INTERRUPTS_H
|
|
|
3 |
|
|
|
4 |
// Initialize the interrupts
|
|
|
5 |
void Interrupt_Init(void);
|
|
|
6 |
|
|
|
7 |
// Enable all interrupts (high and low priority)
|
|
|
8 |
void Interrupt_Enable(void);
|
|
|
9 |
|
|
|
10 |
// Disable all interrupts (high and low priority)
|
|
|
11 |
void Interrupt_Disable(void);
|
|
|
12 |
|
|
|
13 |
void interrupt InterruptHandler(void);
|
|
|
14 |
|
|
|
15 |
#endif
|