From ee61ef56f775e44fd0b857a960102148910e6dce Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 16 Aug 2025 14:59:36 -0230 Subject: usbcom: modified libusb example --- fw/tests/system/eeprom_systest.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 fw/tests/system/eeprom_systest.c (limited to 'fw/tests/system') diff --git a/fw/tests/system/eeprom_systest.c b/fw/tests/system/eeprom_systest.c new file mode 100644 index 0000000..9099345 --- /dev/null +++ b/fw/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