From e41764fceeabb1cdb6a7a299e00f2166a6f6ac32 Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Thu, 18 Jun 2020 13:26:56 +0100 Subject: moved stm32 into directory added noddy pcb --- stm32/app/ring.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 stm32/app/ring.h (limited to 'stm32/app/ring.h') diff --git a/stm32/app/ring.h b/stm32/app/ring.h new file mode 100644 index 0000000..1eae65b --- /dev/null +++ b/stm32/app/ring.h @@ -0,0 +1,6 @@ +typedef struct ring { + uint8_t *data; + size_t size; + size_t write; + size_t read; +} ring_t; -- cgit v1.2.3