summaryrefslogtreecommitdiff
path: root/keyboards/k_type/mcuconf.h
diff options
context:
space:
mode:
authorKaleb Elwert2017-12-13 21:25:47 -0800
committerJack Humbert2017-12-14 00:25:47 -0500
commitab197af2ead7c764aa48ee4a5aa7b1b9633ce5b7 (patch)
tree93dd00bda2f6c22083deca501d70940744a26a37 /keyboards/k_type/mcuconf.h
parent1226c69f4f9fd4a573c314116439d884e5d4647c (diff)
Initial K-Type support (#1963)
* Initial K-Type support * Copy PJRC_TEENSY_3_1 to work around watchdog issues * K-Type: Remove bootloader offset in rules.mk * Ensure matrix and scan quantum functions are called when needed This is porting a fix from f5422a70b62e2b8cc75a87434a9901069ab953d4
Diffstat (limited to 'keyboards/k_type/mcuconf.h')
-rw-r--r--keyboards/k_type/mcuconf.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/keyboards/k_type/mcuconf.h b/keyboards/k_type/mcuconf.h
new file mode 100644
index 000000000..28f3c6cda
--- /dev/null
+++ b/keyboards/k_type/mcuconf.h
@@ -0,0 +1,54 @@
+/*
+ ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+#ifndef _MCUCONF_H_
+#define _MCUCONF_H_
+
+#define K20x_MCUCONF
+
+/*
+ * HAL driver system settings.
+ */
+
+/* Select the MCU clocking mode below by enabling the appropriate block. */
+
+#define KINETIS_NO_INIT FALSE
+
+/* PEE mode - 48MHz system clock driven by external crystal. */
+#define KINETIS_MCG_MODE KINETIS_MCG_MODE_PEE
+#define KINETIS_PLLCLK_FREQUENCY 72000000UL
+#define KINETIS_SYSCLK_FREQUENCY 72000000UL
+#define KINETIS_BUSCLK_FREQUENCY 36000000UL
+#define KINETIS_FLASHCLK_FREQUENCY 24000000UL
+
+/*
+ * SERIAL driver system settings.
+ */
+#define KINETIS_SERIAL_USE_UART0 TRUE
+
+/*
+ * USB driver settings
+ */
+#define KINETIS_USB_USE_USB0 TRUE
+#define KINETIS_USB_USB0_IRQ_PRIORITY 5
+
+/*
+ * I2C driver settings
+ */
+#define KINETIS_I2C_USE_I2C0 TRUE
+#define KINETIS_I2C_I2C0_PRIORITY 4
+
+#endif /* _MCUCONF_H_ */