diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-04 05:18:43 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-04 05:18:43 +0000 |
commit | ba8ffa4cb70a45f4e487a874276759d81ae8ae2e (patch) | |
tree | 8e79babeeb60718effd321758943f4c2292e6177 /Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h | |
parent | 87b2572ae50d20f04dfa6bfbd9e0b8b20ee650e9 (diff) | |
download | lufa-ba8ffa4cb70a45f4e487a874276759d81ae8ae2e.tar.gz lufa-ba8ffa4cb70a45f4e487a874276759d81ae8ae2e.tar.bz2 lufa-ba8ffa4cb70a45f4e487a874276759d81ae8ae2e.zip |
Add support for Mouse Scrollwheel to the MouseHostWithParser demos.
Diffstat (limited to 'Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h')
-rw-r--r-- | Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h index 894c1d28a..6eed93d94 100644 --- a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h +++ b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h @@ -78,6 +78,9 @@ /** HID Report Descriptor Usage value for a Y axis movement */
#define USAGE_Y 0x31
+ /** HID Report Descriptor Usage value for a Scroll Wheel movement */
+ #define USAGE_SCROLL_WHEEL 0x38
+
/* Function Prototypes: */
void SetupHardware(void);
|