Synchronise with the 090605 release.
authorDean Camera <dean@fourwalledcubicle.com>
Fri, 5 Jun 2009 06:46:23 +0000 (06:46 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Fri, 5 Jun 2009 06:46:23 +0000 (06:46 +0000)
LUFA/ChangeLog.txt
LUFA/Drivers/USB/Class/Device/HID.h
LUFA/MigrationInformation.txt

index 8c14253..03c645a 100644 (file)
   *\r
   *  \section Sec_ChangeLogXXXXXX Version XXXXXX\r
   *\r
   *\r
   *  \section Sec_ChangeLogXXXXXX Version XXXXXX\r
   *\r
+  *  - Removed psuedo-scheduler, dynamic memory block allocator from the library (no longer needed and not used respectively)\r
+  *  - Added new class drivers and matching demos to the library for rapid application development\r
+  *\r
+  *\r
+  *  \section Sec_ChangeLog090605 Version 090605\r
+  *\r
   *  - Fixed bug in RNDISEthernet and DualCDC demos not using the correct USB_ControlRequest structure for control request data\r
   *  - Fixed documentation showing incorrect USB mode support on the supported AVRs list\r
   *  - Fixed RNDISEthernet not working under Linux due to Linux requiring an "optional" RNDIS request which was unhandled\r
   *  - Fixed bug in RNDISEthernet and DualCDC demos not using the correct USB_ControlRequest structure for control request data\r
   *  - Fixed documentation showing incorrect USB mode support on the supported AVRs list\r
   *  - Fixed RNDISEthernet not working under Linux due to Linux requiring an "optional" RNDIS request which was unhandled\r
@@ -37,7 +43,6 @@
   *    LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs\r
   *  - Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure\r
   *  - Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt\r
   *    LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs\r
   *  - Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure\r
   *  - Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt\r
-  *  - Removed psuedo-scheduler, dynamic memory block allocator from the library (no longer needed and not used respectively)\r
   *\r
   *\r
   *  \section Sec_ChangeLog090510 Version 090510\r
   *\r
   *\r
   *  \section Sec_ChangeLog090510 Version 090510\r
index 4fd6f2c..f863f81 100644 (file)
                 *  within the user application, and passed to each of the HID class driver functions as the\r
                 *  HIDInterfaceInfo parameter. The contents of this structure should be set to their correct\r
                 *  values when used, or ommitted to force the library to use default values.\r
                 *  within the user application, and passed to each of the HID class driver functions as the\r
                 *  HIDInterfaceInfo parameter. The contents of this structure should be set to their correct\r
                 *  values when used, or ommitted to force the library to use default values.\r
+                *\r
+                *  Note that for the HID class driver, host-to-device reports are received via HID class requests\r
+                *  rather than a dedicated endpoint to simplify the driver and its interface.\r
                 */\r
                typedef struct\r
                {\r
                 */\r
                typedef struct\r
                {\r
index eed15c4..cbf5b93 100644 (file)
  *  to the next version released. It does not indicate all new additions to the library in each version change, only\r
  *  areas relevant to making older projects compatible with the API changes of each new release.\r
  *\r
  *  to the next version released. It does not indicate all new additions to the library in each version change, only\r
  *  areas relevant to making older projects compatible with the API changes of each new release.\r
  *\r
- * \section Sec_MigrationXXXXXX Migrating from 090510 to XXXXXX\r
+ * \section Sec_Migration090605 Migrating from 090510 to 090605\r
+ *\r
+ *\r
+ * \section Sec_Migration090605 Migrating from 090510 to 090605\r
  *\r
  *  <b>Device Mode</b>\r
  *    - Support for non-control data endpoint interrupts has been dropped due to many issues in the implementation. All existing\r
  *\r
  *  <b>Device Mode</b>\r
  *    - Support for non-control data endpoint interrupts has been dropped due to many issues in the implementation. All existing\r