summaryrefslogtreecommitdiff
path: root/doxygen.Doxyfile
diff options
context:
space:
mode:
authorhathach <[email protected]>2012-12-03 16:51:14 +0700
committerhathach <[email protected]>2012-12-03 16:51:14 +0700
commitb698b09a67251c8ed8ed81120e85ea21c5d88b10 (patch)
tree5da27b3529f66f07095623ef160279b5cb5e9760 /doxygen.Doxyfile
parentaff644b7c3083cb3b943276d046729b80233e9f9 (diff)
fix some doxygen settings and stuffs add prepacked for IAR compiler
Diffstat (limited to 'doxygen.Doxyfile')
-rw-r--r--doxygen.Doxyfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/doxygen.Doxyfile b/doxygen.Doxyfile
index 344d965de..864763e5f 100644
--- a/doxygen.Doxyfile
+++ b/doxygen.Doxyfile
@@ -375,7 +375,7 @@ EXTRACT_PACKAGE = NO
# If the EXTRACT_STATIC tag is set to YES all static members of a file
# will be included in the documentation.
-EXTRACT_STATIC = YES
+EXTRACT_STATIC = NO
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
# defined locally in source files will be included in the documentation.
@@ -661,7 +661,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = tinyusb/class tinyusb/common tinyusb/host tinyusb/common/arch tinyusb/common/compiler tinyusb tinyusb\device overview.md license.md
+INPUT = tinyusb overview.md license.md
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -685,7 +685,7 @@ FILE_PATTERNS =
# should be searched for input files as well. Possible values are YES and NO.
# If left blank NO is used.
-RECURSIVE = NO
+RECURSIVE = YES
# The EXCLUDE tag can be used to specify files and/or directories that should be
# excluded from the INPUT source files. This way you can easily exclude a
@@ -693,7 +693,7 @@ RECURSIVE = NO
# Note that relative paths are relative to the directory from which doxygen is
# run.
-EXCLUDE =
+EXCLUDE = tinyusb/device/romdriver
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
@@ -1491,7 +1491,7 @@ ENABLE_PREPROCESSING = YES
# compilation will be performed. Macro expansion can be done in a controlled
# way by setting EXPAND_ONLY_PREDEF to YES.
-MACRO_EXPANSION = NO
+MACRO_EXPANSION = YES
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
# then the macro expansion is limited to the macros specified with the
@@ -1525,7 +1525,7 @@ INCLUDE_FILE_PATTERNS =
# undefined via #undef or recursively expanded use the := operator
# instead of the = operator.
-PREDEFINED =
+PREDEFINED = __attribute__(x)= __attribute__((x))= ATTR_ALIGNED(x)=
# 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.