aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/KeyboardMouse
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-05-07 22:33:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-05-07 22:33:36 +0000
commit1f83abe6f42c302cf3af7e16e5bb02d886a2c82a (patch)
tree0d649b5dd7d86880dfc82dd1c1199e66e6933e46 /Demos/Device/KeyboardMouse
parentc7aceb2c7f625b8256dfe4f80177beb63911979a (diff)
downloadlufa-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/Device/KeyboardMouse')
-rw-r--r--Demos/Device/KeyboardMouse/Descriptors.c4
-rw-r--r--Demos/Device/KeyboardMouse/Descriptors.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/KeyboardMouse/Descriptors.c b/Demos/Device/KeyboardMouse/Descriptors.c
index bcb0bf93b..2eb2c6e2e 100644
--- a/Demos/Device/KeyboardMouse/Descriptors.c
+++ b/Demos/Device/KeyboardMouse/Descriptors.c
@@ -184,7 +184,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
.HIDSpec = VERSION_BCD(01.11),
.CountryCode = 0x00,
- .TotalHIDReports = 0x01,
+ .TotalReportDescriptors = 1,
.HIDReportType = DTYPE_Report,
.HIDReportLength = sizeof(KeyboardReport)
},
@@ -231,7 +231,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
.HIDSpec = VERSION_BCD(01.11),
.CountryCode = 0x00,
- .TotalHIDReports = 0x01,
+ .TotalReportDescriptors = 1,
.HIDReportType = DTYPE_Report,
.HIDReportLength = sizeof(MouseReport)
},
diff --git a/Demos/Device/KeyboardMouse/Descriptors.h b/Demos/Device/KeyboardMouse/Descriptors.h
index 59495425c..5540f4af8 100644
--- a/Demos/Device/KeyboardMouse/Descriptors.h
+++ b/Demos/Device/KeyboardMouse/Descriptors.h
@@ -53,7 +53,7 @@
uint16_t HIDSpec;
uint8_t CountryCode;
- uint8_t TotalHIDReports;
+ uint8_t TotalReportDescriptors;
uint8_t HIDReportType;
uint16_t HIDReportLength;