Ricky Lopez d306798923 Add STM32F4 support
Specifically, the STM32F407VE.
Even more specifically, [this](https://stm32-base.org/boards/STM32F407VET6-STM32-F4VE-V2.0.html) dev board
2022-01-06 12:31:05 -05:00

12 lines
194 B
C

#ifdef STM32F042x6
#include <cmsis/device/stm32f042x6.h>
#endif
#ifdef STM32F072xB
#include <cmsis/device/stm32f072xb.h>
#endif
#ifdef STM32F407xx
#include <cmsis/device/stm32f407xx.h>
#endif