]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - common/mousekey.c
Add consumer/system control feature to LUFA.
[tmk_firmware.git] / common / mousekey.c
index 76bd0fd3630fcaa8d3744d3b88e60823e3605a01..1d35355b496fe919b65a9a3f49e97bceba65694f 100644 (file)
@@ -121,12 +121,12 @@ void mousekey_clear_report(void)
 static void mousekey_debug(void)
 {
     if (!debug_mouse) return;
-    print("mousekey[btn|x y v h]: ");
+    print("mousekey [btn|x y v h]rep: [");
     phex(report.buttons); print("|");
     phex(report.x); print(" ");
     phex(report.y); print(" ");
     phex(report.v); print(" ");
-    phex(report.h);
+    phex(report.h); print("]");
     phex(mousekey_repeat);
     print("\n");
 }