Fixed incorrect event name in the Benito project.

This commit is contained in:
Dean Camera 2010-11-15 08:24:18 +00:00
parent f2324fc2b4
commit b27f35536d
1 changed files with 5 additions and 2 deletions

View File

@ -199,8 +199,11 @@ void EVENT_USB_Device_ConfigurationChanged(void)
LEDs_SetAllLEDs(ConfigSuccess ? LEDS_NO_LEDS : LEDMASK_ERROR); LEDs_SetAllLEDs(ConfigSuccess ? LEDS_NO_LEDS : LEDMASK_ERROR);
} }
/** Event handler for the library USB Unhandled Control Request event. */ /** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to
void EVENT_USB_Device_UnhandledControlRequest(void) * the device from the USB host before passing along unhandled control requests to the library for processing
* internally.
*/
void EVENT_USB_Device_ControlRequest(void)
{ {
CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface); CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
} }