Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
b27f3553
Commit
b27f3553
authored
Nov 15, 2010
by
Dean Camera
Browse files
Fixed incorrect event name in the Benito project.
parent
f2324fc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Projects/Benito/Benito.c
View file @
b27f3553
...
...
@@ -199,8 +199,11 @@ void EVENT_USB_Device_ConfigurationChanged(void)
LEDs_SetAllLEDs
(
ConfigSuccess
?
LEDS_NO_LEDS
:
LEDMASK_ERROR
);
}
/** Event handler for the library USB Unhandled Control Request event. */
void
EVENT_USB_Device_UnhandledControlRequest
(
void
)
/** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to
* 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
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment