diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 04:23:40 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 04:23:40 +0000 |
commit | ab602a8b48e7ba504447bf3d6ec3fb3a69d40e9a (patch) | |
tree | 8c51c1c7d2a4497a1177b78c1c6ae98f59d99780 | |
parent | a04131cf04c88fec4d563064b157751315b5116a (diff) | |
download | lufa-ab602a8b48e7ba504447bf3d6ec3fb3a69d40e9a.tar.gz lufa-ab602a8b48e7ba504447bf3d6ec3fb3a69d40e9a.tar.bz2 lufa-ab602a8b48e7ba504447bf3d6ec3fb3a69d40e9a.zip |
Fix typo in the StillImageHost LowLevel demo, and the CDC Host Class Driver.
-rw-r--r-- | Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/Class/Host/CDC.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c b/Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c index f2e4d4644..6f8aa5179 100644 --- a/Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c +++ b/Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c @@ -81,7 +81,7 @@ void SImage_SendBlockHeader(void) /** Function to receive a PIMA event container from the attached still image device.
*
* \return A value from the Pipe_Stream_RW_ErrorCodes_t enum
- /
+ */
uint8_t SImage_ReceiveEventHeader(void)
{
uint8_t ErrorCode;
diff --git a/LUFA/Drivers/USB/Class/Host/CDC.c b/LUFA/Drivers/USB/Class/Host/CDC.c index e284492a4..cf9dc1ebb 100644 --- a/LUFA/Drivers/USB/Class/Host/CDC.c +++ b/LUFA/Drivers/USB/Class/Host/CDC.c @@ -112,7 +112,7 @@ uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo {
if (Pipe_IsEndpointBound(EndpointData->EndpointAddress))
{
- BidirectionalDataEndpoints = true;
+ CDCInterfaceInfo->State.BidirectionalDataEndpoints = true;
Pipe_DisablePipe();
}
@@ -127,7 +127,7 @@ uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo {
if (Pipe_IsEndpointBound(EndpointData->EndpointAddress))
{
- BidirectionalDataEndpoints = true;
+ CDCInterfaceInfo->State.BidirectionalDataEndpoints = true;
}
else
{
|