diff options
author | tmk <nobody@nowhere> | 2011-03-10 00:50:27 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-03-10 11:17:54 +0900 |
commit | cec254950509038ca9c805e87feea9091d77d29f (patch) | |
tree | c4f542b18dc080e32508aced1ee0ccce5cbf3a53 /adb_usb/matrix.c | |
parent | 1a7c3585ed9a68099e371b3180a404dd5d08ce1a (diff) |
FIX: send last report when idle timeouts. (pjrc)
Diffstat (limited to 'adb_usb/matrix.c')
-rwxr-xr-x[-rw-r--r--] | adb_usb/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adb_usb/matrix.c b/adb_usb/matrix.c index 72515dce23..db202896f5 100644..100755 --- a/adb_usb/matrix.c +++ b/adb_usb/matrix.c @@ -87,7 +87,7 @@ uint8_t matrix_scan(void) _register_key(key1); } - if (debug_matrix && matrix_is_modified()) { + if (debug_enable) { print("adb_host_kbd_recv: "); phex16(codes); print("\n"); } return 1; |