summaryrefslogtreecommitdiff
path: root/chip/stm32/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/config.h')
-rw-r--r--chip/stm32/config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chip/stm32/config.h b/chip/stm32/config.h
index 5a1ab1e449..7a2d286e82 100644
--- a/chip/stm32/config.h
+++ b/chip/stm32/config.h
@@ -10,7 +10,11 @@
#if defined(CHIP_VARIANT_stm32l15x)
#include "config-stm32l15x.h"
#elif defined(CHIP_VARIANT_stm32f100)
+/* STM32F100xx is currently the only outlier in the STM32F series */
#include "config-stm32f100.h"
+#elif defined(CHIP_VARIANT_stm32f10x)
+/* STM32F101xx, STM32F102xx, STM32F103xx, STM32F105xx, and STM32F107xx */
+#include "config-stm32f10x.h"
#else
#error "Unsupported chip variant"
#endif