Blame | Last modification | View Log | RSS feed
#ifndef INTERRUPTS_H
#define INTERRUPTS_H
// Initialize the interrupts
void 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