Rev 260 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#ifndef INTERRUPTS_H#define INTERRUPTS_H// Initialize the interruptsvoid Interrupt_Init(void);// Enable all interrupts (high and low priority)void Interrupt_Enable(void);// Disable all interrupts (high and low priority)void Interrupt_Disable(void);void interrupt InterruptHandler(void);#endif