aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-08-16 12:37:28 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-08-16 12:37:28 +0000
commit5d4478b3b4ab9b3e539155bc8f609e188c76547e (patch)
tree37eea1ddb5d092a50a7763b8310e665bbc95a931 /Demos/Device/ClassDriver/USBtoSerial/USBtoSerial.c
parent3a85962f94eccfa86a5db46899bddeaceb79fee6 (diff)
downloadlufa-5d4478b3b4ab9b3e539155bc8f609e188c76547e.tar.gz
lufa-5d4478b3b4ab9b3e539155bc8f609e188c76547e.tar.bz2
lufa-5d4478b3b4ab9b3e539155bc8f609e188c76547e.zip
Fix misspelt event name in the Class driver USBtoSerial demo, preventing correct operation.
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 8ef07f1c3..c46bb5d01 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);
}