blob: 47507d935229ec228b72edee8a23c87fbd2dca0c [file] [log] [blame]
Anas Nashif471c1892017-11-19 15:09:02 -05001# Doxyfile 1.8.13
2
3# This file describes the settings to be used by the documentation system
4# doxygen (www.doxygen.org) for a project.
5#
6# All text after a double hash (##) is considered a comment and is placed in
7# front of the TAG it is preceding.
8#
9# All text after a single hash (#) is considered a comment and will be ignored.
10# The format is:
11# TAG = value [value, ...]
12# For lists, items can also be appended using:
13# TAG += value [value, ...]
14# Values that contain spaces should be placed between quotes (\" \").
Anas Nashif06d380c2015-05-13 14:05:30 -040015
16#---------------------------------------------------------------------------
17# Project related configuration options
18#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -050019
20# This tag specifies the encoding used for all characters in the config file
21# that follow. The default is UTF-8 which is also the encoding used for all text
22# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
23# built into libc) for the transcoding. See
24# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
25# The default value is: UTF-8.
26
Anas Nashif06d380c2015-05-13 14:05:30 -040027DOXYFILE_ENCODING = UTF-8
Anas Nashif471c1892017-11-19 15:09:02 -050028
29# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
30# double-quotes, unless you are using Doxywizard) that should identify the
31# project for which the documentation is generated. This name is used in the
32# title of most generated pages and in a few other places.
33# The default value is: My Project.
34
Anas Nashif089a10b2015-06-12 10:51:09 -070035PROJECT_NAME = "Zephyr Project"
Anas Nashif471c1892017-11-19 15:09:02 -050036
37# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
38# could be handy for archiving the generated documentation or if some version
39# control system is used.
40
Anas Nashif06d380c2015-05-13 14:05:30 -040041PROJECT_NUMBER =
Anas Nashif471c1892017-11-19 15:09:02 -050042
43# Using the PROJECT_BRIEF tag one can provide an optional one line description
44# for a project that appears at the top of each page and should give viewer a
45# quick idea about the purpose of the project. Keep the description short.
46
Anas Nashif06d380c2015-05-13 14:05:30 -040047PROJECT_BRIEF =
Anas Nashif471c1892017-11-19 15:09:02 -050048
49# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
50# in the documentation. The maximum height of the logo should not exceed 55
51# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
52# the logo to the output directory.
53
Anas Nashif06d380c2015-05-13 14:05:30 -040054PROJECT_LOGO =
Anas Nashif471c1892017-11-19 15:09:02 -050055
56# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
57# into which the generated documentation will be written. If a relative path is
58# entered, it will be relative to the location where doxygen was started. If
59# left blank the current directory will be used.
60
Anas Nashif1fdfc5d2017-02-05 09:24:50 -050061OUTPUT_DIRECTORY = doxygen/
Anas Nashif471c1892017-11-19 15:09:02 -050062
63# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
64# directories (in 2 levels) under the output directory of each output format and
65# will distribute the generated files over these directories. Enabling this
66# option can be useful when feeding doxygen a huge amount of source files, where
67# putting all generated files in the same directory would otherwise causes
68# performance problems for the file system.
69# The default value is: NO.
70
David B. Kinder18859172018-05-08 13:51:23 -070071CREATE_SUBDIRS = NO
Anas Nashif471c1892017-11-19 15:09:02 -050072
Anas Nashif471c1892017-11-19 15:09:02 -050073# The OUTPUT_LANGUAGE tag is used to specify the language in which all
74# documentation generated by doxygen is written. Doxygen will use this
75# information to generate all constant output in the proper language.
76# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
77# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
78# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
79# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
80# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
81# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
82# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
83# Ukrainian and Vietnamese.
84# The default value is: English.
85
Anas Nashif06d380c2015-05-13 14:05:30 -040086OUTPUT_LANGUAGE = English
Anas Nashif471c1892017-11-19 15:09:02 -050087
88# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
89# descriptions after the members that are listed in the file and class
90# documentation (similar to Javadoc). Set to NO to disable this.
91# The default value is: YES.
92
Anas Nashif06d380c2015-05-13 14:05:30 -040093BRIEF_MEMBER_DESC = YES
Anas Nashif471c1892017-11-19 15:09:02 -050094
95# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
96# description of a member or function before the detailed description
97#
98# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
99# brief descriptions will be completely suppressed.
100# The default value is: YES.
101
Anas Nashif06d380c2015-05-13 14:05:30 -0400102REPEAT_BRIEF = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500103
104# This tag implements a quasi-intelligent brief description abbreviator that is
105# used to form the text in various listings. Each string in this list, if found
106# as the leading text of the brief description, will be stripped from the text
107# and the result, after processing the whole list, is used as the annotated
108# text. Otherwise, the brief description is used as-is. If left blank, the
109# following values are used ($name is automatically replaced with the name of
110# the entity):The $name class, The $name widget, The $name file, is, provides,
111# specifies, contains, represents, a, an and the.
112
Carol Lee1aa77332015-08-07 13:22:27 -0400113ABBREVIATE_BRIEF = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500114
115# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
116# doxygen will generate a detailed section even if there is only a brief
117# description.
118# The default value is: NO.
119
Carol Lee1aa77332015-08-07 13:22:27 -0400120ALWAYS_DETAILED_SEC = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500121
122# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
123# inherited members of a class in the documentation of that class as if those
124# members were ordinary class members. Constructors, destructors and assignment
125# operators of the base classes will not be shown.
126# The default value is: NO.
127
Carol Leeec2a7462015-08-04 10:21:47 -0400128INLINE_INHERITED_MEMB = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500129
130# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
131# before files name in the file list and in the header files. If set to NO the
132# shortest path that makes the file name unique will be used
133# The default value is: YES.
134
Anas Nashif06d380c2015-05-13 14:05:30 -0400135FULL_PATH_NAMES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500136
137# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
138# Stripping is only done if one of the specified strings matches the left-hand
139# part of the path. The tag can be used to show relative paths in the file list.
140# If left blank the directory from which doxygen is run is used as the path to
141# strip.
142#
143# Note that you can specify absolute paths here, but also relative paths, which
144# will be relative from the directory where doxygen is started.
145# This tag requires that the tag FULL_PATH_NAMES is set to YES.
146
Anas Nashif06d380c2015-05-13 14:05:30 -0400147STRIP_FROM_PATH =
Anas Nashif471c1892017-11-19 15:09:02 -0500148
149# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
150# path mentioned in the documentation of a class, which tells the reader which
151# header file to include in order to use a class. If left blank only the name of
152# the header file containing the class definition is used. Otherwise one should
153# specify the list of include paths that are normally passed to the compiler
154# using the -I flag.
155
Anas Nashif06d380c2015-05-13 14:05:30 -0400156STRIP_FROM_INC_PATH =
Anas Nashif471c1892017-11-19 15:09:02 -0500157
158# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
159# less readable) file names. This can be useful is your file systems doesn't
160# support long names like on DOS, Mac, or CD-ROM.
161# The default value is: NO.
162
Anas Nashif06d380c2015-05-13 14:05:30 -0400163SHORT_NAMES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500164
165# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
166# first line (until the first dot) of a Javadoc-style comment as the brief
167# description. If set to NO, the Javadoc-style will behave just like regular Qt-
168# style comments (thus requiring an explicit @brief command for a brief
169# description.)
170# The default value is: NO.
171
Carol Leeec2a7462015-08-04 10:21:47 -0400172JAVADOC_AUTOBRIEF = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500173
174# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
175# line (until the first dot) of a Qt-style comment as the brief description. If
176# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
177# requiring an explicit \brief command for a brief description.)
178# The default value is: NO.
179
Anas Nashif06d380c2015-05-13 14:05:30 -0400180QT_AUTOBRIEF = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500181
182# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
183# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
184# a brief description. This used to be the default behavior. The new default is
185# to treat a multi-line C++ comment block as a detailed description. Set this
186# tag to YES if you prefer the old behavior instead.
187#
188# Note that setting this tag to YES also means that rational rose comments are
189# not recognized any more.
190# The default value is: NO.
191
Anas Nashif06d380c2015-05-13 14:05:30 -0400192MULTILINE_CPP_IS_BRIEF = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500193
194# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
195# documentation from any documented member that it re-implements.
196# The default value is: YES.
197
Anas Nashif06d380c2015-05-13 14:05:30 -0400198INHERIT_DOCS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500199
200# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
201# page for each member. If set to NO, the documentation of a member will be part
202# of the file/class/namespace that contains it.
203# The default value is: NO.
204
Carol Leeec2a7462015-08-04 10:21:47 -0400205SEPARATE_MEMBER_PAGES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500206
207# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
208# uses this value to replace tabs by spaces in code fragments.
209# Minimum value: 1, maximum value: 16, default value: 4.
210
Carol Leeec2a7462015-08-04 10:21:47 -0400211TAB_SIZE = 8
Anas Nashif471c1892017-11-19 15:09:02 -0500212
213# This tag can be used to specify a number of aliases that act as commands in
214# the documentation. An alias has the form:
215# name=value
216# For example adding
217# "sideeffect=@par Side Effects:\n"
218# will allow you to put the command \sideeffect (or @sideeffect) in the
219# documentation, which will result in a user-defined paragraph with heading
220# "Side Effects:". You can put \n's in the value part of an alias to insert
221# newlines.
222
223ALIASES = "rst=\verbatim embed:rst" \
224 "endrst=\endverbatim" \
225 "rststar=\verbatim embed:rst:leading-asterisk" \
226 "endrststar=\endverbatim" \
227 "r=\verbatim embed:rst:leading-asterisk" \
228 "er=\endverbatim"
229
Anas Nashif9e4f25b2018-05-21 08:26:09 -0400230ALIASES += "req=\xrefitem req \"Requirement\" \"Requirements\" "
231
Anas Nashif471c1892017-11-19 15:09:02 -0500232# This tag can be used to specify a number of word-keyword mappings (TCL only).
233# A mapping has the form "name=value". For example adding "class=itcl::class"
234# will allow you to use the command class in the itcl::class meaning.
235
Carol Leeec2a7462015-08-04 10:21:47 -0400236TCL_SUBST = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500237
238# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
239# only. Doxygen will then generate output that is more tailored for C. For
240# instance, some of the names that are used will be different. The list of all
241# members will be omitted, etc.
242# The default value is: NO.
243
Anas Nashif06d380c2015-05-13 14:05:30 -0400244OPTIMIZE_OUTPUT_FOR_C = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500245
246# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
247# Python sources only. Doxygen will then generate output that is more tailored
248# for that language. For instance, namespaces will be presented as packages,
249# qualified scopes will look different, etc.
250# The default value is: NO.
251
Anas Nashif06d380c2015-05-13 14:05:30 -0400252OPTIMIZE_OUTPUT_JAVA = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500253
254# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
255# sources. Doxygen will then generate output that is tailored for Fortran.
256# The default value is: NO.
257
Anas Nashif06d380c2015-05-13 14:05:30 -0400258OPTIMIZE_FOR_FORTRAN = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500259
260# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
261# sources. Doxygen will then generate output that is tailored for VHDL.
262# The default value is: NO.
263
Anas Nashif06d380c2015-05-13 14:05:30 -0400264OPTIMIZE_OUTPUT_VHDL = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500265
266# Doxygen selects the parser to use depending on the extension of the files it
267# parses. With this tag you can assign which parser to use for a given
268# extension. Doxygen has a built-in mapping, but you can override or extend it
269# using this tag. The format is ext=language, where ext is a file extension, and
270# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
271# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
272# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:
273# Fortran. In the later case the parser tries to guess whether the code is fixed
274# or free formatted code, this is the default for Fortran type files), VHDL. For
275# instance to make doxygen treat .inc files as Fortran files (default is PHP),
276# and .f files as C (default is Fortran), use: inc=Fortran f=C.
277#
278# Note: For files without extension you can use no_extension as a placeholder.
279#
280# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
281# the files are not read by doxygen.
282
Anas Nashif06d380c2015-05-13 14:05:30 -0400283EXTENSION_MAPPING =
Anas Nashif471c1892017-11-19 15:09:02 -0500284
285# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
286# according to the Markdown format, which allows for more readable
287# documentation. See http://daringfireball.net/projects/markdown/ for details.
288# The output of markdown processing is further processed by doxygen, so you can
289# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
290# case of backward compatibilities issues.
291# The default value is: YES.
292
Anas Nashif06d380c2015-05-13 14:05:30 -0400293MARKDOWN_SUPPORT = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500294
295# When enabled doxygen tries to link words that correspond to documented
296# classes, or namespaces to their corresponding documentation. Such a link can
297# be prevented in individual cases by putting a % sign in front of the word or
298# globally by setting AUTOLINK_SUPPORT to NO.
299# The default value is: YES.
300
Anas Nashif06d380c2015-05-13 14:05:30 -0400301AUTOLINK_SUPPORT = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500302
303# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
304# to include (a tag file for) the STL sources as input, then you should set this
305# tag to YES in order to let doxygen match functions declarations and
306# definitions whose arguments contain STL classes (e.g. func(std::string);
307# versus func(std::string) {}). This also make the inheritance and collaboration
308# diagrams that involve STL classes more complete and accurate.
309# The default value is: NO.
310
Anas Nashif06d380c2015-05-13 14:05:30 -0400311BUILTIN_STL_SUPPORT = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500312
313# If you use Microsoft's C++/CLI language, you should set this option to YES to
314# enable parsing support.
315# The default value is: NO.
316
Carol Leeec2a7462015-08-04 10:21:47 -0400317CPP_CLI_SUPPORT = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500318
319# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
320# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
321# will parse them like normal C++ but will assume all classes use public instead
322# of private inheritance when no explicit protection keyword is present.
323# The default value is: NO.
324
Anas Nashif06d380c2015-05-13 14:05:30 -0400325SIP_SUPPORT = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500326
327# For Microsoft's IDL there are propget and propput attributes to indicate
328# getter and setter methods for a property. Setting this option to YES will make
329# doxygen to replace the get and set methods by a property in the documentation.
330# This will only work if the methods are indeed getting or setting a simple
331# type. If this is not the case, or you want to show the methods anyway, you
332# should set this option to NO.
333# The default value is: YES.
334
Anas Nashif06d380c2015-05-13 14:05:30 -0400335IDL_PROPERTY_SUPPORT = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500336
337# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
338# tag is set to YES then doxygen will reuse the documentation of the first
339# member in the group (if any) for the other members of the group. By default
340# all members of a group must be documented explicitly.
341# The default value is: NO.
342
Anas Nashif06d380c2015-05-13 14:05:30 -0400343DISTRIBUTE_GROUP_DOC = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500344
Anas Nashif471c1892017-11-19 15:09:02 -0500345# Set the SUBGROUPING tag to YES to allow class member groups of the same type
346# (for instance a group of public functions) to be put as a subgroup of that
347# type (e.g. under the Public Functions section). Set it to NO to prevent
348# subgrouping. Alternatively, this can be done per class using the
349# \nosubgrouping command.
350# The default value is: YES.
351
Anas Nashif06d380c2015-05-13 14:05:30 -0400352SUBGROUPING = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500353
354# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
355# are shown inside the group in which they are included (e.g. using \ingroup)
356# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
357# and RTF).
358#
359# Note that this feature does not work in combination with
360# SEPARATE_MEMBER_PAGES.
361# The default value is: NO.
362
Anas Nashif06d380c2015-05-13 14:05:30 -0400363INLINE_GROUPED_CLASSES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500364
365# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
366# with only public data fields or simple typedef fields will be shown inline in
367# the documentation of the scope in which they are defined (i.e. file,
368# namespace, or group documentation), provided this scope is documented. If set
369# to NO, structs, classes, and unions are shown on a separate page (for HTML and
370# Man pages) or section (for LaTeX and RTF).
371# The default value is: NO.
372
Carol Leeec2a7462015-08-04 10:21:47 -0400373INLINE_SIMPLE_STRUCTS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500374
375# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
376# enum is documented as struct, union, or enum with the name of the typedef. So
377# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
378# with name TypeT. When disabled the typedef will appear as a member of a file,
379# namespace, or class. And the struct will be named TypeS. This can typically be
380# useful for C code in case the coding convention dictates that all compound
381# types are typedef'ed and only the typedef is referenced, never the tag name.
382# The default value is: NO.
383
Anas Nashif06d380c2015-05-13 14:05:30 -0400384TYPEDEF_HIDES_STRUCT = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500385
386# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
387# cache is used to resolve symbols given their name and scope. Since this can be
388# an expensive process and often the same symbol appears multiple times in the
389# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
390# doxygen will become slower. If the cache is too large, memory is wasted. The
391# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
392# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
393# symbols. At the end of a run doxygen will report the cache usage and suggest
394# the optimal cache size from a speed point of view.
395# Minimum value: 0, maximum value: 9, default value: 0.
396
Carol Leeec2a7462015-08-04 10:21:47 -0400397LOOKUP_CACHE_SIZE = 9
Anas Nashif471c1892017-11-19 15:09:02 -0500398
Anas Nashif06d380c2015-05-13 14:05:30 -0400399#---------------------------------------------------------------------------
400# Build related configuration options
401#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -0500402
403# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
404# documentation are documented, even if no documentation was available. Private
405# class members and static file members will be hidden unless the
406# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
407# Note: This will also disable the warnings about undocumented members that are
408# normally produced when WARNINGS is set to YES.
409# The default value is: NO.
410
Carol Leeec2a7462015-08-04 10:21:47 -0400411EXTRACT_ALL = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500412
413# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
414# be included in the documentation.
415# The default value is: NO.
416
Carol Leeec2a7462015-08-04 10:21:47 -0400417EXTRACT_PRIVATE = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500418
419# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
420# scope will be included in the documentation.
421# The default value is: NO.
422
Carol Leeec2a7462015-08-04 10:21:47 -0400423EXTRACT_PACKAGE = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500424
425# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
426# included in the documentation.
427# The default value is: NO.
428
Anas Nashif06d380c2015-05-13 14:05:30 -0400429EXTRACT_STATIC = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500430
431# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
432# locally in source files will be included in the documentation. If set to NO,
433# only classes defined in header files are included. Does not have any effect
434# for Java sources.
435# The default value is: YES.
436
Anas Nashif06d380c2015-05-13 14:05:30 -0400437EXTRACT_LOCAL_CLASSES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500438
439# This flag is only useful for Objective-C code. If set to YES, local methods,
440# which are defined in the implementation section but not in the interface are
441# included in the documentation. If set to NO, only methods in the interface are
442# included.
443# The default value is: NO.
444
Anas Nashif06d380c2015-05-13 14:05:30 -0400445EXTRACT_LOCAL_METHODS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500446
447# If this flag is set to YES, the members of anonymous namespaces will be
448# extracted and appear in the documentation as a namespace called
449# 'anonymous_namespace{file}', where file will be replaced with the base name of
450# the file that contains the anonymous namespace. By default anonymous namespace
451# are hidden.
452# The default value is: NO.
453
Anas Nashif06d380c2015-05-13 14:05:30 -0400454EXTRACT_ANON_NSPACES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500455
456# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
457# undocumented members inside documented classes or files. If set to NO these
458# members will be included in the various overviews, but no documentation
459# section is generated. This option has no effect if EXTRACT_ALL is enabled.
460# The default value is: NO.
461
Anas Nashif06d380c2015-05-13 14:05:30 -0400462HIDE_UNDOC_MEMBERS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500463
464# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
465# undocumented classes that are normally visible in the class hierarchy. If set
466# to NO, these classes will be included in the various overviews. This option
467# has no effect if EXTRACT_ALL is enabled.
468# The default value is: NO.
469
Anas Nashif06d380c2015-05-13 14:05:30 -0400470HIDE_UNDOC_CLASSES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500471
472# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
473# (class|struct|union) declarations. If set to NO, these declarations will be
474# included in the documentation.
475# The default value is: NO.
476
Anas Nashif06d380c2015-05-13 14:05:30 -0400477HIDE_FRIEND_COMPOUNDS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500478
479# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
480# documentation blocks found inside the body of a function. If set to NO, these
481# blocks will be appended to the function's detailed documentation block.
482# The default value is: NO.
483
Anas Nashif06d380c2015-05-13 14:05:30 -0400484HIDE_IN_BODY_DOCS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500485
486# The INTERNAL_DOCS tag determines if documentation that is typed after a
487# \internal command is included. If the tag is set to NO then the documentation
488# will be excluded. Set it to YES to include the internal documentation.
489# The default value is: NO.
490
Anas Nashife7ace3f2015-08-13 12:05:24 -0400491INTERNAL_DOCS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500492
493# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
494# names in lower-case letters. If set to YES, upper-case letters are also
495# allowed. This is useful if you have classes or files whose names only differ
496# in case and if your file system supports case sensitive file names. Windows
497# and Mac users are advised to set this option to NO.
498# The default value is: system dependent.
499
Anas Nashif06d380c2015-05-13 14:05:30 -0400500CASE_SENSE_NAMES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500501
502# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
503# their full class and namespace scopes in the documentation. If set to YES, the
504# scope will be hidden.
505# The default value is: NO.
506
Anas Nashif06d380c2015-05-13 14:05:30 -0400507HIDE_SCOPE_NAMES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500508
Anas Nashif471c1892017-11-19 15:09:02 -0500509# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
510# the files that are included by a file in the documentation of that file.
511# The default value is: YES.
512
Anas Nashif06d380c2015-05-13 14:05:30 -0400513SHOW_INCLUDE_FILES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500514
515# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
516# grouped member an include statement to the documentation, telling the reader
517# which file to include in order to use the member.
518# The default value is: NO.
519
Carol Leeec2a7462015-08-04 10:21:47 -0400520SHOW_GROUPED_MEMB_INC = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500521
522# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
523# files with double quotes in the documentation rather than with sharp brackets.
524# The default value is: NO.
525
Anas Nashif06d380c2015-05-13 14:05:30 -0400526FORCE_LOCAL_INCLUDES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500527
528# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
529# documentation for inline members.
530# The default value is: YES.
531
Anas Nashif06d380c2015-05-13 14:05:30 -0400532INLINE_INFO = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500533
534# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
535# (detailed) documentation of file and class members alphabetically by member
536# name. If set to NO, the members will appear in declaration order.
537# The default value is: YES.
538
Anas Nashif06d380c2015-05-13 14:05:30 -0400539SORT_MEMBER_DOCS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500540
541# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
542# descriptions of file, namespace and class members alphabetically by member
543# name. If set to NO, the members will appear in declaration order. Note that
544# this will also influence the order of the classes in the class list.
545# The default value is: NO.
546
Anas Nashif06d380c2015-05-13 14:05:30 -0400547SORT_BRIEF_DOCS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500548
549# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
550# (brief and detailed) documentation of class members so that constructors and
551# destructors are listed first. If set to NO the constructors will appear in the
552# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
553# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
554# member documentation.
555# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
556# detailed member documentation.
557# The default value is: NO.
558
Anas Nashif06d380c2015-05-13 14:05:30 -0400559SORT_MEMBERS_CTORS_1ST = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500560
561# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
562# of group names into alphabetical order. If set to NO the group names will
563# appear in their defined order.
564# The default value is: NO.
565
Carol Leeec2a7462015-08-04 10:21:47 -0400566SORT_GROUP_NAMES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500567
568# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
569# fully-qualified names, including namespaces. If set to NO, the class list will
570# be sorted only by class name, not including the namespace part.
571# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
572# Note: This option applies only to the class list, not to the alphabetical
573# list.
574# The default value is: NO.
575
Carol Leeec2a7462015-08-04 10:21:47 -0400576SORT_BY_SCOPE_NAME = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500577
578# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
579# type resolution of all parameters of a function it will reject a match between
580# the prototype and the implementation of a member function even if there is
581# only one candidate or it is obvious which candidate to choose by doing a
582# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
583# accept a match between prototype and implementation in such cases.
584# The default value is: NO.
585
Carol Leeec2a7462015-08-04 10:21:47 -0400586STRICT_PROTO_MATCHING = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500587
588# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
589# list. This list is created by putting \todo commands in the documentation.
590# The default value is: YES.
591
Carol Leeec2a7462015-08-04 10:21:47 -0400592GENERATE_TODOLIST = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500593
594# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
595# list. This list is created by putting \test commands in the documentation.
596# The default value is: YES.
597
Carol Leeec2a7462015-08-04 10:21:47 -0400598GENERATE_TESTLIST = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500599
600# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
601# list. This list is created by putting \bug commands in the documentation.
602# The default value is: YES.
603
Carol Leeec2a7462015-08-04 10:21:47 -0400604GENERATE_BUGLIST = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500605
606# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
607# the deprecated list. This list is created by putting \deprecated commands in
608# the documentation.
609# The default value is: YES.
610
Anas Nashif97109a62017-01-15 09:30:53 -0500611GENERATE_DEPRECATEDLIST= YES
Anas Nashif471c1892017-11-19 15:09:02 -0500612
613# The ENABLED_SECTIONS tag can be used to enable conditional documentation
614# sections, marked by \if <section_label> ... \endif and \cond <section_label>
615# ... \endcond blocks.
616
Carol Leeec2a7462015-08-04 10:21:47 -0400617ENABLED_SECTIONS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500618
619# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
620# initial value of a variable or macro / define can have for it to appear in the
621# documentation. If the initializer consists of more lines than specified here
622# it will be hidden. Use a value of 0 to hide initializers completely. The
623# appearance of the value of individual variables and macros / defines can be
624# controlled using \showinitializer or \hideinitializer command in the
625# documentation regardless of this setting.
626# Minimum value: 0, maximum value: 10000, default value: 30.
627
Carol Leeec2a7462015-08-04 10:21:47 -0400628MAX_INITIALIZER_LINES = 300
Anas Nashif471c1892017-11-19 15:09:02 -0500629
630# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
631# the bottom of the documentation of classes and structs. If set to YES, the
632# list will mention the files that were used to generate the documentation.
633# The default value is: YES.
634
Anas Nashif06d380c2015-05-13 14:05:30 -0400635SHOW_USED_FILES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500636
637# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
638# will remove the Files entry from the Quick Index and from the Folder Tree View
639# (if specified).
640# The default value is: YES.
641
Anas Nashif06d380c2015-05-13 14:05:30 -0400642SHOW_FILES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500643
644# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
645# page. This will remove the Namespaces entry from the Quick Index and from the
646# Folder Tree View (if specified).
647# The default value is: YES.
648
Anas Nashif06d380c2015-05-13 14:05:30 -0400649SHOW_NAMESPACES = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500650
651# The FILE_VERSION_FILTER tag can be used to specify a program or script that
652# doxygen should invoke to get the current version for each file (typically from
653# the version control system). Doxygen will invoke the program by executing (via
654# popen()) the command command input-file, where command is the value of the
655# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
656# by doxygen. Whatever the program writes to standard output is used as the file
657# version. For an example see the documentation.
658
Anas Nashif06d380c2015-05-13 14:05:30 -0400659FILE_VERSION_FILTER =
Anas Nashif471c1892017-11-19 15:09:02 -0500660
661# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
662# by doxygen. The layout file controls the global structure of the generated
663# output files in an output format independent way. To create the layout file
664# that represents doxygen's defaults, run doxygen with the -l option. You can
665# optionally specify a file name after the option, if omitted DoxygenLayout.xml
666# will be used as the name of the layout file.
667#
668# Note that if you run doxygen from a directory containing a file called
669# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
670# tag is left empty.
671
Anas Nashif06d380c2015-05-13 14:05:30 -0400672LAYOUT_FILE =
Anas Nashif471c1892017-11-19 15:09:02 -0500673
674# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
675# the reference definitions. This must be a list of .bib files. The .bib
676# extension is automatically appended if omitted. This requires the bibtex tool
677# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
678# For LaTeX the style of the bibliography can be controlled using
679# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
680# search path. See also \cite for info how to create references.
681
Anas Nashif06d380c2015-05-13 14:05:30 -0400682CITE_BIB_FILES =
Anas Nashif471c1892017-11-19 15:09:02 -0500683
Anas Nashif06d380c2015-05-13 14:05:30 -0400684#---------------------------------------------------------------------------
685# Configuration options related to warning and progress messages
686#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -0500687
688# The QUIET tag can be used to turn on/off the messages that are generated to
689# standard output by doxygen. If QUIET is set to YES this implies that the
690# messages are off.
691# The default value is: NO.
692
Inaky Perez-Gonzalezef61a712016-06-14 18:48:07 -0700693QUIET = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500694
695# The WARNINGS tag can be used to turn on/off the warning messages that are
696# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
697# this implies that the warnings are on.
698#
699# Tip: Turn warnings on while writing the documentation.
700# The default value is: YES.
701
Anas Nashif06d380c2015-05-13 14:05:30 -0400702WARNINGS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500703
704# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
705# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
706# will automatically be disabled.
707# The default value is: YES.
708
Anas Nashif06d380c2015-05-13 14:05:30 -0400709WARN_IF_UNDOCUMENTED = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500710
711# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
712# potential errors in the documentation, such as not documenting some parameters
713# in a documented function, or documenting parameters that don't exist or using
714# markup commands wrongly.
715# The default value is: YES.
716
Anas Nashif06d380c2015-05-13 14:05:30 -0400717WARN_IF_DOC_ERROR = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500718
719# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
720# are documented, but have no documentation for their parameters or return
721# value. If set to NO, doxygen will only warn about wrong or incomplete
722# parameter documentation, but not about the absence of documentation.
723# The default value is: NO.
724
Anas Nashif06d380c2015-05-13 14:05:30 -0400725WARN_NO_PARAMDOC = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500726
Anas Nashif471c1892017-11-19 15:09:02 -0500727# The WARN_FORMAT tag determines the format of the warning messages that doxygen
728# can produce. The string should contain the $file, $line, and $text tags, which
729# will be replaced by the file and line number from which the warning originated
730# and the warning text. Optionally the format may contain $version, which will
731# be replaced by the version of the file (if it could be obtained via
732# FILE_VERSION_FILTER)
733# The default value is: $file:$line: $text.
734
Anas Nashif06d380c2015-05-13 14:05:30 -0400735WARN_FORMAT = "$file:$line: $text"
Anas Nashif471c1892017-11-19 15:09:02 -0500736
737# The WARN_LOGFILE tag can be used to specify a file to which warning and error
738# messages should be written. If left blank the output is written to standard
739# error (stderr).
740
Anas Nashif06d380c2015-05-13 14:05:30 -0400741WARN_LOGFILE =
Anas Nashif471c1892017-11-19 15:09:02 -0500742
Anas Nashif06d380c2015-05-13 14:05:30 -0400743#---------------------------------------------------------------------------
744# Configuration options related to the input files
745#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -0500746
747# The INPUT tag is used to specify the files and/or directories that contain
748# documented source files. You may enter file names like myfile.cpp or
749# directories like /usr/src/myproject. Separate the files or directories with
750# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
751# Note: If this tag is empty the current directory is searched.
752
753INPUT = ../include/ \
754 ../include/misc/ \
755 ../include/arch/x86/ \
756 ../include/arch/arc/ \
757 ../include/arch/arc/v2 \
758 ../include/arch/arm/ \
759 ../include/arch/arm/cortex_m \
760 ../include/arch/nios2/ \
761 ../lib/libc/minimal/include/ \
762 ../include/net/coap.h \
763 ../include/net/dns_resolve.h \
Anas Nashif7a6f7132018-05-06 22:42:01 -0500764 ../tests/ztest/include/ \
765 ../tests/kernel/
Anas Nashif471c1892017-11-19 15:09:02 -0500766
767# This tag can be used to specify the character encoding of the source files
768# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
769# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
770# documentation (see: https://www.gnu.org/software/libiconv/) for the list of
771# possible encodings.
772# The default value is: UTF-8.
773
Anas Nashif06d380c2015-05-13 14:05:30 -0400774INPUT_ENCODING = UTF-8
Anas Nashif471c1892017-11-19 15:09:02 -0500775
776# If the value of the INPUT tag contains directories, you can use the
777# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
778# *.h) to filter out the source-files in the directories.
779#
780# Note that for custom extensions or not directly supported extensions you also
781# need to set EXTENSION_MAPPING for the extension otherwise the files are not
782# read by doxygen.
783#
784# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
785# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
786# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
787# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
788# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf.
789
790FILE_PATTERNS = "*.c" \
791 "*.h" \
792 "*.S"
793
794# The RECURSIVE tag can be used to specify whether or not subdirectories should
795# be searched for input files as well.
796# The default value is: NO.
797
Anas Nashif06d380c2015-05-13 14:05:30 -0400798RECURSIVE = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500799
800# The EXCLUDE tag can be used to specify files and/or directories that should be
801# excluded from the INPUT source files. This way you can easily exclude a
802# subdirectory from a directory tree whose root is specified with the INPUT tag.
803#
804# Note that relative paths are relative to the directory from which doxygen is
805# run.
806
Anas Nashifefff10a2017-11-07 15:24:22 -0500807EXCLUDE = ../include/spi_legacy.h \
Anas Nashif471c1892017-11-19 15:09:02 -0500808 ../include/net/http_legacy.h \
809 ../include/misc/util.h
810
811# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
812# directories that are symbolic links (a Unix file system feature) are excluded
813# from the input.
814# The default value is: NO.
815
816EXCLUDE_SYMLINKS = NO
817
818# If the value of the INPUT tag contains directories, you can use the
819# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
820# certain files from those directories.
821#
822# Note that the wildcards are matched against the file with absolute path, so to
823# exclude all test directories for example use the pattern */test/*
824
Anas Nashif06d380c2015-05-13 14:05:30 -0400825EXCLUDE_PATTERNS =
Anas Nashif471c1892017-11-19 15:09:02 -0500826
827# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
828# (namespaces, classes, functions, etc.) that should be excluded from the
829# output. The symbol name can be a fully qualified name, a word, or if the
830# wildcard * is used, a substring. Examples: ANamespace, AClass,
831# AClass::ANamespace, ANamespace::*Test
832#
833# Note that the wildcards are matched against the file with absolute path, so to
834# exclude all test directories use the pattern */test/*
835
Leandro Pereira44be8fb2018-02-20 09:32:39 -0800836# Hide internal names (starting with an underscore, and doxygen-generated names
837# for nested unnamed unions that don't generate meaningful sphinx output anyway.
David B. Kinderd5841d72018-03-12 10:52:42 -0700838EXCLUDE_SYMBOLS = _* *.__unnamed__
Anas Nashif471c1892017-11-19 15:09:02 -0500839
840# The EXAMPLE_PATH tag can be used to specify one or more files or directories
841# that contain example code fragments that are included (see the \include
842# command).
843
Anas Nashif06d380c2015-05-13 14:05:30 -0400844EXAMPLE_PATH =
Anas Nashif471c1892017-11-19 15:09:02 -0500845
846# If the value of the EXAMPLE_PATH tag contains directories, you can use the
847# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
848# *.h) to filter out the source-files in the directories. If left blank all
849# files are included.
850
Anas Nashif06d380c2015-05-13 14:05:30 -0400851EXAMPLE_PATTERNS =
Anas Nashif471c1892017-11-19 15:09:02 -0500852
853# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
854# searched for input files to be used with the \include or \dontinclude commands
855# irrespective of the value of the RECURSIVE tag.
856# The default value is: NO.
857
Carol Leeec2a7462015-08-04 10:21:47 -0400858EXAMPLE_RECURSIVE = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500859
860# The IMAGE_PATH tag can be used to specify one or more files or directories
861# that contain images that are to be included in the documentation (see the
862# \image command).
863
Anas Nashif06d380c2015-05-13 14:05:30 -0400864IMAGE_PATH =
Anas Nashif471c1892017-11-19 15:09:02 -0500865
866# The INPUT_FILTER tag can be used to specify a program that doxygen should
867# invoke to filter for each input file. Doxygen will invoke the filter program
868# by executing (via popen()) the command:
869#
870# <filter> <input-file>
871#
872# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
873# name of an input file. Doxygen will then use the output that the filter
874# program writes to standard output. If FILTER_PATTERNS is specified, this tag
875# will be ignored.
876#
877# Note that the filter must not add or remove lines; it is applied before the
878# code is scanned, but not when the output code is generated. If lines are added
879# or removed, the anchors will not be placed correctly.
880#
881# Note that for custom extensions or not directly supported extensions you also
882# need to set EXTENSION_MAPPING for the extension otherwise the files are not
883# properly processed by doxygen.
884
Anas Nashif06d380c2015-05-13 14:05:30 -0400885INPUT_FILTER =
Anas Nashif471c1892017-11-19 15:09:02 -0500886
887# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
888# basis. Doxygen will compare the file name with each pattern and apply the
889# filter if there is a match. The filters are a list of the form: pattern=filter
890# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
891# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
892# patterns match the file name, INPUT_FILTER is applied.
893#
894# Note that for custom extensions or not directly supported extensions you also
895# need to set EXTENSION_MAPPING for the extension otherwise the files are not
896# properly processed by doxygen.
897
Anas Nashif06d380c2015-05-13 14:05:30 -0400898FILTER_PATTERNS =
Anas Nashif471c1892017-11-19 15:09:02 -0500899
900# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
901# INPUT_FILTER) will also be used to filter the input files that are used for
902# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
903# The default value is: NO.
904
Anas Nashif06d380c2015-05-13 14:05:30 -0400905FILTER_SOURCE_FILES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500906
907# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
908# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
909# it is also possible to disable source filtering for a specific pattern using
910# *.ext= (so without naming a filter).
911# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
912
Anas Nashif06d380c2015-05-13 14:05:30 -0400913FILTER_SOURCE_PATTERNS =
Anas Nashif471c1892017-11-19 15:09:02 -0500914
915# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
916# is part of the input, its contents will be placed on the main page
917# (index.html). This can be useful if you have a project on for instance GitHub
918# and want to reuse the introduction page also for the doxygen output.
919
Carol Leeec2a7462015-08-04 10:21:47 -0400920USE_MDFILE_AS_MAINPAGE = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500921
Anas Nashif06d380c2015-05-13 14:05:30 -0400922#---------------------------------------------------------------------------
923# Configuration options related to source browsing
924#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -0500925
926# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
927# generated. Documented entities will be cross-referenced with these sources.
928#
929# Note: To get rid of all source code in the generated output, make sure that
930# also VERBATIM_HEADERS is set to NO.
931# The default value is: NO.
932
Anas Nashif06d380c2015-05-13 14:05:30 -0400933SOURCE_BROWSER = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500934
935# Setting the INLINE_SOURCES tag to YES will include the body of functions,
936# classes and enums directly into the documentation.
937# The default value is: NO.
938
Anas Nashif06d380c2015-05-13 14:05:30 -0400939INLINE_SOURCES = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500940
941# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
942# special comment blocks from generated source code fragments. Normal C, C++ and
943# Fortran comments will always remain visible.
944# The default value is: YES.
945
Anas Nashif06d380c2015-05-13 14:05:30 -0400946STRIP_CODE_COMMENTS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500947
948# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
949# function all documented functions referencing it will be listed.
950# The default value is: NO.
951
Anas Nashif06d380c2015-05-13 14:05:30 -0400952REFERENCED_BY_RELATION = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500953
954# If the REFERENCES_RELATION tag is set to YES then for each documented function
955# all documented entities called/used by that function will be listed.
956# The default value is: NO.
957
Anas Nashif06d380c2015-05-13 14:05:30 -0400958REFERENCES_RELATION = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500959
960# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
961# to YES then the hyperlinks from functions in REFERENCES_RELATION and
962# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
963# link to the documentation.
964# The default value is: YES.
965
Anas Nashif06d380c2015-05-13 14:05:30 -0400966REFERENCES_LINK_SOURCE = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500967
968# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
969# source code will show a tooltip with additional information such as prototype,
970# brief description and links to the definition and documentation. Since this
971# will make the HTML file larger and loading of large files a bit slower, you
972# can opt to disable this feature.
973# The default value is: YES.
974# This tag requires that the tag SOURCE_BROWSER is set to YES.
975
Anas Nashif06d380c2015-05-13 14:05:30 -0400976SOURCE_TOOLTIPS = YES
Anas Nashif471c1892017-11-19 15:09:02 -0500977
978# If the USE_HTAGS tag is set to YES then the references to source code will
979# point to the HTML generated by the htags(1) tool instead of doxygen built-in
980# source browser. The htags tool is part of GNU's global source tagging system
981# (see https://www.gnu.org/software/global/global.html). You will need version
982# 4.8.6 or higher.
983#
984# To use it do the following:
985# - Install the latest version of global
986# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
987# - Make sure the INPUT points to the root of the source tree
988# - Run doxygen as normal
989#
990# Doxygen will invoke htags (and that will in turn invoke gtags), so these
991# tools must be available from the command line (i.e. in the search path).
992#
993# The result: instead of the source browser generated by doxygen, the links to
994# source code will now point to the output of htags.
995# The default value is: NO.
996# This tag requires that the tag SOURCE_BROWSER is set to YES.
997
Anas Nashif06d380c2015-05-13 14:05:30 -0400998USE_HTAGS = NO
Anas Nashif471c1892017-11-19 15:09:02 -0500999
1000# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
1001# verbatim copy of the header file for each class for which an include is
1002# specified. Set to NO to disable this.
1003# See also: Section \class.
1004# The default value is: YES.
1005
Anas Nashif06d380c2015-05-13 14:05:30 -04001006VERBATIM_HEADERS = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001007
Anas Nashif06d380c2015-05-13 14:05:30 -04001008#---------------------------------------------------------------------------
1009# Configuration options related to the alphabetical class index
1010#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001011
1012# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
1013# compounds will be generated. Enable this if the project contains a lot of
1014# classes, structs, unions or interfaces.
1015# The default value is: YES.
1016
Anas Nashif06d380c2015-05-13 14:05:30 -04001017ALPHABETICAL_INDEX = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001018
1019# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1020# which the alphabetical index list will be split.
1021# Minimum value: 1, maximum value: 20, default value: 5.
1022# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1023
Carol Leeec2a7462015-08-04 10:21:47 -04001024COLS_IN_ALPHA_INDEX = 2
Anas Nashif471c1892017-11-19 15:09:02 -05001025
1026# In case all classes in a project start with a common prefix, all classes will
1027# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
1028# can be used to specify a prefix (or a list of prefixes) that should be ignored
1029# while generating the index headers.
1030# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1031
Anas Nashif06d380c2015-05-13 14:05:30 -04001032IGNORE_PREFIX =
Anas Nashif471c1892017-11-19 15:09:02 -05001033
Anas Nashif06d380c2015-05-13 14:05:30 -04001034#---------------------------------------------------------------------------
1035# Configuration options related to the HTML output
1036#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001037
1038# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
1039# The default value is: YES.
1040
Anas Nashiff4668cc2017-08-05 10:32:03 -04001041GENERATE_HTML = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001042
1043# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
1044# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1045# it.
1046# The default directory is: html.
1047# This tag requires that the tag GENERATE_HTML is set to YES.
1048
Anas Nashif06d380c2015-05-13 14:05:30 -04001049HTML_OUTPUT = html
Anas Nashif471c1892017-11-19 15:09:02 -05001050
1051# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
1052# generated HTML page (for example: .htm, .php, .asp).
1053# The default value is: .html.
1054# This tag requires that the tag GENERATE_HTML is set to YES.
1055
Anas Nashif06d380c2015-05-13 14:05:30 -04001056HTML_FILE_EXTENSION = .html
Anas Nashif471c1892017-11-19 15:09:02 -05001057
1058# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
1059# each generated HTML page. If the tag is left blank doxygen will generate a
1060# standard header.
1061#
1062# To get valid HTML the header file that includes any scripts and style sheets
1063# that doxygen needs, which is dependent on the configuration options used (e.g.
1064# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
1065# default header using
1066# doxygen -w html new_header.html new_footer.html new_stylesheet.css
1067# YourConfigFile
1068# and then modify the file new_header.html. See also section "Doxygen usage"
1069# for information on how to generate the default header that doxygen normally
1070# uses.
1071# Note: The header is subject to change so you typically have to regenerate the
1072# default header when upgrading to a newer version of doxygen. For a description
1073# of the possible markers and block names see the documentation.
1074# This tag requires that the tag GENERATE_HTML is set to YES.
1075
Anas Nashif06d380c2015-05-13 14:05:30 -04001076HTML_HEADER =
Anas Nashif471c1892017-11-19 15:09:02 -05001077
1078# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
1079# generated HTML page. If the tag is left blank doxygen will generate a standard
1080# footer. See HTML_HEADER for more information on how to generate a default
1081# footer and what special commands can be used inside the footer. See also
1082# section "Doxygen usage" for information on how to generate the default footer
1083# that doxygen normally uses.
1084# This tag requires that the tag GENERATE_HTML is set to YES.
1085
Anas Nashif06d380c2015-05-13 14:05:30 -04001086HTML_FOOTER =
Anas Nashif471c1892017-11-19 15:09:02 -05001087
1088# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
1089# sheet that is used by each HTML page. It can be used to fine-tune the look of
1090# the HTML output. If left blank doxygen will generate a default style sheet.
1091# See also section "Doxygen usage" for information on how to generate the style
1092# sheet that doxygen normally uses.
1093# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
1094# it is more robust and this tag (HTML_STYLESHEET) will in the future become
1095# obsolete.
1096# This tag requires that the tag GENERATE_HTML is set to YES.
1097
Anas Nashif06d380c2015-05-13 14:05:30 -04001098HTML_STYLESHEET =
Anas Nashif471c1892017-11-19 15:09:02 -05001099
1100# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1101# cascading style sheets that are included after the standard style sheets
1102# created by doxygen. Using this option one can overrule certain style aspects.
1103# This is preferred over using HTML_STYLESHEET since it does not replace the
1104# standard style sheet and is therefore more robust against future updates.
1105# Doxygen will copy the style sheet files to the output directory.
1106# Note: The order of the extra style sheet files is of importance (e.g. the last
1107# style sheet in the list overrules the setting of the previous ones in the
1108# list). For an example see the documentation.
1109# This tag requires that the tag GENERATE_HTML is set to YES.
1110
Anas Nashif06d380c2015-05-13 14:05:30 -04001111HTML_EXTRA_STYLESHEET =
Anas Nashif471c1892017-11-19 15:09:02 -05001112
1113# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
1114# other source files which should be copied to the HTML output directory. Note
1115# that these files will be copied to the base HTML output directory. Use the
1116# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
1117# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
1118# files will be copied as-is; there are no commands or markers available.
1119# This tag requires that the tag GENERATE_HTML is set to YES.
1120
Anas Nashif06d380c2015-05-13 14:05:30 -04001121HTML_EXTRA_FILES =
Anas Nashif471c1892017-11-19 15:09:02 -05001122
1123# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
1124# will adjust the colors in the style sheet and background images according to
1125# this color. Hue is specified as an angle on a colorwheel, see
1126# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
1127# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
1128# purple, and 360 is red again.
1129# Minimum value: 0, maximum value: 359, default value: 220.
1130# This tag requires that the tag GENERATE_HTML is set to YES.
1131
Anas Nashif06d380c2015-05-13 14:05:30 -04001132HTML_COLORSTYLE_HUE = 220
Anas Nashif471c1892017-11-19 15:09:02 -05001133
1134# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
1135# in the HTML output. For a value of 0 the output will use grayscales only. A
1136# value of 255 will produce the most vivid colors.
1137# Minimum value: 0, maximum value: 255, default value: 100.
1138# This tag requires that the tag GENERATE_HTML is set to YES.
1139
Anas Nashif06d380c2015-05-13 14:05:30 -04001140HTML_COLORSTYLE_SAT = 100
Anas Nashif471c1892017-11-19 15:09:02 -05001141
1142# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
1143# luminance component of the colors in the HTML output. Values below 100
1144# gradually make the output lighter, whereas values above 100 make the output
1145# darker. The value divided by 100 is the actual gamma applied, so 80 represents
1146# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1147# change the gamma.
1148# Minimum value: 40, maximum value: 240, default value: 80.
1149# This tag requires that the tag GENERATE_HTML is set to YES.
1150
Anas Nashif06d380c2015-05-13 14:05:30 -04001151HTML_COLORSTYLE_GAMMA = 80
Anas Nashif471c1892017-11-19 15:09:02 -05001152
1153# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1154# page will contain the date and time when the page was generated. Setting this
1155# to YES can help to show when doxygen was last run and thus if the
1156# documentation is up to date.
1157# The default value is: NO.
1158# This tag requires that the tag GENERATE_HTML is set to YES.
1159
Carol Leeec2a7462015-08-04 10:21:47 -04001160HTML_TIMESTAMP = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001161
1162# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
1163# documentation will contain sections that can be hidden and shown after the
1164# page has loaded.
1165# The default value is: NO.
1166# This tag requires that the tag GENERATE_HTML is set to YES.
1167
Carol Leeec2a7462015-08-04 10:21:47 -04001168HTML_DYNAMIC_SECTIONS = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001169
1170# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
1171# shown in the various tree structured indices initially; the user can expand
1172# and collapse entries dynamically later on. Doxygen will expand the tree to
1173# such a level that at most the specified number of entries are visible (unless
1174# a fully collapsed tree already exceeds this amount). So setting the number of
1175# entries 1 will produce a full collapsed tree by default. 0 is a special value
1176# representing an infinite number of entries and will result in a full expanded
1177# tree by default.
1178# Minimum value: 0, maximum value: 9999, default value: 100.
1179# This tag requires that the tag GENERATE_HTML is set to YES.
1180
Anas Nashiff1c948d2015-10-04 10:02:16 -04001181HTML_INDEX_NUM_ENTRIES = 100
Anas Nashif471c1892017-11-19 15:09:02 -05001182
1183# If the GENERATE_DOCSET tag is set to YES, additional index files will be
1184# generated that can be used as input for Apple's Xcode 3 integrated development
1185# environment (see: https://developer.apple.com/tools/xcode/), introduced with
1186# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
1187# Makefile in the HTML output directory. Running make will produce the docset in
1188# that directory and running make install will install the docset in
1189# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
1190# startup. See https://developer.apple.com/tools/creatingdocsetswithdoxygen.html
1191# for more information.
1192# The default value is: NO.
1193# This tag requires that the tag GENERATE_HTML is set to YES.
1194
Carol Leeec2a7462015-08-04 10:21:47 -04001195GENERATE_DOCSET = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001196
1197# This tag determines the name of the docset feed. A documentation feed provides
1198# an umbrella under which multiple documentation sets from a single provider
1199# (such as a company or product suite) can be grouped.
1200# The default value is: Doxygen generated docs.
1201# This tag requires that the tag GENERATE_DOCSET is set to YES.
1202
Anas Nashif06d380c2015-05-13 14:05:30 -04001203DOCSET_FEEDNAME = "Doxygen generated docs"
Anas Nashif471c1892017-11-19 15:09:02 -05001204
1205# This tag specifies a string that should uniquely identify the documentation
1206# set bundle. This should be a reverse domain-name style string, e.g.
1207# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
1208# The default value is: org.doxygen.Project.
1209# This tag requires that the tag GENERATE_DOCSET is set to YES.
1210
Anas Nashif06d380c2015-05-13 14:05:30 -04001211DOCSET_BUNDLE_ID = org.doxygen.Project
Anas Nashif471c1892017-11-19 15:09:02 -05001212
1213# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
1214# the documentation publisher. This should be a reverse domain-name style
1215# string, e.g. com.mycompany.MyDocSet.documentation.
1216# The default value is: org.doxygen.Publisher.
1217# This tag requires that the tag GENERATE_DOCSET is set to YES.
1218
Anas Nashif06d380c2015-05-13 14:05:30 -04001219DOCSET_PUBLISHER_ID = org.doxygen.Publisher
Anas Nashif471c1892017-11-19 15:09:02 -05001220
1221# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
1222# The default value is: Publisher.
1223# This tag requires that the tag GENERATE_DOCSET is set to YES.
1224
Anas Nashif06d380c2015-05-13 14:05:30 -04001225DOCSET_PUBLISHER_NAME = Publisher
Anas Nashif471c1892017-11-19 15:09:02 -05001226
1227# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
1228# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
1229# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1230# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
1231# Windows.
1232#
1233# The HTML Help Workshop contains a compiler that can convert all HTML output
1234# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
1235# files are now used as the Windows 98 help format, and will replace the old
1236# Windows help format (.hlp) on all Windows platforms in the future. Compressed
1237# HTML files also contain an index, a table of contents, and you can search for
1238# words in the documentation. The HTML workshop also contains a viewer for
1239# compressed HTML files.
1240# The default value is: NO.
1241# This tag requires that the tag GENERATE_HTML is set to YES.
1242
Anas Nashif06d380c2015-05-13 14:05:30 -04001243GENERATE_HTMLHELP = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001244
1245# The CHM_FILE tag can be used to specify the file name of the resulting .chm
1246# file. You can add a path in front of the file if the result should not be
1247# written to the html output directory.
1248# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1249
Carol Leeec2a7462015-08-04 10:21:47 -04001250CHM_FILE = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001251
1252# The HHC_LOCATION tag can be used to specify the location (absolute path
1253# including file name) of the HTML help compiler (hhc.exe). If non-empty,
1254# doxygen will try to run the HTML help compiler on the generated index.hhp.
1255# The file has to be specified with full path.
1256# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1257
Anas Nashif06d380c2015-05-13 14:05:30 -04001258HHC_LOCATION =
Anas Nashif471c1892017-11-19 15:09:02 -05001259
1260# The GENERATE_CHI flag controls if a separate .chi index file is generated
1261# (YES) or that it should be included in the master .chm file (NO).
1262# The default value is: NO.
1263# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1264
Anas Nashif06d380c2015-05-13 14:05:30 -04001265GENERATE_CHI = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001266
1267# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
1268# and project file content.
1269# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1270
Anas Nashif06d380c2015-05-13 14:05:30 -04001271CHM_INDEX_ENCODING =
Anas Nashif471c1892017-11-19 15:09:02 -05001272
1273# The BINARY_TOC flag controls whether a binary table of contents is generated
1274# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
1275# enables the Previous and Next buttons.
1276# The default value is: NO.
1277# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1278
Carol Leeec2a7462015-08-04 10:21:47 -04001279BINARY_TOC = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001280
1281# The TOC_EXPAND flag can be set to YES to add extra items for group members to
1282# the table of contents of the HTML help documentation and to the tree view.
1283# The default value is: NO.
1284# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
1285
Anas Nashif06d380c2015-05-13 14:05:30 -04001286TOC_EXPAND = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001287
1288# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
1289# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
1290# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
1291# (.qch) of the generated HTML documentation.
1292# The default value is: NO.
1293# This tag requires that the tag GENERATE_HTML is set to YES.
1294
Anas Nashif06d380c2015-05-13 14:05:30 -04001295GENERATE_QHP = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001296
1297# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
1298# the file name of the resulting .qch file. The path specified is relative to
1299# the HTML output folder.
1300# This tag requires that the tag GENERATE_QHP is set to YES.
1301
Anas Nashif06d380c2015-05-13 14:05:30 -04001302QCH_FILE =
Anas Nashif471c1892017-11-19 15:09:02 -05001303
1304# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
1305# Project output. For more information please see Qt Help Project / Namespace
1306# (see: http://doc.qt.io/qt-4.8/qthelpproject.html#namespace).
1307# The default value is: org.doxygen.Project.
1308# This tag requires that the tag GENERATE_QHP is set to YES.
1309
Anas Nashif06d380c2015-05-13 14:05:30 -04001310QHP_NAMESPACE = org.doxygen.Project
Anas Nashif471c1892017-11-19 15:09:02 -05001311
1312# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
1313# Help Project output. For more information please see Qt Help Project / Virtual
1314# Folders (see: http://doc.qt.io/qt-4.8/qthelpproject.html#virtual-folders).
1315# The default value is: doc.
1316# This tag requires that the tag GENERATE_QHP is set to YES.
1317
Anas Nashif06d380c2015-05-13 14:05:30 -04001318QHP_VIRTUAL_FOLDER = doc
Anas Nashif471c1892017-11-19 15:09:02 -05001319
1320# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
1321# filter to add. For more information please see Qt Help Project / Custom
1322# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters).
1323# This tag requires that the tag GENERATE_QHP is set to YES.
1324
Anas Nashif06d380c2015-05-13 14:05:30 -04001325QHP_CUST_FILTER_NAME =
Anas Nashif471c1892017-11-19 15:09:02 -05001326
1327# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
1328# custom filter to add. For more information please see Qt Help Project / Custom
1329# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters).
1330# This tag requires that the tag GENERATE_QHP is set to YES.
1331
Anas Nashif06d380c2015-05-13 14:05:30 -04001332QHP_CUST_FILTER_ATTRS =
Anas Nashif471c1892017-11-19 15:09:02 -05001333
1334# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
1335# project's filter section matches. Qt Help Project / Filter Attributes (see:
1336# http://doc.qt.io/qt-4.8/qthelpproject.html#filter-attributes).
1337# This tag requires that the tag GENERATE_QHP is set to YES.
1338
Anas Nashif06d380c2015-05-13 14:05:30 -04001339QHP_SECT_FILTER_ATTRS =
Anas Nashif471c1892017-11-19 15:09:02 -05001340
1341# The QHG_LOCATION tag can be used to specify the location of Qt's
1342# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
1343# generated .qhp file.
1344# This tag requires that the tag GENERATE_QHP is set to YES.
1345
Anas Nashif06d380c2015-05-13 14:05:30 -04001346QHG_LOCATION =
Anas Nashif471c1892017-11-19 15:09:02 -05001347
1348# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
1349# generated, together with the HTML files, they form an Eclipse help plugin. To
1350# install this plugin and make it available under the help contents menu in
1351# Eclipse, the contents of the directory containing the HTML and XML files needs
1352# to be copied into the plugins directory of eclipse. The name of the directory
1353# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
1354# After copying Eclipse needs to be restarted before the help appears.
1355# The default value is: NO.
1356# This tag requires that the tag GENERATE_HTML is set to YES.
1357
Anas Nashif06d380c2015-05-13 14:05:30 -04001358GENERATE_ECLIPSEHELP = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001359
1360# A unique identifier for the Eclipse help plugin. When installing the plugin
1361# the directory name containing the HTML and XML files should also have this
1362# name. Each documentation set should have its own identifier.
1363# The default value is: org.doxygen.Project.
1364# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
1365
Anas Nashif06d380c2015-05-13 14:05:30 -04001366ECLIPSE_DOC_ID = org.doxygen.Project
Anas Nashif471c1892017-11-19 15:09:02 -05001367
1368# If you want full control over the layout of the generated HTML pages it might
1369# be necessary to disable the index and replace it with your own. The
1370# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
1371# of each HTML page. A value of NO enables the index and the value YES disables
1372# it. Since the tabs in the index contain the same information as the navigation
1373# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
1374# The default value is: NO.
1375# This tag requires that the tag GENERATE_HTML is set to YES.
1376
Anas Nashif06d380c2015-05-13 14:05:30 -04001377DISABLE_INDEX = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001378
1379# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
1380# structure should be generated to display hierarchical information. If the tag
1381# value is set to YES, a side panel will be generated containing a tree-like
1382# index structure (just like the one that is generated for HTML Help). For this
1383# to work a browser that supports JavaScript, DHTML, CSS and frames is required
1384# (i.e. any modern browser). Windows users are probably better off using the
1385# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
1386# further fine-tune the look of the index. As an example, the default style
1387# sheet generated by doxygen has an example that shows how to put an image at
1388# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
1389# the same information as the tab index, you could consider setting
1390# DISABLE_INDEX to YES when enabling this option.
1391# The default value is: NO.
1392# This tag requires that the tag GENERATE_HTML is set to YES.
1393
Carol Leeec2a7462015-08-04 10:21:47 -04001394GENERATE_TREEVIEW = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001395
1396# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
1397# doxygen will group on one line in the generated HTML documentation.
1398#
1399# Note that a value of 0 will completely suppress the enum values from appearing
1400# in the overview section.
1401# Minimum value: 0, maximum value: 20, default value: 4.
1402# This tag requires that the tag GENERATE_HTML is set to YES.
1403
Anas Nashif06d380c2015-05-13 14:05:30 -04001404ENUM_VALUES_PER_LINE = 4
Anas Nashif471c1892017-11-19 15:09:02 -05001405
1406# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
1407# to set the initial width (in pixels) of the frame in which the tree is shown.
1408# Minimum value: 0, maximum value: 1500, default value: 250.
1409# This tag requires that the tag GENERATE_HTML is set to YES.
1410
Anas Nashif06d380c2015-05-13 14:05:30 -04001411TREEVIEW_WIDTH = 250
Anas Nashif471c1892017-11-19 15:09:02 -05001412
1413# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
1414# external symbols imported via tag files in a separate window.
1415# The default value is: NO.
1416# This tag requires that the tag GENERATE_HTML is set to YES.
1417
Anas Nashif06d380c2015-05-13 14:05:30 -04001418EXT_LINKS_IN_WINDOW = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001419
1420# Use this tag to change the font size of LaTeX formulas included as images in
1421# the HTML documentation. When you change the font size after a successful
1422# doxygen run you need to manually remove any form_*.png images from the HTML
1423# output directory to force them to be regenerated.
1424# Minimum value: 8, maximum value: 50, default value: 10.
1425# This tag requires that the tag GENERATE_HTML is set to YES.
1426
Anas Nashif06d380c2015-05-13 14:05:30 -04001427FORMULA_FONTSIZE = 10
Anas Nashif471c1892017-11-19 15:09:02 -05001428
1429# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1430# generated for formulas are transparent PNGs. Transparent PNGs are not
1431# supported properly for IE 6.0, but are supported on all modern browsers.
1432#
1433# Note that when changing this option you need to delete any form_*.png files in
1434# the HTML output directory before the changes have effect.
1435# The default value is: YES.
1436# This tag requires that the tag GENERATE_HTML is set to YES.
1437
Anas Nashif06d380c2015-05-13 14:05:30 -04001438FORMULA_TRANSPARENT = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001439
1440# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
1441# https://www.mathjax.org) which uses client side Javascript for the rendering
1442# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
1443# installed or if you want to formulas look prettier in the HTML output. When
1444# enabled you may also need to install MathJax separately and configure the path
1445# to it using the MATHJAX_RELPATH option.
1446# The default value is: NO.
1447# This tag requires that the tag GENERATE_HTML is set to YES.
1448
Anas Nashif06d380c2015-05-13 14:05:30 -04001449USE_MATHJAX = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001450
1451# When MathJax is enabled you can set the default output format to be used for
1452# the MathJax output. See the MathJax site (see:
1453# http://docs.mathjax.org/en/latest/output.html) for more details.
1454# Possible values are: HTML-CSS (which is slower, but has the best
1455# compatibility), NativeMML (i.e. MathML) and SVG.
1456# The default value is: HTML-CSS.
1457# This tag requires that the tag USE_MATHJAX is set to YES.
1458
Anas Nashif06d380c2015-05-13 14:05:30 -04001459MATHJAX_FORMAT = HTML-CSS
Anas Nashif471c1892017-11-19 15:09:02 -05001460
1461# When MathJax is enabled you need to specify the location relative to the HTML
1462# output directory using the MATHJAX_RELPATH option. The destination directory
1463# should contain the MathJax.js script. For instance, if the mathjax directory
1464# is located at the same level as the HTML output directory, then
1465# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
1466# Content Delivery Network so you can quickly see the result without installing
1467# MathJax. However, it is strongly recommended to install a local copy of
1468# MathJax from https://www.mathjax.org before deployment.
1469# The default value is: http://cdn.mathjax.org/mathjax/latest.
1470# This tag requires that the tag USE_MATHJAX is set to YES.
1471
Anas Nashif06d380c2015-05-13 14:05:30 -04001472MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
Anas Nashif471c1892017-11-19 15:09:02 -05001473
1474# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
1475# extension names that should be enabled during MathJax rendering. For example
1476# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
1477# This tag requires that the tag USE_MATHJAX is set to YES.
1478
Anas Nashif06d380c2015-05-13 14:05:30 -04001479MATHJAX_EXTENSIONS =
Anas Nashif471c1892017-11-19 15:09:02 -05001480
1481# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
1482# of code that will be used on startup of the MathJax code. See the MathJax site
1483# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
1484# example see the documentation.
1485# This tag requires that the tag USE_MATHJAX is set to YES.
1486
Anas Nashif06d380c2015-05-13 14:05:30 -04001487MATHJAX_CODEFILE =
Anas Nashif471c1892017-11-19 15:09:02 -05001488
1489# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
1490# the HTML output. The underlying search engine uses javascript and DHTML and
1491# should work on any modern browser. Note that when using HTML help
1492# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
1493# there is already a search function so this one should typically be disabled.
1494# For large projects the javascript based search engine can be slow, then
1495# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
1496# search using the keyboard; to jump to the search box use <access key> + S
1497# (what the <access key> is depends on the OS and browser, but it is typically
1498# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
1499# key> to jump into the search results window, the results can be navigated
1500# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
1501# the search. The filter options can be selected when the cursor is inside the
1502# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
1503# to select a filter and <Enter> or <escape> to activate or cancel the filter
1504# option.
1505# The default value is: YES.
1506# This tag requires that the tag GENERATE_HTML is set to YES.
1507
Anas Nashif06d380c2015-05-13 14:05:30 -04001508SEARCHENGINE = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001509
1510# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1511# implemented using a web server instead of a web client using Javascript. There
1512# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
1513# setting. When disabled, doxygen will generate a PHP script for searching and
1514# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
1515# and searching needs to be provided by external tools. See the section
1516# "External Indexing and Searching" for details.
1517# The default value is: NO.
1518# This tag requires that the tag SEARCHENGINE is set to YES.
1519
Anas Nashif06d380c2015-05-13 14:05:30 -04001520SERVER_BASED_SEARCH = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001521
1522# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
1523# script for searching. Instead the search results are written to an XML file
1524# which needs to be processed by an external indexer. Doxygen will invoke an
1525# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
1526# search results.
1527#
1528# Doxygen ships with an example indexer (doxyindexer) and search engine
1529# (doxysearch.cgi) which are based on the open source search engine library
1530# Xapian (see: https://xapian.org/).
1531#
1532# See the section "External Indexing and Searching" for details.
1533# The default value is: NO.
1534# This tag requires that the tag SEARCHENGINE is set to YES.
1535
Anas Nashif06d380c2015-05-13 14:05:30 -04001536EXTERNAL_SEARCH = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001537
1538# The SEARCHENGINE_URL should point to a search engine hosted by a web server
1539# which will return the search results when EXTERNAL_SEARCH is enabled.
1540#
1541# Doxygen ships with an example indexer (doxyindexer) and search engine
1542# (doxysearch.cgi) which are based on the open source search engine library
1543# Xapian (see: https://xapian.org/). See the section "External Indexing and
1544# Searching" for details.
1545# This tag requires that the tag SEARCHENGINE is set to YES.
1546
Anas Nashif06d380c2015-05-13 14:05:30 -04001547SEARCHENGINE_URL =
Anas Nashif471c1892017-11-19 15:09:02 -05001548
1549# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
1550# search data is written to a file for indexing by an external tool. With the
1551# SEARCHDATA_FILE tag the name of this file can be specified.
1552# The default file is: searchdata.xml.
1553# This tag requires that the tag SEARCHENGINE is set to YES.
1554
Anas Nashif06d380c2015-05-13 14:05:30 -04001555SEARCHDATA_FILE = searchdata.xml
Anas Nashif471c1892017-11-19 15:09:02 -05001556
1557# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
1558# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
1559# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
1560# projects and redirect the results back to the right project.
1561# This tag requires that the tag SEARCHENGINE is set to YES.
1562
Anas Nashif06d380c2015-05-13 14:05:30 -04001563EXTERNAL_SEARCH_ID =
Anas Nashif471c1892017-11-19 15:09:02 -05001564
1565# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
1566# projects other than the one defined by this configuration file, but that are
1567# all added to the same external search index. Each project needs to have a
1568# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
1569# to a relative location where the documentation can be found. The format is:
1570# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
1571# This tag requires that the tag SEARCHENGINE is set to YES.
1572
Anas Nashif06d380c2015-05-13 14:05:30 -04001573EXTRA_SEARCH_MAPPINGS =
Anas Nashif471c1892017-11-19 15:09:02 -05001574
Anas Nashif06d380c2015-05-13 14:05:30 -04001575#---------------------------------------------------------------------------
1576# Configuration options related to the LaTeX output
1577#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001578
1579# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
1580# The default value is: YES.
1581
Inaky Perez-Gonzalezf6d29b22016-07-01 11:58:28 -07001582GENERATE_LATEX = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001583
1584# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
1585# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1586# it.
1587# The default directory is: latex.
1588# This tag requires that the tag GENERATE_LATEX is set to YES.
1589
Anas Nashif06d380c2015-05-13 14:05:30 -04001590LATEX_OUTPUT = latex
Anas Nashif471c1892017-11-19 15:09:02 -05001591
1592# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
1593# invoked.
1594#
1595# Note that when enabling USE_PDFLATEX this option is only used for generating
1596# bitmaps for formulas in the HTML output, but not in the Makefile that is
1597# written to the output directory.
1598# The default file is: latex.
1599# This tag requires that the tag GENERATE_LATEX is set to YES.
1600
Anas Nashif06d380c2015-05-13 14:05:30 -04001601LATEX_CMD_NAME = latex
Anas Nashif471c1892017-11-19 15:09:02 -05001602
1603# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
1604# index for LaTeX.
1605# The default file is: makeindex.
1606# This tag requires that the tag GENERATE_LATEX is set to YES.
1607
Anas Nashif06d380c2015-05-13 14:05:30 -04001608MAKEINDEX_CMD_NAME = makeindex
Anas Nashif471c1892017-11-19 15:09:02 -05001609
1610# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
1611# documents. This may be useful for small projects and may help to save some
1612# trees in general.
1613# The default value is: NO.
1614# This tag requires that the tag GENERATE_LATEX is set to YES.
1615
Anas Nashif06d380c2015-05-13 14:05:30 -04001616COMPACT_LATEX = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001617
1618# The PAPER_TYPE tag can be used to set the paper type that is used by the
1619# printer.
1620# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
1621# 14 inches) and executive (7.25 x 10.5 inches).
1622# The default value is: a4.
1623# This tag requires that the tag GENERATE_LATEX is set to YES.
1624
Anas Nashif06d380c2015-05-13 14:05:30 -04001625PAPER_TYPE = a4
Anas Nashif471c1892017-11-19 15:09:02 -05001626
1627# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
1628# that should be included in the LaTeX output. The package can be specified just
1629# by its name or with the correct syntax as to be used with the LaTeX
1630# \usepackage command. To get the times font for instance you can specify :
1631# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
1632# To use the option intlimits with the amsmath package you can specify:
1633# EXTRA_PACKAGES=[intlimits]{amsmath}
1634# If left blank no extra packages will be included.
1635# This tag requires that the tag GENERATE_LATEX is set to YES.
1636
Anas Nashif06d380c2015-05-13 14:05:30 -04001637EXTRA_PACKAGES =
Anas Nashif471c1892017-11-19 15:09:02 -05001638
1639# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
1640# generated LaTeX document. The header should contain everything until the first
1641# chapter. If it is left blank doxygen will generate a standard header. See
1642# section "Doxygen usage" for information on how to let doxygen write the
1643# default header to a separate file.
1644#
1645# Note: Only use a user-defined header if you know what you are doing! The
1646# following commands have a special meaning inside the header: $title,
1647# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
1648# $projectbrief, $projectlogo. Doxygen will replace $title with the empty
1649# string, for the replacement values of the other commands the user is referred
1650# to HTML_HEADER.
1651# This tag requires that the tag GENERATE_LATEX is set to YES.
1652
Anas Nashif06d380c2015-05-13 14:05:30 -04001653LATEX_HEADER =
Anas Nashif471c1892017-11-19 15:09:02 -05001654
1655# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
1656# generated LaTeX document. The footer should contain everything after the last
1657# chapter. If it is left blank doxygen will generate a standard footer. See
1658# LATEX_HEADER for more information on how to generate a default footer and what
1659# special commands can be used inside the footer.
1660#
1661# Note: Only use a user-defined footer if you know what you are doing!
1662# This tag requires that the tag GENERATE_LATEX is set to YES.
1663
Anas Nashif06d380c2015-05-13 14:05:30 -04001664LATEX_FOOTER =
Anas Nashif471c1892017-11-19 15:09:02 -05001665
Anas Nashif471c1892017-11-19 15:09:02 -05001666# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
1667# other source files which should be copied to the LATEX_OUTPUT output
1668# directory. Note that the files will be copied as-is; there are no commands or
1669# markers available.
1670# This tag requires that the tag GENERATE_LATEX is set to YES.
1671
Anas Nashif06d380c2015-05-13 14:05:30 -04001672LATEX_EXTRA_FILES =
Anas Nashif471c1892017-11-19 15:09:02 -05001673
1674# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
1675# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
1676# contain links (just like the HTML output) instead of page references. This
1677# makes the output suitable for online browsing using a PDF viewer.
1678# The default value is: YES.
1679# This tag requires that the tag GENERATE_LATEX is set to YES.
1680
Anas Nashif06d380c2015-05-13 14:05:30 -04001681PDF_HYPERLINKS = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001682
1683# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
1684# the PDF file directly from the LaTeX files. Set this option to YES, to get a
1685# higher quality PDF documentation.
1686# The default value is: YES.
1687# This tag requires that the tag GENERATE_LATEX is set to YES.
1688
Anas Nashif06d380c2015-05-13 14:05:30 -04001689USE_PDFLATEX = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001690
1691# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
1692# command to the generated LaTeX files. This will instruct LaTeX to keep running
1693# if errors occur, instead of asking the user for help. This option is also used
1694# when generating formulas in HTML.
1695# The default value is: NO.
1696# This tag requires that the tag GENERATE_LATEX is set to YES.
1697
Anas Nashif06d380c2015-05-13 14:05:30 -04001698LATEX_BATCHMODE = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001699
1700# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
1701# index chapters (such as File Index, Compound Index, etc.) in the output.
1702# The default value is: NO.
1703# This tag requires that the tag GENERATE_LATEX is set to YES.
1704
Anas Nashif06d380c2015-05-13 14:05:30 -04001705LATEX_HIDE_INDICES = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001706
1707# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1708# code with syntax highlighting in the LaTeX output.
1709#
1710# Note that which sources are shown also depends on other settings such as
1711# SOURCE_BROWSER.
1712# The default value is: NO.
1713# This tag requires that the tag GENERATE_LATEX is set to YES.
1714
Anas Nashif06d380c2015-05-13 14:05:30 -04001715LATEX_SOURCE_CODE = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001716
1717# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
1718# bibliography, e.g. plainnat, or ieeetr. See
1719# https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
1720# The default value is: plain.
1721# This tag requires that the tag GENERATE_LATEX is set to YES.
1722
Anas Nashif06d380c2015-05-13 14:05:30 -04001723LATEX_BIB_STYLE = plain
Anas Nashif471c1892017-11-19 15:09:02 -05001724
Anas Nashif06d380c2015-05-13 14:05:30 -04001725#---------------------------------------------------------------------------
1726# Configuration options related to the RTF output
1727#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001728
1729# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
1730# RTF output is optimized for Word 97 and may not look too pretty with other RTF
1731# readers/editors.
1732# The default value is: NO.
1733
Anas Nashif06d380c2015-05-13 14:05:30 -04001734GENERATE_RTF = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001735
1736# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
1737# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1738# it.
1739# The default directory is: rtf.
1740# This tag requires that the tag GENERATE_RTF is set to YES.
1741
Anas Nashif06d380c2015-05-13 14:05:30 -04001742RTF_OUTPUT = rtf
Anas Nashif471c1892017-11-19 15:09:02 -05001743
1744# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
1745# documents. This may be useful for small projects and may help to save some
1746# trees in general.
1747# The default value is: NO.
1748# This tag requires that the tag GENERATE_RTF is set to YES.
1749
Anas Nashif06d380c2015-05-13 14:05:30 -04001750COMPACT_RTF = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001751
1752# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
1753# contain hyperlink fields. The RTF file will contain links (just like the HTML
1754# output) instead of page references. This makes the output suitable for online
1755# browsing using Word or some other Word compatible readers that support those
1756# fields.
1757#
1758# Note: WordPad (write) and others do not support links.
1759# The default value is: NO.
1760# This tag requires that the tag GENERATE_RTF is set to YES.
1761
Carol Leeec2a7462015-08-04 10:21:47 -04001762RTF_HYPERLINKS = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001763
1764# Load stylesheet definitions from file. Syntax is similar to doxygen's config
1765# file, i.e. a series of assignments. You only have to provide replacements,
1766# missing definitions are set to their default value.
1767#
1768# See also section "Doxygen usage" for information on how to generate the
1769# default style sheet that doxygen normally uses.
1770# This tag requires that the tag GENERATE_RTF is set to YES.
1771
Anas Nashif06d380c2015-05-13 14:05:30 -04001772RTF_STYLESHEET_FILE =
Anas Nashif471c1892017-11-19 15:09:02 -05001773
1774# Set optional variables used in the generation of an RTF document. Syntax is
1775# similar to doxygen's config file. A template extensions file can be generated
1776# using doxygen -e rtf extensionFile.
1777# This tag requires that the tag GENERATE_RTF is set to YES.
1778
Anas Nashif06d380c2015-05-13 14:05:30 -04001779RTF_EXTENSIONS_FILE =
Anas Nashif471c1892017-11-19 15:09:02 -05001780
Anas Nashif06d380c2015-05-13 14:05:30 -04001781#---------------------------------------------------------------------------
1782# Configuration options related to the man page output
1783#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001784
1785# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
1786# classes and files.
1787# The default value is: NO.
1788
Anas Nashif06d380c2015-05-13 14:05:30 -04001789GENERATE_MAN = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001790
1791# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
1792# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1793# it. A directory man3 will be created inside the directory specified by
1794# MAN_OUTPUT.
1795# The default directory is: man.
1796# This tag requires that the tag GENERATE_MAN is set to YES.
1797
Anas Nashif06d380c2015-05-13 14:05:30 -04001798MAN_OUTPUT = man
Anas Nashif471c1892017-11-19 15:09:02 -05001799
1800# The MAN_EXTENSION tag determines the extension that is added to the generated
1801# man pages. In case the manual section does not start with a number, the number
1802# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
1803# optional.
1804# The default value is: .3.
1805# This tag requires that the tag GENERATE_MAN is set to YES.
1806
Anas Nashif06d380c2015-05-13 14:05:30 -04001807MAN_EXTENSION = .3
Anas Nashif471c1892017-11-19 15:09:02 -05001808
Anas Nashif471c1892017-11-19 15:09:02 -05001809# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
1810# will generate one additional man file for each entity documented in the real
1811# man page(s). These additional files only source the real man page, but without
1812# them the man command would be unable to find the correct page.
1813# The default value is: NO.
1814# This tag requires that the tag GENERATE_MAN is set to YES.
1815
Anas Nashif06d380c2015-05-13 14:05:30 -04001816MAN_LINKS = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001817
Anas Nashif06d380c2015-05-13 14:05:30 -04001818#---------------------------------------------------------------------------
1819# Configuration options related to the XML output
1820#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001821
1822# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
1823# captures the structure of the code including all documentation.
1824# The default value is: NO.
1825
Anas Nashif06d380c2015-05-13 14:05:30 -04001826GENERATE_XML = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001827
1828# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
1829# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
1830# it.
1831# The default directory is: xml.
1832# This tag requires that the tag GENERATE_XML is set to YES.
1833
Anas Nashif06d380c2015-05-13 14:05:30 -04001834XML_OUTPUT = xml
Anas Nashif471c1892017-11-19 15:09:02 -05001835
1836# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
1837# listings (including syntax highlighting and cross-referencing information) to
1838# the XML output. Note that enabling this will significantly increase the size
1839# of the XML output.
1840# The default value is: YES.
1841# This tag requires that the tag GENERATE_XML is set to YES.
1842
Anas Nashif06d380c2015-05-13 14:05:30 -04001843XML_PROGRAMLISTING = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001844
Anas Nashif06d380c2015-05-13 14:05:30 -04001845#---------------------------------------------------------------------------
1846# Configuration options related to the DOCBOOK output
1847#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001848
1849# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
1850# that can be used to generate PDF.
1851# The default value is: NO.
1852
Anas Nashif06d380c2015-05-13 14:05:30 -04001853GENERATE_DOCBOOK = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001854
1855# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
1856# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
1857# front of it.
1858# The default directory is: docbook.
1859# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
1860
Anas Nashif06d380c2015-05-13 14:05:30 -04001861DOCBOOK_OUTPUT = docbook
Anas Nashif471c1892017-11-19 15:09:02 -05001862
Anas Nashif06d380c2015-05-13 14:05:30 -04001863#---------------------------------------------------------------------------
1864# Configuration options for the AutoGen Definitions output
1865#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001866
1867# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
1868# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
1869# the structure of the code including all documentation. Note that this feature
1870# is still experimental and incomplete at the moment.
1871# The default value is: NO.
1872
Anas Nashif06d380c2015-05-13 14:05:30 -04001873GENERATE_AUTOGEN_DEF = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001874
Anas Nashif06d380c2015-05-13 14:05:30 -04001875#---------------------------------------------------------------------------
1876# Configuration options related to the Perl module output
1877#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001878
1879# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
1880# file that captures the structure of the code including all documentation.
1881#
1882# Note that this feature is still experimental and incomplete at the moment.
1883# The default value is: NO.
1884
Anas Nashif06d380c2015-05-13 14:05:30 -04001885GENERATE_PERLMOD = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001886
1887# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
1888# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
1889# output from the Perl module output.
1890# The default value is: NO.
1891# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1892
Anas Nashif06d380c2015-05-13 14:05:30 -04001893PERLMOD_LATEX = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001894
1895# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
1896# formatted so it can be parsed by a human reader. This is useful if you want to
1897# understand what is going on. On the other hand, if this tag is set to NO, the
1898# size of the Perl module output will be much smaller and Perl will parse it
1899# just the same.
1900# The default value is: YES.
1901# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1902
Anas Nashif06d380c2015-05-13 14:05:30 -04001903PERLMOD_PRETTY = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001904
1905# The names of the make variables in the generated doxyrules.make file are
1906# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
1907# so different doxyrules.make files included by the same Makefile don't
1908# overwrite each other's variables.
1909# This tag requires that the tag GENERATE_PERLMOD is set to YES.
1910
Anas Nashif06d380c2015-05-13 14:05:30 -04001911PERLMOD_MAKEVAR_PREFIX =
Anas Nashif471c1892017-11-19 15:09:02 -05001912
Anas Nashif06d380c2015-05-13 14:05:30 -04001913#---------------------------------------------------------------------------
1914# Configuration options related to the preprocessor
1915#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05001916
1917# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
1918# C-preprocessor directives found in the sources and include files.
1919# The default value is: YES.
1920
Anas Nashif06d380c2015-05-13 14:05:30 -04001921ENABLE_PREPROCESSING = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001922
1923# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
1924# in the source code. If set to NO, only conditional compilation will be
1925# performed. Macro expansion can be done in a controlled way by setting
1926# EXPAND_ONLY_PREDEF to YES.
1927# The default value is: NO.
1928# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1929
Carol Leeec2a7462015-08-04 10:21:47 -04001930MACRO_EXPANSION = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001931
1932# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
1933# the macro expansion is limited to the macros specified with the PREDEFINED and
1934# EXPAND_AS_DEFINED tags.
1935# The default value is: NO.
1936# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1937
Anas Nashif06d380c2015-05-13 14:05:30 -04001938EXPAND_ONLY_PREDEF = NO
Anas Nashif471c1892017-11-19 15:09:02 -05001939
1940# If the SEARCH_INCLUDES tag is set to YES, the include files in the
1941# INCLUDE_PATH will be searched if a #include is found.
1942# The default value is: YES.
1943# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1944
Anas Nashif06d380c2015-05-13 14:05:30 -04001945SEARCH_INCLUDES = YES
Anas Nashif471c1892017-11-19 15:09:02 -05001946
1947# The INCLUDE_PATH tag can be used to specify one or more directories that
1948# contain include files that are not input files but should be processed by the
1949# preprocessor.
1950# This tag requires that the tag SEARCH_INCLUDES is set to YES.
1951
Anas Nashif06d380c2015-05-13 14:05:30 -04001952INCLUDE_PATH =
Anas Nashif471c1892017-11-19 15:09:02 -05001953
1954# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1955# patterns (like *.h and *.hpp) to filter out the header-files in the
1956# directories. If left blank, the patterns specified with FILE_PATTERNS will be
1957# used.
1958# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1959
Anas Nashif06d380c2015-05-13 14:05:30 -04001960INCLUDE_FILE_PATTERNS =
Anas Nashif471c1892017-11-19 15:09:02 -05001961
1962# The PREDEFINED tag can be used to specify one or more macro names that are
1963# defined before the preprocessor is started (similar to the -D option of e.g.
1964# gcc). The argument of the tag is a list of macros of the form: name or
1965# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
1966# is assumed. To prevent a macro definition from being undefined via #undef or
1967# recursively expanded use the := operator instead of the = operator.
1968# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1969
Anas Nashif1f99be52015-09-13 11:22:37 -04001970PREDEFINED = "CONFIG_SYS_CLOCK_EXISTS=y" \
Anas Nashif471c1892017-11-19 15:09:02 -05001971 "CONFIG_KERNEL_EVENT_LOGGER=y" \
1972 "CONFIG_KERNEL_EVENT_LOGGER_DYNAMIC=y" \
1973 "CONFIG_KERNEL_EVENT_LOGGER_CUSTOM_TIMESTAMP=y" \
1974 "CONFIG_TASK_MONITOR=y" \
1975 "CONFIG_UART_INTERRUPT_DRIVEN=y" \
1976 "CONFIG_UART_DRV_CMD=y" \
1977 "CONFIG_SYS_POWER_MANAGEMENT=y" \
1978 "CONFIG_DEVICE_POWER_MANAGEMENT=y" \
1979 "CONFIG_BT_SMP=y" \
Anas Nashifa50a3882018-05-21 22:54:57 -04001980 "CONFIG_USERSPACE=y" \
Anas Nashif471c1892017-11-19 15:09:02 -05001981 "CONFIG_BT_BREDR=y" \
1982 "NET_MGMT_DEFINE_REQUEST_HANDLER(x)=" \
1983 "__deprecated=" \
1984 "__packed=" \
1985 "__aligned(x)=" \
1986 "__printf_like(x, y)=" \
1987 "__attribute__(x)=" \
1988 "__syscall=" \
1989 "__syscall_inline="
1990
1991# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
1992# tag can be used to specify a list of macro names that should be expanded. The
1993# macro definition that is found in the sources will be used. Use the PREDEFINED
1994# tag if you want to use a different macro definition that overrules the
1995# definition found in the source code.
1996# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
1997
Anas Nashif06d380c2015-05-13 14:05:30 -04001998EXPAND_AS_DEFINED =
Anas Nashif471c1892017-11-19 15:09:02 -05001999
2000# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
2001# remove all references to function-like macros that are alone on a line, have
2002# an all uppercase name, and do not end with a semicolon. Such function macros
2003# are typically used for boiler-plate code, and will confuse the parser if not
2004# removed.
2005# The default value is: YES.
2006# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2007
Carol Leeec2a7462015-08-04 10:21:47 -04002008SKIP_FUNCTION_MACROS = NO
Anas Nashif471c1892017-11-19 15:09:02 -05002009
Anas Nashif06d380c2015-05-13 14:05:30 -04002010#---------------------------------------------------------------------------
2011# Configuration options related to external references
2012#---------------------------------------------------------------------------
Anas Nashif471c1892017-11-19 15:09:02 -05002013
2014# The TAGFILES tag can be used to specify one or more tag files. For each tag
2015# file the location of the external documentation should be added. The format of
2016# a tag file without this location is as follows:
2017# TAGFILES = file1 file2 ...
2018# Adding location for the tag files is done as follows:
2019# TAGFILES = file1=loc1 "file2 = loc2" ...
2020# where loc1 and loc2 can be relative or absolute paths or URLs. See the
2021# section "Linking to external documentation" for more information about the use
2022# of tag files.
2023# Note: Each tag file must have a unique name (where the name does NOT include
2024# the path). If a tag file is not located in the directory in which doxygen is
2025# run, you must also specify the path to the tagfile here.
2026
Inaky Perez-Gonzalez85c64462016-06-15 09:53:29 -07002027TAGFILES =
Anas Nashif471c1892017-11-19 15:09:02 -05002028
2029# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
2030# tag file that is based on the input files it reads. See section "Linking to
2031# external documentation" for more information about the usage of tag files.
2032
2033GENERATE_TAGFILE =
2034
2035# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
2036# the class index. If set to NO, only the inherited external classes will be
2037# listed.
2038# The default value is: NO.
2039
Anas Nashif06d380c2015-05-13 14:05:30 -04002040ALLEXTERNALS = NO
Anas Nashif471c1892017-11-19 15:09:02 -05002041
2042# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
2043# in the modules index. If set to NO, only the current project's groups will be
2044# listed.
2045# The default value is: YES.
2046
Anas Nashif06d380c2015-05-13 14:05:30 -04002047EXTERNAL_GROUPS = YES
Anas Nashif471c1892017-11-19 15:09:02 -05002048
2049# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
2050# the related pages index. If set to NO, only the current project's pages will
2051# be listed.
2052# The default value is: YES.
2053
Anas Nashif06d380c2015-05-13 14:05:30 -04002054EXTERNAL_PAGES = YES
Anas Nashif471c1892017-11-19 15:09:02 -05002055
2056# The PERL_PATH should be the absolute path and name of the perl script
2057# interpreter (i.e. the result of 'which perl').
2058# The default file (with absolute path) is: /usr/bin/perl.
2059
Anas Nashif06d380c2015-05-13 14:05:30 -04002060PERL_PATH = /usr/bin/perl
Anas Nashif471c1892017-11-19 15:09:02 -05002061
Anas Nashif06d380c2015-05-13 14:05:30 -04002062#---------------------------------------------------------------------------
2063# Configuration options related to the dot tool
2064#---------------------------------------------------------------------------
Anas Nashif06d380c2015-05-13 14:05:30 -04002065
Anas Nashif471c1892017-11-19 15:09:02 -05002066# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
2067# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2068# NO turns the diagrams off. Note that this option also works with HAVE_DOT
2069# disabled, but it is recommended to install and use dot, since it yields more
2070# powerful graphs.
2071# The default value is: YES.
2072
2073CLASS_DIAGRAMS = NO
2074
2075# You can define message sequence charts within doxygen comments using the \msc
2076# command. Doxygen will then run the mscgen tool (see:
2077# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
2078# documentation. The MSCGEN_PATH tag allows you to specify the directory where
2079# the mscgen tool resides. If left empty the tool is assumed to be found in the
2080# default search path.
2081
2082MSCGEN_PATH =
2083
2084# You can include diagrams made with dia in doxygen documentation. Doxygen will
2085# then run dia to produce the diagram and insert it in the documentation. The
2086# DIA_PATH tag allows you to specify the directory where the dia binary resides.
2087# If left empty dia is assumed to be found in the default search path.
2088
2089DIA_PATH =
2090
2091# If set to YES the inheritance and collaboration graphs will hide inheritance
2092# and usage relations if the target is undocumented or is not a class.
2093# The default value is: YES.
2094
2095HIDE_UNDOC_RELATIONS = YES
2096
2097# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
2098# available from the path. This tool is part of Graphviz (see:
2099# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2100# Bell Labs. The other options in this section have no effect if this option is
2101# set to NO
2102# The default value is: NO.
2103
2104HAVE_DOT = NO
2105
2106# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
2107# to run in parallel. When set to 0 doxygen will base this on the number of
2108# processors available in the system. You can set it explicitly to a value
2109# larger than 0 to get control over the balance between CPU load and processing
2110# speed.
2111# Minimum value: 0, maximum value: 32, default value: 0.
2112# This tag requires that the tag HAVE_DOT is set to YES.
2113
2114DOT_NUM_THREADS = 0
2115
2116# When you want a differently looking font in the dot files that doxygen
2117# generates you can specify the font name using DOT_FONTNAME. You need to make
2118# sure dot is able to find the font, which can be done by putting it in a
2119# standard location or by setting the DOTFONTPATH environment variable or by
2120# setting DOT_FONTPATH to the directory containing the font.
2121# The default value is: Helvetica.
2122# This tag requires that the tag HAVE_DOT is set to YES.
2123
2124DOT_FONTNAME = Helvetica
2125
2126# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2127# dot graphs.
2128# Minimum value: 4, maximum value: 24, default value: 10.
2129# This tag requires that the tag HAVE_DOT is set to YES.
2130
2131DOT_FONTSIZE = 10
2132
2133# By default doxygen will tell dot to use the default font as specified with
2134# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
2135# the path where dot can find it using this tag.
2136# This tag requires that the tag HAVE_DOT is set to YES.
2137
2138DOT_FONTPATH =
2139
2140# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
2141# each documented class showing the direct and indirect inheritance relations.
2142# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
2143# The default value is: YES.
2144# This tag requires that the tag HAVE_DOT is set to YES.
2145
2146CLASS_GRAPH = YES
2147
2148# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
2149# graph for each documented class showing the direct and indirect implementation
2150# dependencies (inheritance, containment, and class references variables) of the
2151# class with other documented classes.
2152# The default value is: YES.
2153# This tag requires that the tag HAVE_DOT is set to YES.
2154
2155COLLABORATION_GRAPH = YES
2156
2157# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
2158# groups, showing the direct groups dependencies.
2159# The default value is: YES.
2160# This tag requires that the tag HAVE_DOT is set to YES.
2161
2162GROUP_GRAPHS = YES
2163
2164# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
2165# collaboration diagrams in a style similar to the OMG's Unified Modeling
2166# Language.
2167# The default value is: NO.
2168# This tag requires that the tag HAVE_DOT is set to YES.
2169
2170UML_LOOK = NO
2171
2172# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
2173# class node. If there are many fields or methods and many nodes the graph may
2174# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2175# number of items for each type to make the size more manageable. Set this to 0
2176# for no limit. Note that the threshold may be exceeded by 50% before the limit
2177# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
2178# but if the number exceeds 15, the total amount of fields shown is limited to
2179# 10.
2180# Minimum value: 0, maximum value: 100, default value: 10.
2181# This tag requires that the tag HAVE_DOT is set to YES.
2182
2183UML_LIMIT_NUM_FIELDS = 10
2184
2185# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
2186# collaboration graphs will show the relations between templates and their
2187# instances.
2188# The default value is: NO.
2189# This tag requires that the tag HAVE_DOT is set to YES.
2190
2191TEMPLATE_RELATIONS = NO
2192
2193# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
2194# YES then doxygen will generate a graph for each documented file showing the
2195# direct and indirect include dependencies of the file with other documented
2196# files.
2197# The default value is: YES.
2198# This tag requires that the tag HAVE_DOT is set to YES.
2199
2200INCLUDE_GRAPH = YES
2201
2202# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
2203# set to YES then doxygen will generate a graph for each documented file showing
2204# the direct and indirect include dependencies of the file with other documented
2205# files.
2206# The default value is: YES.
2207# This tag requires that the tag HAVE_DOT is set to YES.
2208
2209INCLUDED_BY_GRAPH = YES
2210
2211# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
2212# dependency graph for every global function or class method.
2213#
2214# Note that enabling this option will significantly increase the time of a run.
2215# So in most cases it will be better to enable call graphs for selected
2216# functions only using the \callgraph command. Disabling a call graph can be
2217# accomplished by means of the command \hidecallgraph.
2218# The default value is: NO.
2219# This tag requires that the tag HAVE_DOT is set to YES.
2220
2221CALL_GRAPH = NO
2222
2223# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
2224# dependency graph for every global function or class method.
2225#
2226# Note that enabling this option will significantly increase the time of a run.
2227# So in most cases it will be better to enable caller graphs for selected
2228# functions only using the \callergraph command. Disabling a caller graph can be
2229# accomplished by means of the command \hidecallergraph.
2230# The default value is: NO.
2231# This tag requires that the tag HAVE_DOT is set to YES.
2232
2233CALLER_GRAPH = NO
2234
2235# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
2236# hierarchy of all classes instead of a textual one.
2237# The default value is: YES.
2238# This tag requires that the tag HAVE_DOT is set to YES.
2239
2240GRAPHICAL_HIERARCHY = YES
2241
2242# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
2243# dependencies a directory has on other directories in a graphical way. The
2244# dependency relations are determined by the #include relations between the
2245# files in the directories.
2246# The default value is: YES.
2247# This tag requires that the tag HAVE_DOT is set to YES.
2248
2249DIRECTORY_GRAPH = YES
2250
2251# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
2252# generated by dot. For an explanation of the image formats see the section
2253# output formats in the documentation of the dot tool (Graphviz (see:
2254# http://www.graphviz.org/)).
2255# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2256# to make the SVG files visible in IE 9+ (other browsers do not have this
2257# requirement).
2258# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
2259# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2260# png:gdiplus:gdiplus.
2261# The default value is: png.
2262# This tag requires that the tag HAVE_DOT is set to YES.
2263
2264DOT_IMAGE_FORMAT = png
2265
2266# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2267# enable generation of interactive SVG images that allow zooming and panning.
2268#
2269# Note that this requires a modern browser other than Internet Explorer. Tested
2270# and working are Firefox, Chrome, Safari, and Opera.
2271# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2272# the SVG files visible. Older versions of IE do not have SVG support.
2273# The default value is: NO.
2274# This tag requires that the tag HAVE_DOT is set to YES.
2275
2276INTERACTIVE_SVG = NO
2277
2278# The DOT_PATH tag can be used to specify the path where the dot tool can be
2279# found. If left blank, it is assumed the dot tool can be found in the path.
2280# This tag requires that the tag HAVE_DOT is set to YES.
2281
2282DOT_PATH =
2283
2284# The DOTFILE_DIRS tag can be used to specify one or more directories that
2285# contain dot files that are included in the documentation (see the \dotfile
2286# command).
2287# This tag requires that the tag HAVE_DOT is set to YES.
2288
2289DOTFILE_DIRS =
2290
2291# The MSCFILE_DIRS tag can be used to specify one or more directories that
2292# contain msc files that are included in the documentation (see the \mscfile
2293# command).
2294
2295MSCFILE_DIRS =
2296
2297# The DIAFILE_DIRS tag can be used to specify one or more directories that
2298# contain dia files that are included in the documentation (see the \diafile
2299# command).
2300
2301DIAFILE_DIRS =
2302
Anas Nashif471c1892017-11-19 15:09:02 -05002303# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
2304# that will be shown in the graph. If the number of nodes in a graph becomes
2305# larger than this value, doxygen will truncate the graph, which is visualized
2306# by representing a node as a red box. Note that doxygen if the number of direct
2307# children of the root node in a graph is already larger than
2308# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
2309# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
2310# Minimum value: 0, maximum value: 10000, default value: 50.
2311# This tag requires that the tag HAVE_DOT is set to YES.
2312
2313DOT_GRAPH_MAX_NODES = 50
2314
2315# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2316# generated by dot. A depth value of 3 means that only nodes reachable from the
2317# root by following a path via at most 3 edges will be shown. Nodes that lay
2318# further from the root node will be omitted. Note that setting this option to 1
2319# or 2 may greatly reduce the computation time needed for large code bases. Also
2320# note that the size of a graph can be further restricted by
2321# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
2322# Minimum value: 0, maximum value: 1000, default value: 0.
2323# This tag requires that the tag HAVE_DOT is set to YES.
2324
2325MAX_DOT_GRAPH_DEPTH = 0
2326
2327# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2328# background. This is disabled by default, because dot on Windows does not seem
2329# to support this out of the box.
2330#
2331# Warning: Depending on the platform used, enabling this option may lead to
2332# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2333# read).
2334# The default value is: NO.
2335# This tag requires that the tag HAVE_DOT is set to YES.
2336
2337DOT_TRANSPARENT = NO
2338
2339# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
2340# files in one run (i.e. multiple -o and -T options on the command line). This
2341# makes dot run faster, but since only newer versions of dot (>1.8.10) support
2342# this, this feature is disabled by default.
2343# The default value is: NO.
2344# This tag requires that the tag HAVE_DOT is set to YES.
2345
2346DOT_MULTI_TARGETS = NO
2347
2348# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
2349# explaining the meaning of the various boxes and arrows in the dot generated
2350# graphs.
2351# The default value is: YES.
2352# This tag requires that the tag HAVE_DOT is set to YES.
2353
2354GENERATE_LEGEND = YES
2355
2356# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
2357# files that are used to generate the various graphs.
2358# The default value is: YES.
2359# This tag requires that the tag HAVE_DOT is set to YES.
2360
2361DOT_CLEANUP = YES