Subversion Repositories Code-Repo

Rev

Rev 158 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
155 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 InterruptHandlerHigh(void);
14
void interrupt low_priority InterruptHandlerLow(void);
15
 
16
#endif