aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-06-19 04:34:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-06-19 04:34:35 +0000
commitbeb0b2bda0c45e958e88933a055d409e42fa0a0b (patch)
tree2a8db61b0ccdee8fcfb3d1ef551bf76049fb28bf /LUFA
parentdfa547164a1f9aefe202041e61075852f6e47191 (diff)
downloadlufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.tar.gz
lufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.tar.bz2
lufa-beb0b2bda0c45e958e88933a055d409e42fa0a0b.zip
Move LUFA compile time options to a new section in the application makefiles for clarity.
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/ManPages/FutureChanges.txt2
-rw-r--r--LUFA/ManPages/MigrationInformation.txt5
2 files changed, 4 insertions, 3 deletions
diff --git a/LUFA/ManPages/FutureChanges.txt b/LUFA/ManPages/FutureChanges.txt
index 35411f2ab..53f9b3ae0 100644
--- a/LUFA/ManPages/FutureChanges.txt
+++ b/LUFA/ManPages/FutureChanges.txt
@@ -22,5 +22,5 @@
* - Remake AVRStudio project files
* - Master LUFA include file
* - Debug mode for pipe/endpoint calls
- * - Add hub support to match Atmel's stack (thanks to the Atmel engineer who said it wasn't possible :P)
+ * - Add hub support to match Atmel's stack
*/
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt
index d46ddd02b..f1b5f55ce 100644
--- a/LUFA/ManPages/MigrationInformation.txt
+++ b/LUFA/ManPages/MigrationInformation.txt
@@ -13,14 +13,15 @@
* \section Sec_MigrationXXXXXX Migrating from 090605 to XXXXXX
*
* <b>All</b>
- * - The "Simple Scheduler" has been <i>deprecated</i>, as it was little more than an abtracted loop and caused much confusion. User
- * applications using the scheduler should switch to regular loops instead. The scheduler code will be removed in a future
+ * - The "Simple Scheduler" has been <i>deprecated</i>, as it was little more than an abtracted loop and caused much confusion.
+ * User applications using the scheduler should switch to regular loops instead. The scheduler code will be removed in a future
* release.
* - The "Dynamic Memory Block Allocator" has been removed, as it was unused in (and unrelated to) the LUFA library and never
* used in user applications. The library is available from the author's website for those wishing to still use it in their
* applications.
*
* <b>Host Mode</b>
+ * - The HIDParser.c module has moved from LUFA/Drivers/USB/Class/ to LUFA/Drivers/USB/Class/Host/.
* - 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.