Interrupts.h


1
/*********************************************************************
2
 *              General Procedures Libary Source Code
3
 *********************************************************************
4
 * FileName:        GenProcs.c
5
 * Dependencies:    GenProcs.h
6
 * Processor:       PIC18F4685
7
 * Complier:        Microchip C18
8
 *
9
 *
10
 * Author               Date    Comment
11
 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12
 * Stephan Krause       17/8/12 Version 1.0 - Initial Release
13
 *********************************************************************/
14
15
#ifndef INTERRUPTS_H
16
#define INTERRUPTS_H
17
18
#include <p18f4685.h>
19
#include <timers.h>
20
#include <delays.h>
21
22
23
#include "GlobalDefinitions.h"
24
#include "MyDelays.h"
25
#include "Debounce.h"
26
27
28
29
30
/*********************************************************************
31
 * Function:    
32
 *
33
 * Overview:            
34
 *                  
35
 *
36
 * PreCondition:  None
37
 *
38
 * Input:      None
39
 *
40
 * Output:      None
41
 *
42
 * Side Effects:  
43
 ********************************************************************/
44
void InitInterrupts(void);
45
46
47
/*********************************************************************
48
 * Function:    
49
 *
50
 * Overview:            
51
 *                  
52
 *
53
 * PreCondition:  None
54
 *
55
 * Input:      None
56
 *
57
 * Output:      None
58
 *
59
 * Side Effects:  
60
 ********************************************************************/
61
void ISR(void);
62
63
64
#endif