From: tmk Date: Tue, 17 Apr 2018 01:55:29 +0000 (+0900) Subject: adb_usb: Add debug print for handler_id X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=961f0aab979fbc04a445c7188d548a5c92eb40aa;p=max%2Ftmk_keyboard.git adb_usb: Add debug print for handler_id --- diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c index 7b371c5b..966ccf52 100644 --- a/converter/adb_usb/matrix.c +++ b/converter/adb_usb/matrix.c @@ -76,6 +76,7 @@ void matrix_init(void) is_iso_layout = false; break; } + xprintf("hadler_id: %02X, is_iso_layout: %s\n", handler_id, (is_iso_layout ? "yes" : "no")); // Adjustable keyboard media keys: address=0x07 and handlerID=0x02 has_media_keys = (0x02 == (adb_host_talk(ADB_ADDR_APPLIANCE, ADB_REG_3) & 0xff));