diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 03:56:51 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 03:56:51 +0000 |
commit | 50f4a3b6250ca0371ca3483f1b5e49e1fa0d9b08 (patch) | |
tree | ec479d037ea5ec5c1f2ff8bbb2d30f0418a1d818 /Demos/Host | |
parent | 179691be6e529c088b26a89166b870cd120f29da (diff) | |
download | lufa-50f4a3b6250ca0371ca3483f1b5e49e1fa0d9b08.tar.gz lufa-50f4a3b6250ca0371ca3483f1b5e49e1fa0d9b08.tar.bz2 lufa-50f4a3b6250ca0371ca3483f1b5e49e1fa0d9b08.zip |
Fix build and Doxygen errors.
Diffstat (limited to 'Demos/Host')
-rw-r--r-- | Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c | 4 | ||||
-rw-r--r-- | Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c | 4 | ||||
-rw-r--r-- | Demos/Host/LowLevel/makefile | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c b/Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c index 47ae77677..bfdf64276 100644 --- a/Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c +++ b/Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c @@ -41,9 +41,9 @@ * routine will read in the entire configuration descriptor, and configure the hosts pipes to correctly communicate
* with compatible devices.
*
- * This routine searches for a CDC interface descriptor containing bulk data IN and OUT endpoints, and an interrupt event endpoint.
+ * This routine searches for a RNDIS interface descriptor containing bulk data IN and OUT endpoints, and an interrupt event endpoint.
*
- * \return An error code from the \ref CDCHost_GetConfigDescriptorDataCodes_t enum.
+ * \return An error code from the \ref RNDISHost_GetConfigDescriptorDataCodes_t enum.
*/
uint8_t ProcessConfigurationDescriptor(void)
{
diff --git a/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c b/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c index bde625049..9916baca8 100644 --- a/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c +++ b/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c @@ -43,7 +43,7 @@ uint32_t RequestID = 0; /** Function to send the given encapsulated RNDIS command to the device.
*
* \param[in] Buffer Source command data buffer to send to the device
- * \param[in] Bytes Number of bytes to send
+ * \param[in] Length Number of bytes to send
*
* \return A value from the USB_Host_SendControlErrorCodes_t enum
*/
@@ -67,7 +67,7 @@ uint8_t RNDIS_SendEncapsulatedCommand(void* Buffer, uint16_t Length) /** Function to receive the given encapsulated RNDIS response from the device.
*
* \param[out] Buffer Destination command data buffer to write read data from the device to
- * \param[in] Bytes Number of bytes to read
+ * \param[in] Length Number of bytes to read
*
* \return A value from the USB_Host_SendControlErrorCodes_t enum
*/
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile index 316b5c5a2..a69b25ba4 100644 --- a/Demos/Host/LowLevel/makefile +++ b/Demos/Host/LowLevel/makefile @@ -44,8 +44,8 @@ all: make -C StillImageHost clean make -C StillImageHost all - make -C RNDISHost clean - make -C RNDISHost all + make -C RNDISEthernetHost clean + make -C RNDISEthernetHost all %: make -C CDCHost $@ @@ -59,4 +59,4 @@ all: make -C MouseHostWithParser $@ make -C PrinterHost $@ make -C StillImageHost $@ - make -C RNDISHost $@ + make -C RNDISEthernetHost $@ |