From da2b06fc9b4934db950f8218bb0c17829cd381a9 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 10 Feb 2014 11:53:37 -0600 Subject: HID mouse can now support some while mice. Problems with Microsoft mice --- apps/examples/touchscreen/tc_main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps/examples') diff --git a/apps/examples/touchscreen/tc_main.c b/apps/examples/touchscreen/tc_main.c index 13a192a0d..0eb83ca4e 100644 --- a/apps/examples/touchscreen/tc_main.c +++ b/apps/examples/touchscreen/tc_main.c @@ -197,6 +197,9 @@ int tc_main(int argc, char *argv[]) message(" buttons : %02x\n", sample.buttons); message(" x : %d\n", sample.x); message(" y : %d\n", sample.y); +#ifdef CONFIG_MOUSE_WHEEL + message(" wheel : %d\n", sample.wheel); +#endif } #else /* Read one sample */ -- cgit v1.2.3