-
Notifications
You must be signed in to change notification settings - Fork 0
/
interrupts.c
46 lines (38 loc) · 1007 Bytes
/
interrupts.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
#include "interrupts.h"
interrupt void onInterrupt() {
//I2C
//###########################################
if (SSPIF) {
SSPIF = 0;
//I2C Slave (J-Wire Implementation)
if (jWireEnabled) {
JWireOnInterrupt();
}
//I2C Master
if (wireMasterEnabled) {
WireOnInterrupt();
}
}
//###########################################
//Millisecond timer
//###########################################
if (INTCONbits.TMR0IF) {
INTCONbits.TMR0IF = 0;
OnIntervalInterrupt();
}
//###########################################
//Serial (JSerial Implementation)
//###########################################
if (RCIF) {
OnSerialInterrupt();
}
if (TXIF) {
SerialWriteInterrupt();
}
//###########################################
AsyncTick();
//Catch crashes overriden by interrupts if possible
if (IsCrashed) {
Crash(7);
}
}