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

#include <stdint.h>

#include "types.h"
#include "init.h"
#include "spi.h"
#include "eeprom.h"
#include "config.h"

void
main(void) {
	clockInit();
	pinsInit();
	spiInit();
	eepromInit();

	for (;;) {

	}
}

void
__interrupt() isr(void) {

}