diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-05 07:18:08 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-05 07:18:08 +0000 |
commit | 042d3288ad52301c5b0ef69eada03eee83497dda (patch) | |
tree | ac8af86af5a1d81d1c036ef7549f21c37f3ae2c7 /Demos/Device | |
parent | c5038f1bf44aea75f1ae1ed035cb7d523ccfdacb (diff) | |
download | lufa-042d3288ad52301c5b0ef69eada03eee83497dda.tar.gz lufa-042d3288ad52301c5b0ef69eada03eee83497dda.tar.bz2 lufa-042d3288ad52301c5b0ef69eada03eee83497dda.zip |
Fix incorrect Event call name in USBInterrupt.c.
Diffstat (limited to 'Demos/Device')
-rw-r--r-- | Demos/Device/ClassDriver/Mouse/Mouse.c | 2 | ||||
-rw-r--r-- | Demos/Device/ClassDriver/Mouse/Mouse.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Demos/Device/ClassDriver/Mouse/Mouse.c b/Demos/Device/ClassDriver/Mouse/Mouse.c index d26101381..32f8ca667 100644 --- a/Demos/Device/ClassDriver/Mouse/Mouse.c +++ b/Demos/Device/ClassDriver/Mouse/Mouse.c @@ -118,7 +118,7 @@ void EVENT_USB_Device_ConfigurationChanged(void) }
/** Event handler for the library USB Unhandled Control Request event. */
-void EVENT_USB_Device_Device_UnhandledControlRequest(void)
+void EVENT_USB_Device_UnhandledControlRequest(void)
{
HID_Device_ProcessControlRequest(&Mouse_HID_Interface);
}
diff --git a/Demos/Device/ClassDriver/Mouse/Mouse.h b/Demos/Device/ClassDriver/Mouse/Mouse.h index 709077fab..05b73c078 100644 --- a/Demos/Device/ClassDriver/Mouse/Mouse.h +++ b/Demos/Device/ClassDriver/Mouse/Mouse.h @@ -80,10 +80,10 @@ /* Function Prototypes: */
void SetupHardware(void);
- void EVENT_USB_Device_Device_Connect(void);
- void EVENT_USB_Device_Device_Disconnect(void);
- void EVENT_USB_Device_Device_ConfigurationChanged(void);
- void EVENT_USB_Device_Device_UnhandledControlRequest(void);
+ void EVENT_USB_Device_Connect(void);
+ void EVENT_USB_Device_Disconnect(void);
+ void EVENT_USB_Device_ConfigurationChanged(void);
+ void EVENT_USB_Device_UnhandledControlRequest(void);
bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
void* ReportData, uint16_t* ReportSize);
|