Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 328 → Rev 329

/PIC Stuff/PICX_16F1825_SMT6500_Ultrasonic/INTERRUPTS.h
0,0 → 1,15
#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