aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/ManPages
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-13 10:07:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-13 10:07:25 +0000
commite625fd6df33ab2112779728622a717589f0b8417 (patch)
treee10d4c5a8019c4c4f4e4bb169d03a9d49ab445b9 /LUFA/ManPages
parent2626ecb261e3cac22c602a92034b32c4e6d2be87 (diff)
downloadlufa-e625fd6df33ab2112779728622a717589f0b8417.tar.gz
lufa-e625fd6df33ab2112779728622a717589f0b8417.tar.bz2
lufa-e625fd6df33ab2112779728622a717589f0b8417.zip
Corrected the name of the misnamed USB_GetDeviceConfigDescriptor() function to USB_Host_GetDeviceConfigDescriptor().
Diffstat (limited to 'LUFA/ManPages')
-rw-r--r--LUFA/ManPages/FutureChanges.txt3
-rw-r--r--LUFA/ManPages/MigrationInformation.txt5
2 files changed, 3 insertions, 5 deletions
diff --git a/LUFA/ManPages/FutureChanges.txt b/LUFA/ManPages/FutureChanges.txt
index 93a9a51dd..5598473ff 100644
--- a/LUFA/ManPages/FutureChanges.txt
+++ b/LUFA/ManPages/FutureChanges.txt
@@ -33,7 +33,4 @@
* -# AVR32 UC3B series microcontrollers
* -# Atmel ARM7 series microcontrollers
* -# Other (commercial) C compilers
- * - Extend AVRISP project
- * -# Add alternate USB-to-Serial mode
- * -# Add alternate USB-to-TWI mode
*/
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt
index e430e2d26..fe58efa1f 100644
--- a/LUFA/ManPages/MigrationInformation.txt
+++ b/LUFA/ManPages/MigrationInformation.txt
@@ -16,6 +16,7 @@
* - The HID_PARSE_UsageStackOverflow HID parser error constant is now named \ref HID_PARSE_UsageListOverflow
* - The \ref CALLBACK_HIDParser_FilterHIDReportItem() HID Parser callback now passes a complete HID_ReportItem_t to the
* user application, instead of just its attributes.
+ * - The USB_GetDeviceConfigDescriptor() function was incorrectly named and is now called \ref USB_Host_GetDeviceConfigDescriptor().
*
<b>No Migration information for this release - all library elements are backwards-compatible with 090924.</b>
*
@@ -29,7 +30,7 @@
* call to SPI_Init() before using the Dataflash driver
*
* <b>Host Mode</b>
- * - The \ref USB_GetDeviceConfigDescriptor() function's parameters and behaviour has changed; the user is required to
+ * - The USB_GetDeviceConfigDescriptor() function's parameters and behaviour has changed; the user is required to
* preallocate the largest allowable buffer, and pass the size of the buffer to the function. This allows for a single
* call to the function to retrieve, size check and validate the Configuration Descriptor rather than having the user
* application perform these intermediatary steps.
@@ -67,7 +68,7 @@
*
* <b>Host Mode</b>
* - The HIDParser.c module has moved from LUFA/Drivers/USB/Class/ to LUFA/Drivers/USB/Class/Host/.
- * - The \ref USB_GetDeviceConfigDescriptor() function now requires the desired configuration index within the device as its first
+ * - The USB_GetDeviceConfigDescriptor() function now requires the desired configuration index within the device as its first
* parameter, to add support for multi-configuration devices. Existing code should use a configuration index of 1 to indicate the
* first configuration descriptor within the device.
* - The non-standard "Ready" host state has been removed. Existing \ref HOST_STATE_Configured code should be moved to the end of