aboutsummaryrefslogtreecommitdiff
path: root/LUFA
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-09-29 07:15:09 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-09-29 07:15:09 +0000
commitbc8a14bfecc415ca0b5aa50d2faaec385dc3870c (patch)
tree2a976187584d0cdde6af42d0fd5f0f883a6b7f86 /LUFA
parent23792fc9e8b4a623cbf30a520d1b853e8a20f3c5 (diff)
Add information on the new MouseHostDevice dual role demo to the library documentation. Add a 0x prefix to the LUFA_VERSION_INTEGER define to ensure that it is stored as BCD, and not an octal value.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@848 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/ManPages/ChangeLog.txt2
-rw-r--r--LUFA/ManPages/LibraryApps.txt3
-rw-r--r--LUFA/Version.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt
index 9ef7302c..2cc7896a 100644
--- a/LUFA/ManPages/ChangeLog.txt
+++ b/LUFA/ManPages/ChangeLog.txt
@@ -9,12 +9,14 @@
* \section Sec_ChangeLogXXXXXX Version XXXXXX
*
* <b>New:</b>
+ * - Removed useless "TestApp" demo, added new Dual Role Keyboard/Mouse demo
*
* <b>Changed:</b>
*
* <b>Fixed:</b>
* - Fixed PrinterHost demo returning invalid Device ID data when the attached device does not have a
* device ID (thanks to Andrei Krainev)
+ * - Changed LUFA_VERSION_INTEGER define to use BCD values, to make comparisons eaiser
*
* \section Sec_ChangeLog090924 Version 090924
*
diff --git a/LUFA/ManPages/LibraryApps.txt b/LUFA/ManPages/LibraryApps.txt
index 253802b1..900a82cd 100644
--- a/LUFA/ManPages/LibraryApps.txt
+++ b/LUFA/ManPages/LibraryApps.txt
@@ -86,6 +86,9 @@
* - <b>StillImageHost</b> - Still Image Camera host demo, using the low level LUFA APIs to implement the USB Still Image class
* - <b>Incomplete</b>
* - <b>BluetoothHost</b> - Incomplete Bluetooth host demo, using the low level LUFA APIs to implement the USB Bluetooth class
+ * - <b>DualRole</b>
+ * - <b>ClassDriver</b>
+ * - <b>MouseHostDevice</b> - Dual role Mouse Host and Mouse Device demo, using the library USB CDC Class driver framework
* - <b>Bootloaders</b>
* - <b>DFU</b> - DFU Class USB bootloader, compatible with Atmel's FLIP and the open source dfu-programmer software
* - <b>CDC</b> - CDC Class USB bootloader, compatible with any AVR910 protocol programming software such as AVRDude
diff --git a/LUFA/Version.h b/LUFA/Version.h
index 3cb333eb..712f44fc 100644
--- a/LUFA/Version.h
+++ b/LUFA/Version.h
@@ -41,7 +41,7 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** Indicates the version number of the library, as an integer. */
- #define LUFA_VERSION_INTEGER 000000
+ #define LUFA_VERSION_INTEGER 0x000000
/** Indicates the version number of the library, as a string. */
#define LUFA_VERSION_STRING "XXXXXX"