From: tmk Date: Sun, 23 Sep 2018 03:09:39 +0000 (+0900) Subject: xt_usb: Fix scan code print for debug X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=06e3f8485612e5f7e46711530a63312c5f62a80b;p=max%2Ftmk_keyboard.git xt_usb: Fix scan code print for debug --- 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) {