aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-09 04:27:53 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-09 04:27:53 +0000
commit34f6e0dd33230441b8a91130467b3164e343853e (patch)
treefaa956d17123ea95715e0feda413a23151016edb /LUFA
parentccf5bd19f2d750440043b242cf26fcda09b69cce (diff)
downloadlufa-34f6e0dd33230441b8a91130467b3164e343853e.tar.gz
lufa-34f6e0dd33230441b8a91130467b3164e343853e.tar.bz2
lufa-34f6e0dd33230441b8a91130467b3164e343853e.zip
Deleted Host ClassDriver demos -- not yet started, faster to rebase new ClassDriver demos from the newly schedulerless LowLevel host demos rather than re-convert each demo from the previous scheduler-based implementations.
Fixes to MassStorageHost demo to improve compatibility with more USB drives.
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/ChangeLog.txt2
-rw-r--r--LUFA/Drivers/USB/Class/Device/HID.h1
-rw-r--r--LUFA/MigrationInformation.txt2
3 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/ChangeLog.txt b/LUFA/ChangeLog.txt
index 0410be4ba..4a9d6131a 100644
--- a/LUFA/ChangeLog.txt
+++ b/LUFA/ChangeLog.txt
@@ -22,6 +22,8 @@
* - Changed bootloaders to use FLASHEND rather than the existence of RAMPZ to determine if far FLASH pointers are needed
* - Error status LEDs shown when device endpoint configuration fails to complete
* - MIDI device demo no longer blocks if a note change event is sent while the endpoint is not ready
+ * - Fixes to MassStorageHost for better device compatibility (increase command timeout, change MassStore_WaitForDataReceived()
+ * to only unfreeze and check one data pipe at a time)
*
*
* \section Sec_ChangeLog090605 Version 090605
diff --git a/LUFA/Drivers/USB/Class/Device/HID.h b/LUFA/Drivers/USB/Class/Device/HID.h
index 4a59185ad..7f7975056 100644
--- a/LUFA/Drivers/USB/Class/Device/HID.h
+++ b/LUFA/Drivers/USB/Class/Device/HID.h
@@ -169,6 +169,7 @@
* \param ReportID Report ID of the received output report. If multiple reports are not received via the given HID
* interface, this parameter should be ignored.
* \param ReportData Pointer to a buffer where the received HID report is stored.
+ * \param ReportSize Size in bytes of the received report from the host.
*/
void CALLBACK_USB_HID_ProcessReceivedHIDReport(USB_ClassInfo_HID_t* HIDInterfaceInfo, uint8_t ReportID, void* ReportData, uint16_t ReportSize);
diff --git a/LUFA/MigrationInformation.txt b/LUFA/MigrationInformation.txt
index cbf5b936d..e00517b6b 100644
--- a/LUFA/MigrationInformation.txt
+++ b/LUFA/MigrationInformation.txt
@@ -10,7 +10,7 @@
* to the next version released. It does not indicate all new additions to the library in each version change, only
* areas relevant to making older projects compatible with the API changes of each new release.
*
- * \section Sec_Migration090605 Migrating from 090510 to 090605
+ * \section Sec_MigrationXXXXXX Migrating from 090605 to XXXXXX
*
*
* \section Sec_Migration090605 Migrating from 090510 to 090605