summaryrefslogtreecommitdiffstats
path: root/stm32/boot/project.h
diff options
context:
space:
mode:
authorroot <root@ka-ata-killa.panaceas.james.local>2021-11-21 17:27:02 +0000
committerroot <root@ka-ata-killa.panaceas.james.local>2021-11-21 17:27:02 +0000
commit64f632692fe2a164830a363f8db158a8a2ae33de (patch)
treec2106d606b7e355ede93ff2a04848224a480dbc7 /stm32/boot/project.h
downloadmetric_clock-64f632692fe2a164830a363f8db158a8a2ae33de.tar.gz
metric_clock-64f632692fe2a164830a363f8db158a8a2ae33de.tar.bz2
metric_clock-64f632692fe2a164830a363f8db158a8a2ae33de.zip
first workingish cut
Diffstat (limited to 'stm32/boot/project.h')
-rw-r--r--stm32/boot/project.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/stm32/boot/project.h b/stm32/boot/project.h
new file mode 100644
index 0000000..0323569
--- /dev/null
+++ b/stm32/boot/project.h
@@ -0,0 +1,23 @@
+#include <stdlib.h>
+#include <libopencm3/stm32/rcc.h>
+#include <libopencm3/stm32/gpio.h>
+#include <libopencm3/stm32/usart.h>
+#include <libopencm3/cm3/systick.h>
+#include <libopencm3/cm3/nvic.h>
+#include <libopencm3/usb/usbd.h>
+#include <libopencm3/usb/hid.h>
+
+#define INCLUDE_DFU_INTERFACE
+
+
+#ifdef INCLUDE_DFU_INTERFACE
+#include <libopencm3/cm3/scb.h>
+#include <libopencm3/usb/dfu.h>
+#endif
+
+#include <stdio.h>
+#include <errno.h>
+
+#include "ring.h"
+
+#include "prototypes.h"