diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-07 22:33:36 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-07 22:33:36 +0000 |
commit | 1f83abe6f42c302cf3af7e16e5bb02d886a2c82a (patch) | |
tree | 0d649b5dd7d86880dfc82dd1c1199e66e6933e46 /Demos/Host | |
parent | c7aceb2c7f625b8256dfe4f80177beb63911979a (diff) | |
download | lufa-1f83abe6f42c302cf3af7e16e5bb02d886a2c82a.tar.gz lufa-1f83abe6f42c302cf3af7e16e5bb02d886a2c82a.tar.bz2 lufa-1f83abe6f42c302cf3af7e16e5bb02d886a2c82a.zip |
Renamed the the TotalHIDReports element of the HID descriptor structure in the HID class demos to TotalReportDescriptors, to be more accurate of the element's function (thanks to Brian Dickman).
Diffstat (limited to 'Demos/Host')
-rw-r--r-- | Demos/Host/KeyboardHostWithParser/HIDReport.h | 2 | ||||
-rw-r--r-- | Demos/Host/MouseHostWithParser/HIDReport.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/KeyboardHostWithParser/HIDReport.h b/Demos/Host/KeyboardHostWithParser/HIDReport.h index a128b8e97..20968872e 100644 --- a/Demos/Host/KeyboardHostWithParser/HIDReport.h +++ b/Demos/Host/KeyboardHostWithParser/HIDReport.h @@ -63,7 +63,7 @@ uint16_t HIDSpec; /**< Implemented HID class specification, in BCD encoded format */
uint8_t CountryCode; /**< Country code value for localized hardware */
- uint8_t TotalHIDReports; /**< Total number of HID report descriptors in the current interface */
+ uint8_t TotalHIDDescriptors; /**< Total number of HID report descriptors in the current interface */
uint8_t HIDReportType; /**< HID report type of the first HID report descriptor */
uint16_t HIDReportLength; /**< Total size in bytes of the first HID report descriptor */
diff --git a/Demos/Host/MouseHostWithParser/HIDReport.h b/Demos/Host/MouseHostWithParser/HIDReport.h index a4fc76fa7..b24885544 100644 --- a/Demos/Host/MouseHostWithParser/HIDReport.h +++ b/Demos/Host/MouseHostWithParser/HIDReport.h @@ -72,7 +72,7 @@ uint16_t HIDSpec; /**< Implemented HID class specification, in BCD encoded format */
uint8_t CountryCode; /**< Country code value for localized hardware */
- uint8_t TotalHIDReports; /**< Total number of HID report descriptors in the current interface */
+ uint8_t TotalHIDDescriptors; /**< Total number of HID report descriptors in the current interface */
uint8_t HIDReportType; /**< HID report type of the first HID report descriptor */
uint16_t HIDReportLength; /**< Total size in bytes of the first HID report descriptor */
|