aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-07-25 22:50:56 +0100
committerGitHub <noreply@github.com>2020-07-26 07:50:56 +1000
commitd91987ab9adbf7bba9f47deb6b30a02d28e7195d (patch)
tree6356f4f6c167dd2b50dec84a5124418cb9d649fc /tmk_core
parentdb540e2832b0d3bed6ae2ca3a2c893d9c79a7f5d (diff)
downloadfirmware-d91987ab9adbf7bba9f47deb6b30a02d28e7195d.tar.gz
firmware-d91987ab9adbf7bba9f47deb6b30a02d28e7195d.tar.bz2
firmware-d91987ab9adbf7bba9f47deb6b30a02d28e7195d.zip
Enable OLED support for Teensy 3.2/LC (#7591)
* I2C_TIMEOUT is not defined on arm teensy * Work round teensy having different ChibiOS config options * Stash OLED conf files * update comment * update comment * Remove stm32 alias to allow teensy alt mode
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/chibios/chibios_config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tmk_core/common/chibios/chibios_config.h b/tmk_core/common/chibios/chibios_config.h
index 272529608..1dd979f6a 100644
--- a/tmk_core/common/chibios/chibios_config.h
+++ b/tmk_core/common/chibios/chibios_config.h
@@ -22,3 +22,10 @@
#if defined(STM32F1XX) || defined(STM32F2XX) || defined(STM32F4XX) || defined(STM32L1XX)
# define USE_I2CV1
#endif
+
+// teensy
+#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
+#endif