summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/chibios/chibios_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/chibios/chibios_config.h')
-rw-r--r--tmk_core/common/chibios/chibios_config.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/tmk_core/common/chibios/chibios_config.h b/tmk_core/common/chibios/chibios_config.h
index 23c65f9428..4515b025da 100644
--- a/tmk_core/common/chibios/chibios_config.h
+++ b/tmk_core/common/chibios/chibios_config.h
@@ -19,6 +19,11 @@
# define SPLIT_USB_DETECT // Force this on when dedicated pin is not used
#endif
+// STM32 compatibility
+#if defined(MCU_STM32)
+# define CPU_CLOCK STM32_SYSCLK
+#endif
+
#if defined(STM32F1XX)
# define USE_GPIOV1
#endif
@@ -27,14 +32,13 @@
# define USE_I2CV1
#endif
-// teensy
+// teensy compatibility
+#if defined(MCU_KINETIS)
+# define CPU_CLOCK KINETIS_SYSCLK_FREQUENCY
+#endif
+
#if defined(K20x) || defined(KL2x)
# define USE_I2CV1
# define USE_I2CV1_CONTRIB // for some reason a bunch of ChibiOS-Contrib boards only have clock_speed
# define USE_GPIOV1
-# define STM32_SYSCLK KINETIS_SYSCLK_FREQUENCY
-#endif
-
-#if defined(MK66F18)
-# define STM32_SYSCLK KINETIS_SYSCLK_FREQUENCY
#endif