diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2021-03-16 20:45:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 06:45:21 +1100 |
commit | 1d341ffbb0dfbf45139c103123549c3c0fec816e (patch) | |
tree | 53e9a2cf5c0aea78d0089635945a1346652a3277 /tmk_core/common | |
parent | 319031154d74ba2568dc855c73d7919a749c7f32 (diff) |
core: add support for MK66F18 (Teensy 3.6) micro controller (#12258)
This is in preparation for https://github.com/qmk/qmk_firmware/pull/10171
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/chibios/bootloader.c | 2 | ||||
-rw-r--r-- | tmk_core/common/chibios/chibios_config.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/bootloader.c b/tmk_core/common/chibios/bootloader.c index 6cabcc4b81..4a175a6283 100644 --- a/tmk_core/common/chibios/bootloader.c +++ b/tmk_core/common/chibios/bootloader.c @@ -79,7 +79,7 @@ void enter_bootloader_mode_if_requested(void) { } } -#elif defined(KL2x) || defined(K20x) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS +#elif defined(KL2x) || defined(K20x) || defined(MK66F18) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS /* Kinetis */ # if defined(BOOTLOADER_KIIBOHD) diff --git a/tmk_core/common/chibios/chibios_config.h b/tmk_core/common/chibios/chibios_config.h index 9a66ac3174..1d8ace4955 100644 --- a/tmk_core/common/chibios/chibios_config.h +++ b/tmk_core/common/chibios/chibios_config.h @@ -32,3 +32,7 @@ # define USE_GPIOV1 # define STM32_SYSCLK KINETIS_SYSCLK_FREQUENCY #endif + +#if defined(MK66F18) +# define STM32_SYSCLK KINETIS_SYSCLK_FREQUENCY +#endif |