-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
isr.c
49 lines (47 loc) · 731 Bytes
/
isr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "main.h"
void interrupt ISR(void)
{
if (TMR0IF)
{
count++;
if (count > 3)
count = 0;
TMR0IF = 0;
}
}
void _ENABLE_INTERRUPTS(char name_interrupt)
{
switch (name_interrupt)
{
case GLOBAL:
{
GIE = 1;
break;
}
case TIMER0:
{
TMR0IE = 1;
break;
}
case INT:
{
INTE = 1;
break;
}
case RBI:
{
RBIE = 1;
break;
}
case PEI:
{
PEIE = 1;
break;
}
case MSSP:
{
SSPIE = 1;
break;
}
}
}