diff options
author | tmk <nobody@nowhere> | 2012-12-03 15:08:23 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-12-05 17:53:41 +0900 |
commit | 07b6c1a58c8ccfd6e5d5bc57e34f6c44c24841a8 (patch) | |
tree | b760577c7afd9961d9ad22536cb5d508ff981e3f /protocol | |
parent | 07dff3425ad849d4c50e437295f3ff6acce6d95e (diff) | |
download | qmk_firmware-07b6c1a58c8ccfd6e5d5bc57e34f6c44c24841a8.tar.gz qmk_firmware-07b6c1a58c8ccfd6e5d5bc57e34f6c44c24841a8.zip |
Fix debug pirnt and magic key.(M0110)
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/m0110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/m0110.c b/protocol/m0110.c index a669c85a48..8bf7cfe4fe 100644 --- a/protocol/m0110.c +++ b/protocol/m0110.c @@ -321,7 +321,7 @@ static inline uint8_t instant(void) m0110_send(M0110_INSTANT); uint8_t data = m0110_recv(); if (data != M0110_NULL) { - phex(data); print(" "); + debug_hex(data); debug(" "); } return data; } |