aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-06-15 03:40:02 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-06-15 03:40:02 +0000
commitdcedde012341a7cfff88c85203e735e99332627e (patch)
treef7570420f8914ebac4023d4ad18b6bd9a5a3630d /LUFA/Drivers/USB/Class
parenta14ece5f5727e5c8c6b32ed144808ee9ec66ac78 (diff)
downloadlufa-dcedde012341a7cfff88c85203e735e99332627e.tar.gz
lufa-dcedde012341a7cfff88c85203e735e99332627e.tar.bz2
lufa-dcedde012341a7cfff88c85203e735e99332627e.zip
Fix HID parser documentation for the default maximum report/path/etc. elements so that it matches the current code values.
Diffstat (limited to 'LUFA/Drivers/USB/Class')
-rw-r--r--LUFA/Drivers/USB/Class/Host/HIDParser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/HIDParser.h b/LUFA/Drivers/USB/Class/Host/HIDParser.h
index b3e5bdee6..017e2f6d0 100644
--- a/LUFA/Drivers/USB/Class/Host/HIDParser.h
+++ b/LUFA/Drivers/USB/Class/Host/HIDParser.h
@@ -101,7 +101,7 @@
#if !defined(HID_MAX_COLLECTIONS) || defined(__DOXYGEN__)
/** Constant indicating the maximum number of COLLECTION items (nested or unnested) that can be
* processed in the report item descriptor. A large value allows for more COLLECTION items to be
- * processed, but consumes more memory. By default this is set to 5 collections, but this can be
+ * processed, but consumes more memory. By default this is set to 10 collections, but this can be
* overridden by defining HID_MAX_COLLECTIONS to another value in the user project makefile, passing
* the define to the compiler using the -D compiler switch.
*/
@@ -122,7 +122,7 @@
/** Constant indicating the maximum number of unique report IDs that can be processed in the report item
* descriptor for the report size information array in the user HID Report Info structure. A large value
* allows for more report ID report sizes to be stored, but consumes more memory. By default this is set
- * to 5 items, but this can be overridden by defining HID_MAX_REPORT_IDS to another value in the user project
+ * to 10 items, but this can be overridden by defining HID_MAX_REPORT_IDS to another value in the user project
* makefile, and passing the define to the compiler using the -D compiler switch. Note that IN, OUT and FEATURE
* items sharing the same report ID consume only one size item in the array.
*/