aboutsummaryrefslogtreecommitdiffstats
path: root/fw/tests/system/eeprom_systest.c
blob: 9099345499752e0ac2211a8da854f9e43cf1d8f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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 (;;) {

	}
}