mirror of
https://github.com/candle-usb/candleLight_fw.git
synced 2025-01-28 06:02:52 +08:00
d306798923
Specifically, the STM32F407VE. Even more specifically, [this](https://stm32-base.org/boards/STM32F407VET6-STM32-F4VE-V2.0.html) dev board
12 lines
194 B
C
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
|