Add hack to enable TX line at module initialization.
[bertos.git] / Doxyfile
index 1173c9fa252bfb7d933753043ba2b2b2b62e9560..7364037c4e73a16f05f09adec79af1dc5858ac48 100755 (executable)
--- a/Doxyfile
+++ b/Doxyfile
@@ -1,4 +1,4 @@
-# Doxyfile 1.4.1
+# Doxyfile 1.4.2
 
 # This file describes the settings to be used by the documentation system
 # doxygen (www.doxygen.org) for a project
@@ -39,7 +39,7 @@ OUTPUT_DIRECTORY       = doc/reference
 # source files, where putting all generated files in the same directory would 
 # otherwise cause performance problems for the file system.
 
-CREATE_SUBDIRS         = YES
+CREATE_SUBDIRS         = NO
 
 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 
 # documentation generated by doxygen is written. Doxygen will use this 
@@ -168,6 +168,12 @@ INHERIT_DOCS           = YES
 
 DISTRIBUTE_GROUP_DOC   = NO
 
+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 
+# a new page for each member. If set to NO, the documentation of a member will 
+# be part of the file/class/namespace that contains it.
+
+SEPARATE_MEMBER_PAGES  = NO
+
 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 
 # Doxygen uses this value to replace tabs by spaces in code fragments.
 
@@ -730,7 +736,7 @@ TREEVIEW_WIDTH         = 250
 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
 # generate Latex output.
 
-GENERATE_LATEX         = YES
+GENERATE_LATEX         = NO
 
 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
@@ -1005,7 +1011,8 @@ PREDEFINED             = __doxygen__ \
                          __declspec(x) \
                          _DEBUG=1 \
                          FORMAT(x,y,z)= \
-                         PGM_FUNC(x)=x
+                         PGM_FUNC(x)=x \
+                         INLINE=inline
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
 # this tag can be used to specify a list of macro names that should be expanded.