From 06e3f8485612e5f7e46711530a63312c5f62a80b Mon Sep 17 00:00:00 2001 From: tmk Date: Sun, 23 Sep 2018 12:09:39 +0900 Subject: [PATCH] xt_usb: Fix scan code print for debug --- converter/xt_usb/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/converter/xt_usb/matrix.c b/converter/xt_usb/matrix.c index fe4eebf3..f6784573 100644 --- a/converter/xt_usb/matrix.c +++ b/converter/xt_usb/matrix.c @@ -92,7 +92,7 @@ uint8_t matrix_scan(void) uint8_t code = xt_host_recv(); if (!code) return 0; - xprintf("%02X ", code); + dprintf("%02X ", code); switch (state) { case INIT: switch (code) { -- 2.44.0