aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-10-11 06:20:18 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-10-11 06:20:18 +0000
commit1a4a26271e32fba6e2430b7869ec4a8b4242e6e2 (patch)
tree42033644a25aad1d5f901a75b9363e3dec025875 /LUFA
parentbeb069b9b845da02de07e4e3e0149e84004d2445 (diff)
downloadlufa-1a4a26271e32fba6e2430b7869ec4a8b4242e6e2.tar.gz
lufa-1a4a26271e32fba6e2430b7869ec4a8b4242e6e2.tar.bz2
lufa-1a4a26271e32fba6e2430b7869ec4a8b4242e6e2.zip
Added User Application APIs to the CDC and DFU class bootloaders.
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/ManPages/ChangeLog.txt19
-rw-r--r--LUFA/ManPages/ConfiguringApps.txt2
-rw-r--r--LUFA/ManPages/MigrationInformation.txt3
-rw-r--r--LUFA/Version.h4
4 files changed, 25 insertions, 3 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt
index 6b1fc877f..55e12414c 100644
--- a/LUFA/ManPages/ChangeLog.txt
+++ b/LUFA/ManPages/ChangeLog.txt
@@ -6,6 +6,25 @@
/** \page Page_ChangeLog Project Changelog
*
+ * \section Sec_ChangeLogXXXXXX Version XXXXXX
+ * <b>New:</b>
+ * - Core:
+ * - None
+ * - Library Applications:
+ * - Added User Application APIs to the CDC and DFU class bootloaders
+ *
+ * <b>Changed:</b>
+ * - Core:
+ * - None
+ * - Library Applications:
+ * - None
+ *
+ * <b>Fixed:</b>
+ * - Core:
+ * - None
+ * - Library Applications:
+ * - None
+ *
* \section Sec_ChangeLog111009 Version 111009
* <b>New:</b>
* - Core:
diff --git a/LUFA/ManPages/ConfiguringApps.txt b/LUFA/ManPages/ConfiguringApps.txt
index c4a1ce224..6caf185c1 100644
--- a/LUFA/ManPages/ConfiguringApps.txt
+++ b/LUFA/ManPages/ConfiguringApps.txt
@@ -52,7 +52,7 @@
*
* If you are not using any board-specific drivers in the LUFA library, or you are using a custom board layout, change this to read
* "USER" (no quotes) instead of a standard board name. If the USER board type is selected and the application makes use of one or more
- * board-specific hardware drivers inside the LUFA library, then the appropriate stub drives files should be copied from the /BoardStubs/
+ * board-specific hardware drivers inside the LUFA library, then the appropriate stub drives files should be copied from the \c /CodeTemplates/DriverStubs/
* directory into a /Board/ folder inside the application directory, and the stub driver completed with the appropriate code to drive the
* custom board's hardware.
*
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt
index 7190d65c0..14ac86bb4 100644
--- a/LUFA/ManPages/MigrationInformation.txt
+++ b/LUFA/ManPages/MigrationInformation.txt
@@ -10,6 +10,9 @@
* 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 111009 to XXXXXX
+ * None
+ *
* \section Sec_Migration111009 Migrating from 110528 to 111009
* <b>Non-USB Library Components</b>
* - The \c JTAG_DEBUG_ASSERT() macro has been renamed \ref JTAG_ASSERT() to be consistent with \ref STDOUT_ASSERT().
diff --git a/LUFA/Version.h b/LUFA/Version.h
index 38dd33fe2..d8d740280 100644
--- a/LUFA/Version.h
+++ b/LUFA/Version.h
@@ -43,10 +43,10 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** Indicates the version number of the library, as an integer. */
- #define LUFA_VERSION_INTEGER 0x111009
+ #define LUFA_VERSION_INTEGER 0x000000
/** Indicates the version number of the library, as a string. */
- #define LUFA_VERSION_STRING "111009"
+ #define LUFA_VERSION_STRING "000000"
#endif