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 /Bootloaders/TeensyHID | |
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 'Bootloaders/TeensyHID')
-rw-r--r-- | Bootloaders/TeensyHID/Descriptors.c | 2 | ||||
-rw-r--r-- | Bootloaders/TeensyHID/Descriptors.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/TeensyHID/Descriptors.c b/Bootloaders/TeensyHID/Descriptors.c index fc7f51c6c..b1642f16b 100644 --- a/Bootloaders/TeensyHID/Descriptors.c +++ b/Bootloaders/TeensyHID/Descriptors.c @@ -128,7 +128,7 @@ USB_Descriptor_Configuration_t ConfigurationDescriptor = .HIDSpec = VERSION_BCD(01.11),
.CountryCode = 0x00,
- .TotalHIDReports = 0x01,
+ .TotalHIDDescriptors = 1,
.HIDReportType = DTYPE_Report,
.HIDReportLength = sizeof(HIDReport)
},
diff --git a/Bootloaders/TeensyHID/Descriptors.h b/Bootloaders/TeensyHID/Descriptors.h index 24a0cdaa8..2b84734ca 100644 --- a/Bootloaders/TeensyHID/Descriptors.h +++ b/Bootloaders/TeensyHID/Descriptors.h @@ -50,7 +50,7 @@ uint16_t HIDSpec;
uint8_t CountryCode;
- uint8_t TotalHIDReports;
+ uint8_t TotalHIDDescriptors;
uint8_t HIDReportType;
uint16_t HIDReportLength;
|