summaryrefslogtreecommitdiffstats
path: root/stm32/app/project.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 /stm32/app/project.h
parentdafd8cf2fdcdd637cc06f760d318cf8391b1a294 (diff)
downloadheating-9d87c925a9eaa4fc256be3173c14a20d1469472d.tar.gz
heating-9d87c925a9eaa4fc256be3173c14a20d1469472d.tar.bz2
heating-9d87c925a9eaa4fc256be3173c14a20d1469472d.zip
everything, mostly, working
Diffstat (limited to 'stm32/app/project.h')
-rw-r--r--stm32/app/project.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/stm32/app/project.h b/stm32/app/project.h
deleted file mode 100644
index d1bfa52..0000000
--- a/stm32/app/project.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdlib.h>
-#include <libopencm3/stm32/rcc.h>
-#include <libopencm3/stm32/gpio.h>
-#include <libopencm3/stm32/usart.h>
-#include <libopencm3/stm32/usb.h>
-#include <libopencm3/stm32/exti.h>
-#include <libopencm3/stm32/adc.h>
-#include <libopencm3/cm3/systick.h>
-#include <libopencm3/cm3/nvic.h>
-#include <libopencm3/cm3/cortex.h>
-#include <libopencm3/cm3/scb.h>
-#include <libopencm3/cm3/dwt.h>
-
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-
-#include "ring.h"
-#include "pins.h"
-#include "1wire.h"
-
-
-#define US (72)
-#define MS (US * 1000)
-#define HZ (MS * 1000)
-
-#define MS_TO_TICKS(a) ((a) *2)
-
-
-#include "prototypes.h"