diff options
Diffstat (limited to 'keyboards/dichotomy/matrix.c')
-rwxr-xr-x | keyboards/dichotomy/matrix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/dichotomy/matrix.c b/keyboards/dichotomy/matrix.c index d93889e6a..2400753cc 100755 --- a/keyboards/dichotomy/matrix.c +++ b/keyboards/dichotomy/matrix.c | |||
@@ -29,6 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
29 | #include "dichotomy.h" | 29 | #include "dichotomy.h" |
30 | #include "pointing_device.h" | 30 | #include "pointing_device.h" |
31 | #include "report.h" | 31 | #include "report.h" |
32 | #include "protocol/serial.h" | ||
32 | 33 | ||
33 | #if (MATRIX_COLS <= 8) | 34 | #if (MATRIX_COLS <= 8) |
34 | # define print_matrix_header() print("\nr/c 01234567\n") | 35 | # define print_matrix_header() print("\nr/c 01234567\n") |
@@ -93,11 +94,11 @@ uint8_t matrix_cols(void) { | |||
93 | 94 | ||
94 | void matrix_init(void) { | 95 | void matrix_init(void) { |
95 | matrix_init_quantum(); | 96 | matrix_init_quantum(); |
97 | serial_init(); | ||
96 | } | 98 | } |
97 | 99 | ||
98 | uint8_t matrix_scan(void) | 100 | uint8_t matrix_scan(void) |
99 | { | 101 | { |
100 | SERIAL_UART_INIT(); | ||
101 | //xprintf("\r\nTRYING TO SCAN"); | 102 | //xprintf("\r\nTRYING TO SCAN"); |
102 | 103 | ||
103 | uint32_t timeout = 0; | 104 | uint32_t timeout = 0; |