diff options
author | tmk <nobody@nowhere> | 2014-10-28 14:41:45 +0900 |
---|---|---|
committer | Jun Wako <wakojun@gmail.com> | 2015-04-22 14:18:13 +0900 |
commit | d5482f29f46174bfa8854653f8a6cab5af97085e (patch) | |
tree | a16b04228512a6a547e834a6a7ecf32f0c5f5160 /tmk_core | |
parent | d42aa47809c97a77c49e9396201c2b5c3956bb54 (diff) |
Fix debug print
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/protocol/ibm4704.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/ibm4704.c b/tmk_core/protocol/ibm4704.c index 152d7e61b6..a10a5e74d9 100644 --- a/tmk_core/protocol/ibm4704.c +++ b/tmk_core/protocol/ibm4704.c @@ -180,7 +180,7 @@ ISR(IBM4704_INT_VECT) ERROR: ibm4704_error = state; while (ibm4704_send(0xFE)) _delay_ms(1); // resend - xprintf("R:%02X\n", data); + xprintf("R:%02X%02X\n", state, data); DONE: state = INIT; data = 0; |