aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32/internal.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-09-16 11:45:36 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-10-23 21:19:03 -0400
commit2c535106ee5bbbcc019cb0820d1a5fcf0639eb9e (patch)
treea3a3cbf9f03ab5ed0b2d63600ed205561796ee27 /src/stm32/internal.h
parent7e090a996a85016b2e72fa5d426ba95fe8bdc703 (diff)
downloadkutter-2c535106ee5bbbcc019cb0820d1a5fcf0639eb9e.tar.gz
kutter-2c535106ee5bbbcc019cb0820d1a5fcf0639eb9e.tar.xz
kutter-2c535106ee5bbbcc019cb0820d1a5fcf0639eb9e.zip
stm32: Initial support for stm32f070
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32/internal.h')
-rw-r--r--src/stm32/internal.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/stm32/internal.h b/src/stm32/internal.h
index 1a7b1e74..f9f545df 100644
--- a/src/stm32/internal.h
+++ b/src/stm32/internal.h
@@ -4,9 +4,11 @@
#include "autoconf.h" // CONFIG_MACH_STM32F1
-#if CONFIG_MACH_STM32F1
+#if CONFIG_MACH_STM32F0
+#include "stm32f0xx.h"
+#elif CONFIG_MACH_STM32F1
#include "stm32f1xx.h"
-#else
+#elif CONFIG_MACH_STM32F4
#include "stm32f4xx.h"
#endif