aboutsummaryrefslogtreecommitdiffstats
path: root/sw/tests/system
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-08-16 13:01:15 -0230
committerSam Anthony <sam@samanthony.xyz>2025-08-16 13:01:15 -0230
commit478a91bd82e27d8d6b2e597fd659e484ca6b205a (patch)
tree05c58d2018059cbf9b60baeb26409f4df97358eb /sw/tests/system
parenta8a68e5e77cac2fedb03a164acc666ccc1a1a8b1 (diff)
downloadcan-gauge-interface-478a91bd82e27d8d6b2e597fd659e484ca6b205a.zip
add systests to makefile
Diffstat (limited to 'sw/tests/system')
-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 (;;) {
+
+ }
+}