diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-24 01:52:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-24 01:52:57 +0000 |
commit | 573a27d90ad2f00bfd2c639d3018e65d29099071 (patch) | |
tree | c8589c95adc33d9701ac9b982cd1d2b5284a76e5 /Demos/Host/ClassDriver/MouseHostWithParser | |
parent | f0fcffd1466257a7e9432d9f7e3fbb06f5977fbb (diff) | |
download | lufa-573a27d90ad2f00bfd2c639d3018e65d29099071.tar.gz lufa-573a27d90ad2f00bfd2c639d3018e65d29099071.tar.bz2 lufa-573a27d90ad2f00bfd2c639d3018e65d29099071.zip |
Fix incorrect names for the HID Host protocol setting routines.
Diffstat (limited to 'Demos/Host/ClassDriver/MouseHostWithParser')
-rw-r--r-- | Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c index 0aa7d4ad6..0beec9a12 100644 --- a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c +++ b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c @@ -104,7 +104,7 @@ int main(void) break;
}
- if (USB_HID_Host_SetReportProtocol(&Mouse_HID_Interface) != 0)
+ if (HID_Host_SetReportProtocol(&Mouse_HID_Interface) != 0)
{
printf("Error Setting Report Protocol Mode or Not a Valid Mouse.\r\n");
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
|