summaryrefslogtreecommitdiffstats
path: root/boiler-monster/stm32/app/ring.h
diff options
context:
space:
mode:
authorfishsoupisgood <github@madingley.org>2020-09-09 11:53:37 +0100
committerfishsoupisgood <github@madingley.org>2020-09-09 11:53:37 +0100
commit9d87c925a9eaa4fc256be3173c14a20d1469472d (patch)
tree50d63f87a47a0eac3f5b8058850184bcd4e6ee95 /boiler-monster/stm32/app/ring.h
parentdafd8cf2fdcdd637cc06f760d318cf8391b1a294 (diff)
downloadheating-9d87c925a9eaa4fc256be3173c14a20d1469472d.tar.gz
heating-9d87c925a9eaa4fc256be3173c14a20d1469472d.tar.bz2
heating-9d87c925a9eaa4fc256be3173c14a20d1469472d.zip
everything, mostly, working
Diffstat (limited to 'boiler-monster/stm32/app/ring.h')
-rw-r--r--boiler-monster/stm32/app/ring.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/boiler-monster/stm32/app/ring.h b/boiler-monster/stm32/app/ring.h
new file mode 100644
index 0000000..a329354
--- /dev/null
+++ b/boiler-monster/stm32/app/ring.h
@@ -0,0 +1,13 @@
+#ifndef _RING_H_
+#define _RING_H_
+
+typedef struct ring {
+ uint8_t *data;
+ size_t size;
+ size_t write;
+ size_t read;
+} ring_t;
+
+#endif
+
+