summaryrefslogtreecommitdiff
path: root/keyboards/ergodox_infinity/config.h
diff options
context:
space:
mode:
authorJoakim Tufvegren <jocke@barbanet.com>2021-07-20 03:54:32 +0200
committerGitHub <noreply@github.com>2021-07-19 18:54:32 -0700
commit1414e9736d441f4cefbdd2f88157419066f96f71 (patch)
tree927b51b9a42698ad9b297ac55a9870fc21b535d3 /keyboards/ergodox_infinity/config.h
parent85621311db62a3a2a264cb7c9edefb7cab731e4c (diff)
Switch Ergodox Infinity over to split_common (#13481)
Diffstat (limited to 'keyboards/ergodox_infinity/config.h')
-rw-r--r--keyboards/ergodox_infinity/config.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/keyboards/ergodox_infinity/config.h b/keyboards/ergodox_infinity/config.h
index 275d4e1dcf..e0208ba4d3 100644
--- a/keyboards/ergodox_infinity/config.h
+++ b/keyboards/ergodox_infinity/config.h
@@ -54,7 +54,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* key matrix size */
#define MATRIX_ROWS 18
#define MATRIX_COLS 5
-#define LOCAL_MATRIX_ROWS 9
+
+// For some reason, the rows are colums in the schematic, and vice versa
+#define MATRIX_ROW_PINS { B2, B3, B18, B19, C0, C9, C10, C11, D0 }
+#define MATRIX_COL_PINS { D1, D4, D5, D6, D7 }
+#define UNUSED_PINS
+
+/* COL2ROW, ROW2COL */
+#define DIODE_DIRECTION ROW2COL
+
+/* Serial config (for communication between halves) */
+#define SERIAL_USART_DRIVER SD1 // Only true for the master half
+#define SERIAL_USART_CONFIG { (SERIAL_USART_SPEED), } // Only field is speed
+#define SERIAL_USART_FULL_DUPLEX
+#define SERIAL_USART_TIMEOUT 50
/* number of backlight levels */
#define BACKLIGHT_LEVELS 3
@@ -103,10 +116,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* Set 0 if debouncing isn't needed */
#define DEBOUNCE 5
-#define SERIAL_LINK_BAUD 562500
-#define SERIAL_LINK_THREAD_PRIORITY (NORMALPRIO - 1)
-
#define VISUALIZER_USER_DATA_SIZE 16
+
/*
* Feature disable options
* These options are also useful to firmware size reduction.