Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
c75f8bf2
Commit
c75f8bf2
authored
Jun 15, 2009
by
Dean Camera
Browse files
More Doxygen fixes - ensure no undocumented function parameters.
parent
234d0a39
Changes
54
Hide whitespace changes
Inline
Side-by-side
Demos/Host/LowLevel/GenericHIDHost/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/KeyboardHost/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/KeyboardHostWithParser/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/MassStorageHost/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/MouseHost/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/MouseHostWithParser/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/Host/LowLevel/StillImageHost/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Demos/OTG/TestApp/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
LUFA/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -592,7 +592,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
LUFA/Drivers/USB/Class/Host/CDC.h
View file @
c75f8bf2
...
...
@@ -50,6 +50,37 @@
#endif
/* Public Interface - May be used in end-application: */
/* Type Defines: */
typedef
struct
{
bool
IsActive
;
/**< Indicates if this class driver is currently attached to the device */
uint8_t
ControlInterfaceNumber
;
/**< Interface number of the CDC control interface within the device */
uint8_t
DataINPipeNumber
;
/**< Pipe number of the CDC interface's IN data pipe */
uint16_t
DataINPipeSize
;
/**< Size in bytes of the CDC interface's IN data pipe */
uint8_t
DataOUTPipeNumber
;
/**< Pipe number of the CDC interface's OUT data pipe */
uint16_t
DataOUTPipeSize
;
/**< Size in bytes of the CDC interface's OUT data pipe */
uint8_t
NotificationEndpointNumber
;
/**< Pipe number of the CDC interface's IN notification endpoint, if used */
uint16_t
NotificationEndpointSize
;
/**< Size in bytes of the CDC interface's IN notification endpoint, if used */
uint8_t
ControlLineState
;
/**< Current control line states */
struct
{
uint32_t
BaudRateBPS
;
/**< Baud rate of the virtual serial port, in bits per second */
uint8_t
CharFormat
;
/**< Character format of the virtual serial port, a value from the
* CDCDevice_CDC_LineCodingFormats_t enum
*/
uint8_t
ParityType
;
/**< Parity setting of the virtual serial port, a value from the
* CDCDevice_LineCodingParity_t enum
*/
uint8_t
DataBits
;
/**< Bits of data per character of the virtual serial port */
}
LineEncoding
;
}
USB_ClassInfo_CDC_Host_t
;
/* Function Prototypes: */
void
CDC_Host_Task
(
void
);
...
...
LUFA/Drivers/USB/Class/Host/MassStorage.h
View file @
c75f8bf2
...
...
@@ -28,7 +28,7 @@
this software.
*/
/** \ingroup Group_USBClassM
assStorage
/** \ingroup Group_USBClassM
S
* @defgroup Group_USBClassMassStorageHost Mass Storage Class Host Mode Driver
*
* \section Module Description
...
...
LUFA/Drivers/USB/Class/Host/StillImage.h
View file @
c75f8bf2
...
...
@@ -28,7 +28,7 @@
this software.
*/
/** \ingroup Group_USBClassS
tillImage
/** \ingroup Group_USBClassS
I
* @defgroup Group_USBClassStillImageHost Still Image Class Host Mode Driver
*
* \section Module Description
...
...
Projects/Magstripe/Doxygen.conf
View file @
c75f8bf2
...
...
@@ -593,7 +593,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE
=
EXCLUDE
=
Documentation
/
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
Projects/Magstripe/Magstripe.c
View file @
c75f8bf2
...
...
@@ -153,6 +153,7 @@ ISR(TIMER0_COMPA_vect, ISR_BLOCK)
/** HID Class driver callback function for the creation of a HID report for the host.
*
* \param HIDInterfaceInfo Pointer to the HID interface structure for the HID interface being referenced
* \param ReportID Report ID requested by the host if non-zero, otherwise callback should set to the generated report ID
* \param ReportData Pointer to the preallocated report buffer where the created report should be stored
*
* \return Number of bytes in the created report
...
...
@@ -201,6 +202,7 @@ uint16_t CALLBACK_USB_HID_CreateNextHIDReport(USB_ClassInfo_HID_Device_t* HIDInt
/** HID Class driver callback function for the processing of a received HID report from the host.
*
* \param HIDInterfaceInfo Pointer to the HID interface structure for the HID interface being referenced
* \param ReportID Report ID of the received report from the host
* \param ReportData Pointer to the report buffer where the received report is stored
* \param ReportSize Size in bytes of the report received from the host
*/
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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