Added flag to the HID report parser to indicate if a device has multiple reports.
SetIdle requests to the HID device driver with a 0 idle period (send changes only) now only affect the requested HID interface within the device, not all HID interfaces. Apply correct fix to the HID report parser for PUSH items - current HID item attribute stack was being copied in the wrong direction. Fixed HID report parser not resetting the FEATURE item count when a REPORT ID item is encountered.
This commit is contained in:
parent
a7ade9f28d
commit
df29aa37c0
5 changed files with 31 additions and 24 deletions
|
|
@ -10,14 +10,18 @@
|
|||
*
|
||||
* <b>New:</b>
|
||||
* - Added new host class drivers and matching demos to the library for rapid application development
|
||||
* - Added flag to the HID report parser to indicate if a device has multiple reports
|
||||
*
|
||||
* <b>Changed:</b>
|
||||
* - SetIdle requests to the HID device driver with a 0 idle period (send changes only) now only affect the requested
|
||||
* HID interface within the device, not all HID interfaces.
|
||||
*
|
||||
* <b>Fixed:</b>
|
||||
* - Fixed possible lockup in the CDC device class driver, when the host sends data that is a multiple of the
|
||||
* endpoint's bank
|
||||
* - Fixed swapped paremeters in the HID state memory copy call while processing a HID PUSH item in the HID report parser
|
||||
* - Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed
|
||||
* - Fixed HID report parser not resetting the FEATURE item count when a REPORT ID item is encountered
|
||||
*
|
||||
*
|
||||
* \section Sec_ChangeLog090810 Version 090810
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@
|
|||
* -# Convert Host mode demos to class drivers
|
||||
* -# Re-enable Host mode Class driver builds after completion
|
||||
* -# Update Host mode Class Driver demo .txt files
|
||||
* - Add overviews of each of the officially supported boards to the manual
|
||||
* - Add hub support to match Atmel's stack
|
||||
*
|
||||
* <b>Targeted for Future Releases:</b>
|
||||
* - Add standardized descriptor names to device and host class driver structures
|
||||
|
|
@ -26,7 +28,6 @@
|
|||
* - Master LUFA include file rather than per-module includes
|
||||
* - Add multiple-report HID demo to the library
|
||||
* - Add dual role Mouse Host/Keyboard Device demo to the library
|
||||
* - Add hub support to match Atmel's stack
|
||||
* - Change makefiles to allow for absolute LUFA location to be used
|
||||
* - Port LUFA to other architectures
|
||||
* -# AVR32 UC3B series microcontrollers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue