aboutsummaryrefslogtreecommitdiffstats
path: root/sw/tests/system/eeprom_systest.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/tests/system/eeprom_systest.c')
-rw-r--r--sw/tests/system/eeprom_systest.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sw/tests/system/eeprom_systest.c b/sw/tests/system/eeprom_systest.c
new file mode 100644
index 0000000..9099345
--- /dev/null
+++ b/sw/tests/system/eeprom_systest.c
@@ -0,0 +1,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 (;;) {
+
+ }
+}