aboutsummaryrefslogtreecommitdiff
path: root/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-08-16 12:37:28 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-08-16 12:37:28 +0000
commitd990550dc3f2c25baf2357382f0198022431804d (patch)
tree37eea1ddb5d092a50a7763b8310e665bbc95a931 /Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
parent42d39cc6ad08e7557a720bb430e5086d518b7475 (diff)
Fix misspelt event name in the Class driver USBtoSerial demo, preventing correct operation.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@742 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c')
-rw-r--r--Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c b/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
index 8ef07f1c..c46bb5d0 100644
--- a/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
+++ b/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
@@ -137,7 +137,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
}
/** Event handler for the library USB Unhandled Control Request event. */
-void EVENT_USB_Device_UnhandledControlPacket(void)
+void EVENT_USB_Device_UnhandledControlRequest(void)
{
CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
}