Add consumer/system control feature to LUFA.

This commit is contained in:
tmk 2012-06-28 20:15:56 +09:00
parent a9a3610dd4
commit 3d81d5221e
10 changed files with 209 additions and 96 deletions

View 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");
}