summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/ChangeLog.txt2
-rw-r--r--apps/examples/touchscreen/tc_main.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index db1afab2c..5f88f72cc 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -818,5 +818,5 @@
an option and can be replaces with the EMACX-like CLE (about 2KB)
(2014-02-02).
* Several changes to restore Windows native build (2014-2-7)
- * apps/examples/touchscreen: Can not be configured to work with a mouse
+ * apps/examples/touchscreen: Can now be configured to work with a mouse
interface as well (2014-2-10).
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 */