From 4a99ede565fa61005f2a6202669adaa87a8ce0ee Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 16 Aug 2025 12:19:09 -0230 Subject: spi and eeprom modules --- sw/types.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sw/types.h (limited to 'sw/types.h') diff --git a/sw/types.h b/sw/types.h new file mode 100644 index 0000000..ba56050 --- /dev/null +++ b/sw/types.h @@ -0,0 +1,13 @@ +/* Usage: + * + * #include + * #include "types.h" + */ + +typedef uint8_t U8; + +typedef struct { + U8 lo, hi; +} U16; + +void incU16(U16 *x); -- cgit v1.2.3