stm32: Initial support for stm32f070

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2019-09-16 11:45:36 -04:00
parent 7e090a996a
commit 2c535106ee
9 changed files with 390 additions and 21 deletions

View file

@ -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