Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
50f4a3b6
Commit
50f4a3b6
authored
Nov 25, 2009
by
Dean Camera
Browse files
Fix build and Doxygen errors.
parent
179691be
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Demos/Device/ClassDriver/CDCMouse/CDCMouse.c
View file @
50f4a3b6
...
...
@@ -192,6 +192,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/GenericHID/GenericHID.c
View file @
50f4a3b6
...
...
@@ -136,6 +136,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/Joystick/Joystick.c
View file @
50f4a3b6
...
...
@@ -130,6 +130,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/Keyboard/Keyboard.c
View file @
50f4a3b6
...
...
@@ -131,6 +131,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/KeyboardMouse/KeyboardMouse.c
View file @
50f4a3b6
...
...
@@ -159,6 +159,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/MassStorageKeyboard/MassStorageKeyboard.c
View file @
50f4a3b6
...
...
@@ -181,6 +181,7 @@ ISR(TIMER0_COMPA_vect, ISR_BLOCK)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Device/ClassDriver/Mouse/Mouse.c
View file @
50f4a3b6
...
...
@@ -130,6 +130,7 @@ void EVENT_USB_Device_StartOfFrame(void)
*
* \param[in] HIDInterfaceInfo Pointer to the HID class interface configuration structure being referenced
* \param[in,out] ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param[in] ReportType Type of the report to create, either REPORT_ITEM_TYPE_In or REPORT_ITEM_TYPE_Feature
* \param[out] ReportData Pointer to a buffer where the created report should be stored
* \param[out] ReportSize Number of bytes written in the report (or zero if no report is to be sent
*
...
...
Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c
View file @
50f4a3b6
...
...
@@ -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
CDC
Host_GetConfigDescriptorDataCodes_t enum.
* \return An error code from the \ref
RNDIS
Host_GetConfigDescriptorDataCodes_t enum.
*/
uint8_t
ProcessConfigurationDescriptor
(
void
)
{
...
...
Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c
View file @
50f4a3b6
...
...
@@ -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
*/
...
...
Demos/Host/LowLevel/makefile
View file @
50f4a3b6
...
...
@@ -44,8 +44,8 @@ all:
make
-C
StillImageHost
clean
make
-C
StillImageHost
all
make
-C
RNDISHost
clean
make
-C
RNDISHost
all
make
-C
RNDIS
Ethernet
Host
clean
make
-C
RNDIS
Ethernet
Host
all
%
:
make
-C
CDCHost
$@
...
...
@@ -59,4 +59,4 @@ all:
make
-C
MouseHostWithParser
$@
make
-C
PrinterHost
$@
make
-C
StillImageHost
$@
make
-C
RNDISHost
$@
make
-C
RNDIS
Ethernet
Host
$@
LUFA.pnproj
View file @
50f4a3b6
This diff is collapsed.
Click to expand it.
LUFA/Drivers/USB/Class/Host/StillImage.h
View file @
50f4a3b6
...
...
@@ -77,7 +77,7 @@
struct
{
bool
IsActive
;
/**< Indicates if the current interface instance is connected to an attached device, valid
* after \ref SI_Host_ConfigurePipes() is called and the Host state machine is in the
* after \ref SI
mage
_Host_ConfigurePipes() is called and the Host state machine is in the
* Configured state
*/
...
...
@@ -94,7 +94,7 @@
}
USB_ClassInfo_SI_Host_t
;
/* Enums: */
/** Enum for the possible error codes returned by the \ref SI_Host_ConfigurePipes() function. */
/** Enum for the possible error codes returned by the \ref SI
mage
_Host_ConfigurePipes() function. */
enum
SIHost_EnumerationFailure_ErrorCodes_t
{
SI_ENUMERROR_NoError
=
0
,
/**< Configuration Descriptor was processed successfully */
...
...
Projects/XPLAINBridge/Doxygen.conf
0 → 100644
View file @
50f4a3b6
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment