From 4a91891e94790201e3abc506e943d89cc6da601a Mon Sep 17 00:00:00 2001 From: tmk Date: Mon, 3 Dec 2012 15:08:23 +0900 Subject: [PATCH] Fix debug pirnt and magic key.(M0110) --- protocol/m0110.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/m0110.c b/protocol/m0110.c index a669c85a..8bf7cfe4 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; }