Ver Fonte

Changed doxygen related files.

Martin Günther há 10 anos atrás
pai
commit
02feb22ef1

+ 1 - 0
CMSIS/DoxyGen/DSP/doxygen_dsp.bat

@@ -0,0 +1 @@
+doxygen dsp.dxy

+ 0 - 1
CMSIS/DoxyGen/DSP/doxygen_dsp_lib.bat

@@ -1 +0,0 @@
-doxygen dsp_lib.dxy

+ 5 - 3
CMSIS/DoxyGen/DSP/dsp_lib.dxy → CMSIS/DoxyGen/DSP/dsp.dxy

@@ -52,7 +52,7 @@ PROJECT_LOGO           = ../Doxygen_Templates/CMSIS_Logo_Final.png
 # If a relative path is entered, it will be relative to the location 
 # where doxygen was started. If left blank the current directory will be used.
 
-OUTPUT_DIRECTORY       = ../../Documentation/DSP_Lib
+OUTPUT_DIRECTORY       = ../../Documentation/DSP
 
 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
 # 4096 sub-directories (in 2 levels) under the output directory of each output 
@@ -677,7 +677,7 @@ WARN_LOGFILE           =
 
 INPUT                  = "src/Change Log.txt" \
                          . \
-                         ../../DSP_Lib/
+                         ../../DSP/
 
 # 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 
@@ -741,7 +741,9 @@ RECURSIVE              = YES
 # Note that relative paths are relative to the directory from which doxygen is 
 # run.
 
-EXCLUDE                = 
+EXCLUDE                = ../../DSP/Examples\Common \
+                         system*.c \
+                         startup*.s
 
 # 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 

+ 13 - 5
CMSIS/DoxyGen/genDoc.bat

@@ -20,21 +20,24 @@ REM -- Delete previous generated HTML files ---------------------
   ECHO.
   ECHO Delete previous generated HTML files
 
-IF EXIST DoxyGen\Core\html (
+IF EXIST ..\Documentation\Core\html (
   rmdir /S /Q ..\Documentation\Core\html
 )
-IF EXIST DoxyGen\Driver\html (
+IF EXIST ..\Documentation\Driver\html (
   rmdir /S /Q ..\Documentation\Driver\html
 )
-IF EXIST DoxyGen\General\html (
+IF EXIST ..\Documentation\General\html (
   rmdir /S /Q ..\Documentation\General\html
 )
-IF EXIST DoxyGen\Pack\html (
+IF EXIST ..\Documentation\Pack\html (
   rmdir /S /Q ..\Documentation\Pack\html
 )
-IF EXIST DoxyGen\SVD\html (
+IF EXIST ..\Documentation\SVD\html (
   rmdir /S /Q ..\Documentation\SVD\html
 )
+IF EXIST ..\Documentation\DSP\html (
+  rmdir /S /Q ..\Documentation\DSP\html
+)
 
 REM -- Generate New HTML Files ---------------------
   ECHO.
@@ -60,6 +63,10 @@ pushd SVD
 CALL doxygen_svd.bat
 popd
 
+pushd DSP
+CALL doxygen_dsp.bat
+popd
+
 REM -- Copy search style sheet ---------------------
 ECHO Copy search style sheets
 copy /Y Doxygen_Templates\search.css ..\Documentation\CORE\html\search\. 
@@ -67,6 +74,7 @@ copy /Y Doxygen_Templates\search.css ..\Documentation\Driver\html\search\.
 REM copy /Y Doxygen_Templates\search.css ..\Documentation\General\html\search\. 
 copy /Y Doxygen_Templates\search.css ..\Documentation\Pack\html\search\.
 REM copy /Y Doxygen_Templates\search.css ..\Documentation\SVD\html\search\.
+copy /Y Doxygen_Templates\search.css ..\Documentation\DSP\html\search\.
   
 :END
   ECHO.