summaryrefslogtreecommitdiffstats
path: root/stm32/app/ring.h
diff options
context:
space:
mode:
Diffstat (limited to 'stm32/app/ring.h')
-rw-r--r--stm32/app/ring.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/stm32/app/ring.h b/stm32/app/ring.h
deleted file mode 100644
index a329354..0000000
--- a/stm32/app/ring.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef _RING_H_
-#define _RING_H_
-
-typedef struct ring {
- uint8_t *data;
- size_t size;
- size_t write;
- size_t read;
-} ring_t;
-
-#endif
-
-