X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/6a10d6b465be27db090d760dc0fbe722c94e4344..6380d057f8911f5d09bdffff4220aa9602df49e2:/LUFA/Drivers/USB/Class/HIDParser.h diff --git a/LUFA/Drivers/USB/Class/HIDParser.h b/LUFA/Drivers/USB/Class/HIDParser.h index 314d08072..ad242fe56 100644 --- a/LUFA/Drivers/USB/Class/HIDParser.h +++ b/LUFA/Drivers/USB/Class/HIDParser.h @@ -44,6 +44,14 @@ * HID_INCLUDE_CONSTANT_DATA_ITEMS tokens in the user project makefile, passing them to the compiler via the -D * switch. */ + +/** \ingroup Group_USB + * @defgroup Group_HIDParser HID Report Parser + * + * Functions, macros, variables, enums and types related to the parsing of HID class device report descriptors. + * + * @{ + */ #ifndef __HIDPARSER_H__ #define __HIDPARSER_H__ @@ -220,7 +228,7 @@ bool GetReportItemInfo(const uint8_t* ReportData, HID_ReportItem_t* const ReportItem) ATTR_NON_NULL_PTR_ARG(1, 2); - /** Retreives the given report item's value out of the Value member of the report item's + /** Retrieves the given report item's value out of the Value member of the report item's * HID_ReportItem_t structure and places it into the correct position in the HID report * buffer. The report buffer is assumed to have the appropriate bits cleared before calling * this function (i.e., the buffer should be explicitly cleared before report values are added). @@ -250,3 +258,5 @@ #endif #endif + +/** @} */