From 6a7c298c0f7119e44e18de15d714cd8b938e3bef Mon Sep 17 00:00:00 2001
From: Dean Camera <dean@fourwalledcubicle.com>
Date: Fri, 5 Jun 2009 06:46:23 +0000
Subject: [PATCH] Synchronise with the 090605 release.

---
 LUFA/ChangeLog.txt                  | 7 ++++++-
 LUFA/Drivers/USB/Class/Device/HID.h | 3 +++
 LUFA/MigrationInformation.txt       | 5 ++++-
 3 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/LUFA/ChangeLog.txt b/LUFA/ChangeLog.txt
index 8c142532e..03c645af2 100644
--- a/LUFA/ChangeLog.txt
+++ b/LUFA/ChangeLog.txt
@@ -15,6 +15,12 @@
   *
   *  \section Sec_ChangeLogXXXXXX Version XXXXXX
   *
+  *  - Removed psuedo-scheduler, dynamic memory block allocator from the library (no longer needed and not used respectively)
+  *  - Added new class drivers and matching demos to the library for rapid application development
+  *
+  *
+  *  \section Sec_ChangeLog090605 Version 090605
+  *
   *  - Fixed bug in RNDISEthernet and DualCDC demos not using the correct USB_ControlRequest structure for control request data
   *  - Fixed documentation showing incorrect USB mode support on the supported AVRs list
   *  - Fixed RNDISEthernet not working under Linux due to Linux requiring an "optional" RNDIS request which was unhandled
@@ -37,7 +43,6 @@
   *    LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs
   *  - Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure
   *  - Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt
-  *  - Removed psuedo-scheduler, dynamic memory block allocator from the library (no longer needed and not used respectively)
   *
   *
   *  \section Sec_ChangeLog090510 Version 090510
diff --git a/LUFA/Drivers/USB/Class/Device/HID.h b/LUFA/Drivers/USB/Class/Device/HID.h
index 4fd6f2c22..f863f811d 100644
--- a/LUFA/Drivers/USB/Class/Device/HID.h
+++ b/LUFA/Drivers/USB/Class/Device/HID.h
@@ -104,6 +104,9 @@
 		 *  within the user application, and passed to each of the HID class driver functions as the
 		 *  HIDInterfaceInfo parameter. The contents of this structure should be set to their correct
 		 *  values when used, or ommitted to force the library to use default values.
+		 *
+		 *  Note that for the HID class driver, host-to-device reports are received via HID class requests
+		 *  rather than a dedicated endpoint to simplify the driver and its interface.
 		 */
 		typedef struct
 		{
diff --git a/LUFA/MigrationInformation.txt b/LUFA/MigrationInformation.txt
index eed15c4f4..cbf5b936d 100644
--- a/LUFA/MigrationInformation.txt
+++ b/LUFA/MigrationInformation.txt
@@ -10,7 +10,10 @@
  *  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_MigrationXXXXXX Migrating from 090510 to XXXXXX
+ * \section Sec_Migration090605 Migrating from 090510 to 090605
+ *
+ *
+ * \section Sec_Migration090605 Migrating from 090510 to 090605
  *
  *  <b>Device Mode</b>
  *    - Support for non-control data endpoint interrupts has been dropped due to many issues in the implementation. All existing
-- 
GitLab