aboutsummaryrefslogtreecommitdiff
path: root/protocol
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-12-05 19:45:48 +0900
committertmk <nobody@nowhere>2012-12-05 19:45:48 +0900
commit72dc413a19562b6a67509d4fd6a1cb9c07227d3d (patch)
treebea6b937eccc730cdcb171b892a5f0c306af8ef8 /protocol
parent07dff3425ad849d4c50e437295f3ff6acce6d95e (diff)
parent545f66f649e681d8f100ec53c92bece45a7dda7b (diff)
downloadqmk_firmware-72dc413a19562b6a67509d4fd6a1cb9c07227d3d.tar.gz
qmk_firmware-72dc413a19562b6a67509d4fd6a1cb9c07227d3d.zip
Merge branch 'm0110'
Diffstat (limited to 'protocol')
-rw-r--r--protocol/m0110.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/m0110.c b/protocol/m0110.c
index a669c85a4..8bf7cfe4f 100644
--- a/protocol/m0110.c
+++ b/protocol/m0110.c
@@ -321,7 +321,7 @@ static inline uint8_t instant(void)
321 m0110_send(M0110_INSTANT); 321 m0110_send(M0110_INSTANT);
322 uint8_t data = m0110_recv(); 322 uint8_t data = m0110_recv();
323 if (data != M0110_NULL) { 323 if (data != M0110_NULL) {
324 phex(data); print(" "); 324 debug_hex(data); debug(" ");
325 } 325 }
326 return data; 326 return data;
327} 327}