mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-14 14:40:26 +00:00
HID mouse can now support some while mice. Problems with Microsoft mice
This commit is contained in:
parent
81746b5117
commit
c7fe4a15e9
2 changed files with 4 additions and 1 deletions
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue