diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2012-06-28 17:27:05 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-06-28 17:29:43 -0400 |
commit | 6a6af3980a827a02e371968ec56271774ceb26ac (patch) | |
tree | f152f124a241c76f38906354dbd0ccade2c138e6 /support | |
parent | d08e6b10ff96022957720f929aec8d46cbcd375d (diff) | |
download | librambutan-6a6af3980a827a02e371968ec56271774ceb26ac.tar.gz librambutan-6a6af3980a827a02e371968ec56271774ceb26ac.zip |
Doxygen hacks and fixups.
- Shut Doxygen up in various places
- Fix some genuine docs bugs
- Ignore sources we're not responsible for
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/doxygen/Doxyfile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/support/doxygen/Doxyfile b/support/doxygen/Doxyfile index daeaf38..170cff4 100644 --- a/support/doxygen/Doxyfile +++ b/support/doxygen/Doxyfile @@ -564,7 +564,7 @@ WARN_IF_DOC_ERROR = YES # wrong or incomplete parameter documentation, but not about the absence of # documentation. -WARN_NO_PARAMDOC = YES +WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text @@ -621,9 +621,8 @@ RECURSIVE = YES # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. -# FIXME The USB thing needs to get redone (ST code stripped out, -# etc.). Until then, just ignore it. -EXCLUDE = ../libmaple/usb/ +# We include the FreeRTOS sources. That's probably a mistake. Oh well. +EXCLUDE = ./libraries/FreeRTOS/ # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded @@ -1351,13 +1350,13 @@ EXPAND_ONLY_PREDEF = YES # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. -SEARCH_INCLUDES = YES +SEARCH_INCLUDES = NO # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. -INCLUDE_PATH = +INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the @@ -1383,6 +1382,9 @@ PREDEFINED = __attribute__()= \ STM32_MEDIUM_DENSITY \ STM32_HIGH_DENSITY \ STM32_XL_DENSITY \ + PCLK1=0 STM32_PCLK1=0 \ + PCLK2=0 STM32_PCLK2=0 \ + STM32_HAVE_TIMER(x)=1 \ __DOXYGEN__ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then |