diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-29 02:43:07 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-29 02:43:07 +0000 |
commit | fa3135d48530930aefd5ef4ca9d0def3faae474d (patch) | |
tree | 25f479530874d3071128fa7a963251347924085d /LUFA | |
parent | e81a4c950f88aeed9cf3ff5b9911afffd1862716 (diff) | |
download | lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.tar.gz lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.tar.bz2 lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.zip |
Add MIME type handling to the Webserver project, so that files of different types (e.g. images) can be served out to HTTP clients.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Doxygen.conf | 4 | ||||
-rw-r--r-- | LUFA/ManPages/ChangeLog.txt | 4 | ||||
-rw-r--r-- | LUFA/ManPages/MigrationInformation.txt | 6 | ||||
-rw-r--r-- | LUFA/makefile | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/LUFA/Doxygen.conf b/LUFA/Doxygen.conf index c46aba6a1..3497d3400 100644 --- a/LUFA/Doxygen.conf +++ b/LUFA/Doxygen.conf @@ -139,7 +139,7 @@ STRIP_FROM_INC_PATH = # (but less readable) file names. This can be useful is your file systems
# doesn't support long names like on DOS, Mac, or CD-ROM.
-SHORT_NAMES = YES
+SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
# will interpret the first line (until the first dot) of a JavaDoc-style
@@ -496,7 +496,7 @@ SHOW_DIRECTORIES = YES # This will remove the Files entry from the Quick Index and from the
# Folder Tree View (if specified). The default is YES.
-SHOW_FILES = YES
+SHOW_FILES = NO
# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
# Namespaces page.
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index 79010bd11..8104bc20d 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -17,10 +17,10 @@ * - Added MIDI event packing support to the MIDI Device and Host mode Class drivers, allowing for multiple MIDI events to
* sent or received in packed form in a single USB packet
* - Added new MIDI send buffer flush routines to the MIDI Device and Host mode Class drivers, to flush packed events
- * - Added master mode hardware TWI driver
+ * - Added master mode hardware TWI driver for easy TWI peripheral control
* - Added ADC MUX masks for the standard ADC input channels on all AVR models with an ADC, altered demos to use these masks
* as on some models, the channel number is not identical to its single-ended ADC MUX mask
- * - New Webserver project, a RNDIS host USB webserver using the open source uIP TCP/IP network stack
+ * - New Webserver project, a RNDIS host USB webserver using the open source uIP TCP/IP network stack and FatFS library
*
* <b>Changed:</b>
* - Slowed down software USART carried PDI programming in the AVRISP project to prevent transmission errors
diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt index 9f211186c..f9864cb5c 100644 --- a/LUFA/ManPages/MigrationInformation.txt +++ b/LUFA/ManPages/MigrationInformation.txt @@ -14,9 +14,9 @@ *
* <b>Non-USB Library Components</b>
* - Due to some ADC channels not being identical to their ADC MUX selection masks for single-ended conversions on some AVR models,
- * the ADC driver now has explicit masks for each of the standard ADC channels. These masks should be used when calling the ADC
- * functions to ensure proper operation across all AVR models. Note that the \ref ADC_SetupChannel() function is an exception, and
- * should always be called with a channel number rather than a channel mask.
+ * the ADC driver now has explicit masks for each of the standard ADC channels (see \ref Group_ADC). These masks should be used
+ * when calling the ADC functions to ensure proper operation across all AVR models. Note that the \ref ADC_SetupChannel() function
+ * is an exception, and should always be called with a channel number rather than a channel mask.
*
* <b>Host Mode</b>
* - The MIDI Host Class driver send and receive routines now operate on packed events, where multiple MIDI events may be
diff --git a/LUFA/makefile b/LUFA/makefile index 1b4fc052f..ed1c55aa2 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -51,7 +51,7 @@ clean_list: doxygen:
@echo Generating Library Documentation...
- @doxygen Doxygen.conf
+ ( cat Doxygen.conf ; echo "PROJECT_NUMBER=`grep LUFA_VERSION_STRING Version.h | cut -d'"' -f2`" ) | doxygen -
@echo Documentation Generation Complete.
clean_doxygen:
|