diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-13 10:07:25 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-13 10:07:25 +0000 |
commit | e625fd6df33ab2112779728622a717589f0b8417 (patch) | |
tree | e10d4c5a8019c4c4f4e4bb169d03a9d49ab445b9 /Demos/Host/LowLevel/KeyboardHostWithParser | |
parent | 2626ecb261e3cac22c602a92034b32c4e6d2be87 (diff) | |
download | lufa-e625fd6df33ab2112779728622a717589f0b8417.tar.gz lufa-e625fd6df33ab2112779728622a717589f0b8417.tar.bz2 lufa-e625fd6df33ab2112779728622a717589f0b8417.zip |
Corrected the name of the misnamed USB_GetDeviceConfigDescriptor() function to USB_Host_GetDeviceConfigDescriptor().
Diffstat (limited to 'Demos/Host/LowLevel/KeyboardHostWithParser')
-rw-r--r-- | Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c b/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c index 01fb09e64..73e0abe87 100644 --- a/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c +++ b/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c @@ -52,7 +52,7 @@ uint8_t ProcessConfigurationDescriptor(void) uint16_t CurrConfigBytesRem;
/* Retrieve the entire configuration descriptor into the allocated buffer */
- switch (USB_GetDeviceConfigDescriptor(1, &CurrConfigBytesRem, ConfigDescriptorData, sizeof(ConfigDescriptorData)))
+ switch (USB_Host_GetDeviceConfigDescriptor(1, &CurrConfigBytesRem, ConfigDescriptorData, sizeof(ConfigDescriptorData)))
{
case HOST_GETCONFIG_Successful:
break;
|