aboutsummaryrefslogtreecommitdiff
path: root/converter/adb_usb/matrix.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-11-08 04:33:13 +0900
committertmk <nobody@nowhere>2013-11-08 04:37:09 +0900
commitc531a185a48a2084c20cc17c40e8274bc27fd734 (patch)
tree9170aba61e0c04d2215ee73edddfa7c831009c17 /converter/adb_usb/matrix.c
parent84b9ce7125d6a2a376419694ac461214333b12bc (diff)
downloadqmk_firmware-c531a185a48a2084c20cc17c40e8274bc27fd734.tar.gz
qmk_firmware-c531a185a48a2084c20cc17c40e8274bc27fd734.zip
Disable BOOTMAGIC and fix debug prints of adb_usb
Diffstat (limited to 'converter/adb_usb/matrix.c')
-rw-r--r--converter/adb_usb/matrix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c
index 54be2b0f5..d1b67d38d 100644
--- a/converter/adb_usb/matrix.c
+++ b/converter/adb_usb/matrix.c
@@ -79,9 +79,9 @@ void matrix_init(void)
79 for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00; 79 for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
80 80
81 debug_enable = true; 81 debug_enable = true;
82 debug_matrix = true; 82 //debug_matrix = true;
83 debug_keyboard = true; 83 //debug_keyboard = true;
84 debug_mouse = true; 84 //debug_mouse = true;
85 print("debug enabled.\n"); 85 print("debug enabled.\n");
86 return; 86 return;
87} 87}
@@ -108,7 +108,7 @@ uint8_t matrix_scan(void)
108 } else if (codes == 0xFFFF) { // power key release 108 } else if (codes == 0xFFFF) { // power key release
109 register_key(0xFF); 109 register_key(0xFF);
110 } else if (key0 == 0xFF) { // error 110 } else if (key0 == 0xFF) { // error
111 xprintf("adb_host_kbd_recv: ERROR(%02X)\n", codes); 111 xprintf("adb_host_kbd_recv: ERROR(%d)\n", codes);
112 return key1; 112 return key1;
113 } else { 113 } else {
114 register_key(key0); 114 register_key(key0);