From: tmk Date: Wed, 23 Jan 2013 16:02:11 +0000 (+0900) Subject: Minor fixes in keyboard.c. X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=d8dddf9f25181e29e3fb82250833a00a11921452;p=max%2Ftmk_keyboard.git Minor fixes in keyboard.c. --- diff --git a/common/keyboard.c b/common/keyboard.c index 6677e801..1aff81f5 100644 --- a/common/keyboard.c +++ b/common/keyboard.c @@ -26,6 +26,7 @@ along with this program. If not, see . #include "command.h" #include "util.h" #include "sendchar.h" +#include "bootloader.h" #ifdef MOUSEKEY_ENABLE #include "mousekey.h" #endif @@ -68,21 +69,21 @@ void keyboard_task(void) matrix_row_t matrix_change = 0; matrix_scan(); - for (int r = 0; r < MATRIX_ROWS; r++) { + for (uint8_t r = 0; r < MATRIX_ROWS; r++) { matrix_row = matrix_get_row(r); matrix_change = matrix_row ^ matrix_prev[r]; if (matrix_change) { if (debug_matrix) matrix_print(); - for (int c = 0; c < MATRIX_COLS; c++) { - if (matrix_change & (1<