Extend USB_GetDeviceConfigDescriptor() routine to require the configuration number within the device to fetch, to add support for multi-configuration devices.
This commit is contained in:
@@ -53,7 +53,7 @@ uint8_t ProcessConfigurationDescriptor(void)
|
||||
uint8_t FoundEndpoints = 0;
|
||||
|
||||
/* Get Configuration Descriptor size from the device */
|
||||
if (USB_GetDeviceConfigDescriptor(&ConfigDescriptorSize, NULL) != HOST_SENDCONTROL_Successful)
|
||||
if (USB_GetDeviceConfigDescriptor(1, &ConfigDescriptorSize, NULL) != HOST_SENDCONTROL_Successful)
|
||||
return ControlError;
|
||||
|
||||
/* Ensure that the Configuration Descriptor isn't too large */
|
||||
@@ -64,7 +64,7 @@ uint8_t ProcessConfigurationDescriptor(void)
|
||||
ConfigDescriptorData = alloca(ConfigDescriptorSize);
|
||||
|
||||
/* Retrieve the entire configuration descriptor into the allocated buffer */
|
||||
USB_GetDeviceConfigDescriptor(&ConfigDescriptorSize, ConfigDescriptorData);
|
||||
USB_GetDeviceConfigDescriptor(1, &ConfigDescriptorSize, ConfigDescriptorData);
|
||||
|
||||
/* Validate returned data - ensure first entry is a configuration header descriptor */
|
||||
if (DESCRIPTOR_TYPE(ConfigDescriptorData) != DTYPE_Configuration)
|
||||
|
||||
Reference in New Issue
Block a user