diff options
author | combolek <4743344+combolek@users.noreply.github.com> | 2020-06-23 07:52:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 10:52:15 -0400 |
commit | 7cab732ae9baf5cf6da716f06dc82942426a1712 (patch) | |
tree | ab3f2fbd5ab1613f26c32008590796bb7ca72ef7 /src/stm32/internal.h | |
parent | a4c31bafb0c86b679c591fc0ab693b4fdef6114e (diff) | |
download | kutter-7cab732ae9baf5cf6da716f06dc82942426a1712.tar.gz kutter-7cab732ae9baf5cf6da716f06dc82942426a1712.tar.xz kutter-7cab732ae9baf5cf6da716f06dc82942426a1712.zip |
stm32: Initial support for stm32f2 (#3001)
Initial support for stm32f2 in general and STM32F207 in particular.
Boots up and communicates on STM32F207VC.
Signed-off-by: Boleslaw Ciesielski <combolek@users.noreply.github.com>
Diffstat (limited to 'src/stm32/internal.h')
-rw-r--r-- | src/stm32/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stm32/internal.h b/src/stm32/internal.h index abe879c1..2538bbaa 100644 --- a/src/stm32/internal.h +++ b/src/stm32/internal.h @@ -8,6 +8,8 @@ #include "stm32f0xx.h" #elif CONFIG_MACH_STM32F1 #include "stm32f1xx.h" +#elif CONFIG_MACH_STM32F2 +#include "stm32f2xx.h" #elif CONFIG_MACH_STM32F4 #include "stm32f4xx.h" #endif |