aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-09-28 15:56:27 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-09-28 15:56:27 +0000
commite57e08c67237cf73d28afac7f672ec1e74ec308d (patch)
treefbcde1d11f182543074a13c0ca5b8e6e911c7560 /LUFA
parent409c49f057f2d1cdea1fc2856ac20771bc0089d1 (diff)
downloadlufa-e57e08c67237cf73d28afac7f672ec1e74ec308d.tar.gz
lufa-e57e08c67237cf73d28afac7f672ec1e74ec308d.tar.bz2
lufa-e57e08c67237cf73d28afac7f672ec1e74ec308d.zip
Fixed PrinterHost demo returning invalid Device ID data when the attached device does not have a device ID (thanks to Andrei Krainev).
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/Drivers/USB/Class/Host/MassStorage.h2
-rw-r--r--LUFA/ManPages/ChangeLog.txt10
-rw-r--r--LUFA/ManPages/FutureChanges.txt4
-rw-r--r--LUFA/ManPages/MigrationInformation.txt2
4 files changed, 15 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/MassStorage.h b/LUFA/Drivers/USB/Class/Host/MassStorage.h
index a65a352c1..8abe5734a 100644
--- a/LUFA/Drivers/USB/Class/Host/MassStorage.h
+++ b/LUFA/Drivers/USB/Class/Host/MassStorage.h
@@ -97,7 +97,7 @@
*/
typedef struct
{
- uint8_t ReponseCode;
+ uint8_t ResponseCode;
uint8_t SegmentNumber;
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt
index 18b609080..9ef7302ca 100644
--- a/LUFA/ManPages/ChangeLog.txt
+++ b/LUFA/ManPages/ChangeLog.txt
@@ -9,6 +9,16 @@
* \section Sec_ChangeLogXXXXXX Version XXXXXX
*
* <b>New:</b>
+ *
+ * <b>Changed:</b>
+ *
+ * <b>Fixed:</b>
+ * - Fixed PrinterHost demo returning invalid Device ID data when the attached device does not have a
+ * device ID (thanks to Andrei Krainev)
+ *
+ * \section Sec_ChangeLog090924 Version 090924
+ *
+ * <b>New:</b>
* - Added new host mode 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
* - Added new EVENT_USB_Device_StartOfFrame() event, controlled by the new USB_Device_EnableSOFEvents() and
diff --git a/LUFA/ManPages/FutureChanges.txt b/LUFA/ManPages/FutureChanges.txt
index c5f6fe22a..6024a3a30 100644
--- a/LUFA/ManPages/FutureChanges.txt
+++ b/LUFA/ManPages/FutureChanges.txt
@@ -12,10 +12,10 @@
* or post your suggestion as an enhancement request to the project bug tracker.
*
* <b>Targeted for This Release (SVN Development Only):</b>
- * - N/A
+ * - Add hub support to match Atmel's stack
+ * - Add ability to get number of bytes not written with pipe/endpoint write routines after an error
*
* <b>Targeted for Future Releases:</b>
- * - Add hub support to match Atmel's stack
* - Add standardized descriptor names to device and host class driver structures
* - Remake AVRStudio project files
* - Add detailed overviews of how each demo works
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt
index 0070a34ac..081bd9625 100644
--- a/LUFA/ManPages/MigrationInformation.txt
+++ b/LUFA/ManPages/MigrationInformation.txt
@@ -12,6 +12,8 @@
*
* \section Sec_MigrationXXXXXX Migrating from 090810 to XXXXXX
*
+ * \section Sec_Migration090924 Migrating from 090810 to 090924
+ *
* <b>Non-USB Library Components</b>
* - The ADC_Off() function has been renamed to \ref ADC_ShutDown() to be consistent with the rest of the library.
* - The \ref SPI_Init() routine's parameters have changed, so that the clock polarity and data sampling modes can be set. See