summaryrefslogtreecommitdiffstats
path: root/app/project.h
diff options
context:
space:
mode:
authorfishsoupisgood <github@madingley.org>2020-06-13 21:05:45 +0100
committerfishsoupisgood <github@madingley.org>2020-06-13 21:05:45 +0100
commitd85f3aeeeefd6926fe71ec8e066adb74f62dc1cc (patch)
treefc4e43a80dc50717d41a869dddce20c94a0f25c4 /app/project.h
downloadrobs_speedo-d85f3aeeeefd6926fe71ec8e066adb74f62dc1cc.tar.gz
robs_speedo-d85f3aeeeefd6926fe71ec8e066adb74f62dc1cc.tar.bz2
robs_speedo-d85f3aeeeefd6926fe71ec8e066adb74f62dc1cc.zip
fish
Diffstat (limited to 'app/project.h')
-rw-r--r--app/project.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/project.h b/app/project.h
new file mode 100644
index 0000000..a9cb707
--- /dev/null
+++ b/app/project.h
@@ -0,0 +1,25 @@
+#include <stdlib.h>
+#include <string.h>
+#include <strings.h>
+#include <libopencm3/stm32/rcc.h>
+#include <libopencm3/stm32/gpio.h>
+#include <libopencm3/stm32/usart.h>
+#include <libopencm3/stm32/dma.h>
+#include <libopencm3/stm32/i2c.h>
+#include <libopencm3/stm32/adc.h>
+#include <libopencm3/cm3/systick.h>
+#include <libopencm3/cm3/nvic.h>
+#include <libopencm3/cm3/cortex.h>
+
+#include <stdio.h>
+#include <errno.h>
+
+#include "i2c.h"
+
+#include "oled.h"
+
+#include "ring.h"
+
+#include "prototypes.h"
+
+#define T do { printf("%s:%s:%d\n",__FILE__,__FUNCTION__,__LINE__); } while (0)