aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Mouse/Mouse.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-03-19 14:16:12 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-03-19 14:16:12 +0000
commit88051e78a281f5776538558aec113ff2b66e056c (patch)
treecfdd65c067c9c660b7e3d3f6edcefe25596f5f6f /Demos/Mouse/Mouse.h
parent48400df13c7f9f4f0fd8e7f841d49f9502557cb1 (diff)
downloadlufa-88051e78a281f5776538558aec113ff2b66e056c.tar.gz
lufa-88051e78a281f5776538558aec113ff2b66e056c.tar.bz2
lufa-88051e78a281f5776538558aec113ff2b66e056c.zip
Combined Mouse, MouseViaInt and MouseFullInt demos into a single unified demo.
Corrections to Keyboard demo. Removed AVRISP_Programmer project due to code quality concerns.
Diffstat (limited to 'Demos/Mouse/Mouse.h')
-rw-r--r--Demos/Mouse/Mouse.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Demos/Mouse/Mouse.h b/Demos/Mouse/Mouse.h
index 50908129a..8723b7840 100644
--- a/Demos/Mouse/Mouse.h
+++ b/Demos/Mouse/Mouse.h
@@ -103,6 +103,9 @@
/** Indicates that this module will catch the USB_Disconnect event when thrown by the library. */
HANDLES_EVENT(USB_Disconnect);
+ /** Indicates that this module will catch the USB_Reset event when thrown by the library. */
+ HANDLES_EVENT(USB_Reset);
+
/** Indicates that this module will catch the USB_ConfigurationChanged event when thrown by the library. */
HANDLES_EVENT(USB_ConfigurationChanged);
@@ -110,7 +113,7 @@
HANDLES_EVENT(USB_UnhandledControlPacket);
/* Function Prototypes: */
- bool GetNextReport(USB_MouseReport_Data_t* ReportData);
+ bool CreateMouseReport(USB_MouseReport_Data_t* ReportData);
void UpdateStatus(uint8_t CurrentStatus);
#endif