diff options
| -rw-r--r-- | keyboards/lets_split/matrix.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/keyboards/lets_split/matrix.c b/keyboards/lets_split/matrix.c index 4def27239..47cda6fa8 100644 --- a/keyboards/lets_split/matrix.c +++ b/keyboards/lets_split/matrix.c | |||
| @@ -128,8 +128,13 @@ void matrix_init(void) | |||
| 128 | debug_matrix = true; | 128 | debug_matrix = true; |
| 129 | debug_mouse = true; | 129 | debug_mouse = true; |
| 130 | // initialize row and col | 130 | // initialize row and col |
| 131 | #if (DIODE_DIRECTION == COL2ROW) | ||
| 131 | unselect_rows(); | 132 | unselect_rows(); |
| 132 | init_cols(); | 133 | init_cols(); |
| 134 | #elif (DIODE_DIRECTION == ROW2COL) | ||
| 135 | unselect_cols(); | ||
| 136 | init_rows(); | ||
| 137 | #endif | ||
| 133 | 138 | ||
| 134 | TX_RX_LED_INIT; | 139 | TX_RX_LED_INIT; |
| 135 | 140 | ||
