From 7977663f62627a9561e6180e0548e5a9c83c97c3 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Tue, 29 Sep 2009 07:15:09 +0000 Subject: [PATCH] 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. --- LUFA.pnproj | 2 +- LUFA/ManPages/ChangeLog.txt | 2 ++ LUFA/ManPages/LibraryApps.txt | 3 +++ LUFA/Version.h | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/LUFA.pnproj b/LUFA.pnproj index 5c433fef5e..3eb2671934 100644 --- a/LUFA.pnproj +++ b/LUFA.pnproj @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index 9ef7302ca5..2cc7896a0a 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -9,12 +9,14 @@ * \section Sec_ChangeLogXXXXXX Version XXXXXX * * New: + * - Removed useless "TestApp" demo, added new Dual Role Keyboard/Mouse demo * * Changed: * * Fixed: * - 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 253802b1fd..900a82cdc1 100644 --- a/LUFA/ManPages/LibraryApps.txt +++ b/LUFA/ManPages/LibraryApps.txt @@ -86,6 +86,9 @@ * - StillImageHost - Still Image Camera host demo, using the low level LUFA APIs to implement the USB Still Image class * - Incomplete * - BluetoothHost - Incomplete Bluetooth host demo, using the low level LUFA APIs to implement the USB Bluetooth class + * - DualRole + * - ClassDriver + * - MouseHostDevice - Dual role Mouse Host and Mouse Device demo, using the library USB CDC Class driver framework * - Bootloaders * - DFU - DFU Class USB bootloader, compatible with Atmel's FLIP and the open source dfu-programmer software * - CDC - 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 3cb333ebbd..712f44fc8f 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"