projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Oops - with new changes to the way the device Configuration Descriptor is retrieved...
[pub/USBasp.git]
/
Demos
/
Host
/
LowLevel
/
KeyboardHostWithParser
/
ConfigDescriptor.c
diff --git
a/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c
b/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c
index
7ab0a18
..
d09e4c4
100644
(file)
--- a/
Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c
+++ b/
Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c
@@
-81,7
+81,7
@@
uint8_t ProcessConfigurationDescriptor(void)
}
\r
\r
/* Save the HID report size for later use */
\r
}
\r
\r
/* Save the HID report size for later use */
\r
- HIDReportSize = DESCRIPTOR_CAST(C
onfigDescriptorData
, USB_Descriptor_HID_t).HIDReportLength;
\r
+ HIDReportSize = DESCRIPTOR_CAST(C
urrConfigLocation
, USB_Descriptor_HID_t).HIDReportLength;
\r
\r
/* Get the keyboard interface's data endpoint descriptor */
\r
if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation,
\r
\r
/* Get the keyboard interface's data endpoint descriptor */
\r
if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation,
\r
@@
-92,7
+92,7
@@
uint8_t ProcessConfigurationDescriptor(void)
}
\r
\r
/* Retrieve the endpoint address from the endpoint descriptor */
\r
}
\r
\r
/* Retrieve the endpoint address from the endpoint descriptor */
\r
- USB_Descriptor_Endpoint_t* EndpointData = DESCRIPTOR_PCAST(C
onfigDescriptorData
, USB_Descriptor_Endpoint_t);
\r
+ USB_Descriptor_Endpoint_t* EndpointData = DESCRIPTOR_PCAST(C
urrConfigLocation
, USB_Descriptor_Endpoint_t);
\r
\r
/* Configure the keyboard data pipe */
\r
Pipe_ConfigurePipe(KEYBOARD_DATAPIPE, EP_TYPE_INTERRUPT, PIPE_TOKEN_IN,
\r
\r
/* Configure the keyboard data pipe */
\r
Pipe_ConfigurePipe(KEYBOARD_DATAPIPE, EP_TYPE_INTERRUPT, PIPE_TOKEN_IN,
\r