aboutsummaryrefslogtreecommitdiffstats
path: root/fw/main.c
blob: d035a02eb439747d4d2ad1a783248229e3071925 (plain) (blame)
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
#include <xc.h>

#include <stdbool.h>
#include <stdint.h>

#include "system.h"
#include "types.h"
#include "spi.h"
#include "eeprom.h"
#include "can.h"

void
main(void) {
	sysInit();
	spiInit();
	eepromInit();
	canInit();

	for (;;) {

	}
}

void
__interrupt() isr(void) {

}