Ensure that the previous HID reports in the HID device class driver are kept per-instance, rather than per-device.

This commit is contained in:
Dean Camera 2009-07-30 14:40:42 +00:00
parent 72932e2780
commit 7227e133a9
2 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,9 @@
bool UsingReportProtocol; /**< Indicates if the HID interface is set to Boot or Report protocol mode */
uint16_t IdleCount; /**< Report idle period, in mS, set by the host */
uint16_t IdleMSRemaining; /**< Total number of mS remaining before the idle period elapsed - this should be
* decremented by the user application if non-zero each millisecond */
* decremented by the user application if non-zero each millisecond */
uint8_t PreviousReportINData[HID_MAX_REPORT_SIZE]; /**< Previously generated report from the HID interface */
} State; /**< State data for the USB class interface within the device. All elements in this section
* are reset to their defaults when the interface is enumerated.
*/