From 2c535106ee5bbbcc019cb0820d1a5fcf0639eb9e Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 16 Sep 2019 11:45:36 -0400 Subject: stm32: Initial support for stm32f070 Signed-off-by: Kevin O'Connor --- src/stm32/internal.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/stm32/internal.h') 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 -- cgit v1.2.3-70-g09d2