From 478a91bd82e27d8d6b2e597fd659e484ca6b205a Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 16 Aug 2025 13:01:15 -0230 Subject: add systests to makefile --- sw/tests/system/eeprom_systest.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sw/tests/system/eeprom_systest.c (limited to 'sw/tests/system/eeprom_systest.c') 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 + +#include + +#include "types.h" +#include "init.h" +#include "spi.h" +#include "eeprom.h" +#include "config.h" + +void +main(void) { + clockInit(); + pinsInit(); + spiInit(); + eepromInit(); + + for (;;) { + + } +} -- cgit v1.2.3