diff options
author | Ryan <fauxpark@gmail.com> | 2022-07-03 00:12:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 00:12:45 +1000 |
commit | ac5e6b6a3bfad12ab7d9786a18fcc90f8bf4caf7 (patch) | |
tree | b23670df16ae45dc629bd1c7c27a0032c0d80b07 /platforms/chibios | |
parent | 11299b337b858c8312d16b93565a2fd18410786f (diff) | |
download | qmk_firmware-ac5e6b6a3bfad12ab7d9786a18fcc90f8bf4caf7.tar.gz qmk_firmware-ac5e6b6a3bfad12ab7d9786a18fcc90f8bf4caf7.zip |
Tentative Teensy 3.5 support (#14420)
* Tentative Teensy 3.5 support
* Set firmware format to .hex for ARM Teensys
* Got to "device descriptor failed" by comparing with Teensy 3.6 code
* Drop down to 96MHz...
* Bump back up to 120MHz
Diffstat (limited to 'platforms/chibios')
-rw-r--r-- | platforms/chibios/chibios_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/chibios/chibios_config.h b/platforms/chibios/chibios_config.h index 1571bd5cd3..e5aa8e3d05 100644 --- a/platforms/chibios/chibios_config.h +++ b/platforms/chibios/chibios_config.h @@ -95,7 +95,7 @@ #if defined(MCU_KINETIS) # define CPU_CLOCK KINETIS_SYSCLK_FREQUENCY -# if defined(K20x) || defined(KL2x) +# if defined(K20x) || defined(K60x) || 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 |