Skip to content

Commit 7ef9548

Browse files
committed
Merge remote-tracking branch 'origin/develop' into main
2 parents 903edd7 + 08f4366 commit 7ef9548

6 files changed

Lines changed: 237 additions & 91 deletions

File tree

Doxygen

Lines changed: 101 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.8.20
1+
# Doxyfile 1.9.1
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -38,13 +38,13 @@ PROJECT_NAME = "Ring Buffer module"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = V1.0.0
41+
PROJECT_NUMBER = V1.0.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
4545
# quick idea about the purpose of the project. Keep the description short.
4646

47-
PROJECT_BRIEF = "Misc Library"
47+
PROJECT_BRIEF = "General Embedded C Libraries"
4848

4949
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
5050
# in the documentation. The maximum height of the logo should not exceed 55
@@ -323,7 +323,10 @@ OPTIMIZE_OUTPUT_SLICE = NO
323323
# Note: For files without extension you can use no_extension as a placeholder.
324324
#
325325
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
326-
# the files are not read by doxygen.
326+
# the files are not read by doxygen. When specifying no_extension you should add
327+
# * to the FILE_PATTERNS.
328+
#
329+
# Note see also the list of default file extension mappings.
327330

328331
EXTENSION_MAPPING =
329332

@@ -533,6 +536,13 @@ EXTRACT_LOCAL_METHODS = NO
533536

534537
EXTRACT_ANON_NSPACES = NO
535538

539+
# If this flag is set to YES, the name of an unnamed parameter in a declaration
540+
# will be determined by the corresponding definition. By default unnamed
541+
# parameters remain unnamed in the output.
542+
# The default value is: YES.
543+
544+
RESOLVE_UNNAMED_PARAMS = YES
545+
536546
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
537547
# undocumented members inside documented classes or files. If set to NO these
538548
# members will be included in the various overviews, but no documentation
@@ -570,11 +580,18 @@ HIDE_IN_BODY_DOCS = NO
570580

571581
INTERNAL_DOCS = NO
572582

573-
# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
574-
# names in lower-case letters. If set to YES, upper-case letters are also
575-
# allowed. This is useful if you have classes or files whose names only differ
576-
# in case and if your file system supports case sensitive file names. Windows
577-
# (including Cygwin) and Mac users are advised to set this option to NO.
583+
# With the correct setting of option CASE_SENSE_NAMES doxygen will better be
584+
# able to match the capabilities of the underlying filesystem. In case the
585+
# filesystem is case sensitive (i.e. it supports files in the same directory
586+
# whose names only differ in casing), the option must be set to YES to properly
587+
# deal with such files in case they appear in the input. For filesystems that
588+
# are not case sensitive the option should be be set to NO to properly deal with
589+
# output files written for symbols that only differ in casing, such as for two
590+
# classes, one named CLASS and the other named Class, and to also support
591+
# references to files without having to specify the exact matching casing. On
592+
# Windows (including Cygwin) and MacOS, users should typically set this option
593+
# to NO, whereas on Linux or other Unix flavors it should typically be set to
594+
# YES.
578595
# The default value is: system dependent.
579596

580597
CASE_SENSE_NAMES = NO
@@ -813,7 +830,10 @@ WARN_IF_DOC_ERROR = YES
813830
WARN_NO_PARAMDOC = NO
814831

815832
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
816-
# a warning is encountered.
833+
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
834+
# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
835+
# at the end of the doxygen process doxygen will return with a non-zero status.
836+
# Possible values are: NO, YES and FAIL_ON_WARNINGS.
817837
# The default value is: NO.
818838

819839
WARN_AS_ERROR = NO
@@ -849,8 +869,8 @@ INPUT = .
849869
# This tag can be used to specify the character encoding of the source files
850870
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
851871
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
852-
# documentation (see: https://www.gnu.org/software/libiconv/) for the list of
853-
# possible encodings.
872+
# documentation (see:
873+
# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
854874
# The default value is: UTF-8.
855875

856876
INPUT_ENCODING = UTF-8
@@ -863,13 +883,15 @@ INPUT_ENCODING = UTF-8
863883
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
864884
# read by doxygen.
865885
#
886+
# Note the list of default checked file patterns might differ from the list of
887+
# default file extension mappings.
888+
#
866889
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
867890
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
868891
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
869892
# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment),
870-
# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen
871-
# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd,
872-
# *.vhdl, *.ucf, *.qsf and *.ice.
893+
# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl,
894+
# *.ucf, *.qsf and *.ice.
873895

874896
FILE_PATTERNS = *.c \
875897
*.h
@@ -1085,16 +1107,22 @@ USE_HTAGS = NO
10851107
VERBATIM_HEADERS = YES
10861108

10871109
# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
1088-
# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
1089-
# cost of reduced performance. This can be particularly helpful with template
1090-
# rich C++ code for which doxygen's built-in parser lacks the necessary type
1091-
# information.
1110+
# clang parser (see:
1111+
# http://clang.llvm.org/) for more accurate parsing at the cost of reduced
1112+
# performance. This can be particularly helpful with template rich C++ code for
1113+
# which doxygen's built-in parser lacks the necessary type information.
10921114
# Note: The availability of this option depends on whether or not doxygen was
10931115
# generated with the -Duse_libclang=ON option for CMake.
10941116
# The default value is: NO.
10951117

10961118
CLANG_ASSISTED_PARSING = YES
10971119

1120+
# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to
1121+
# YES then doxygen will add the directory of each input to the include path.
1122+
# The default value is: YES.
1123+
1124+
CLANG_ADD_INC_PATHS = YES
1125+
10981126
# If clang assisted parsing is enabled you can provide the compiler with command
10991127
# line options that you would normally use when invoking the compiler. Note that
11001128
# the include paths will already be set by doxygen for the files and directories
@@ -1108,7 +1136,7 @@ CLANG_OPTIONS =
11081136
# file is the compilation database (see:
11091137
# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the
11101138
# options used when the source files were built. This is equivalent to
1111-
# specifying the "-p" option to a clang tool, such as clang-check. These options
1139+
# specifying the -p option to a clang tool, such as clang-check. These options
11121140
# will then be passed to the parser. Any options specified with CLANG_OPTIONS
11131141
# will be added as well.
11141142
# Note: The availability of this option depends on whether or not doxygen was
@@ -1127,13 +1155,6 @@ CLANG_DATABASE_PATH =
11271155

11281156
ALPHABETICAL_INDEX = NO
11291157

1130-
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1131-
# which the alphabetical index list will be split.
1132-
# Minimum value: 1, maximum value: 20, default value: 5.
1133-
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1134-
1135-
COLS_IN_ALPHA_INDEX = 5
1136-
11371158
# In case all classes in a project start with a common prefix, all classes will
11381159
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
11391160
# can be used to specify a prefix (or a list of prefixes) that should be ignored
@@ -1304,10 +1325,11 @@ HTML_INDEX_NUM_ENTRIES = 100
13041325

13051326
# If the GENERATE_DOCSET tag is set to YES, additional index files will be
13061327
# generated that can be used as input for Apple's Xcode 3 integrated development
1307-
# environment (see: https://developer.apple.com/xcode/), introduced with OSX
1308-
# 10.5 (Leopard). To create a documentation set, doxygen will generate a
1309-
# Makefile in the HTML output directory. Running make will produce the docset in
1310-
# that directory and running make install will install the docset in
1328+
# environment (see:
1329+
# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
1330+
# create a documentation set, doxygen will generate a Makefile in the HTML
1331+
# output directory. Running make will produce the docset in that directory and
1332+
# running make install will install the docset in
13111333
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
13121334
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
13131335
# genXcode/_index.html for more information.
@@ -1349,8 +1371,8 @@ DOCSET_PUBLISHER_NAME = Publisher
13491371
# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
13501372
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
13511373
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
1352-
# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on
1353-
# Windows.
1374+
# (see:
1375+
# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows.
13541376
#
13551377
# The HTML Help Workshop contains a compiler that can convert all HTML output
13561378
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
@@ -1425,33 +1447,34 @@ QCH_FILE =
14251447

14261448
# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
14271449
# Project output. For more information please see Qt Help Project / Namespace
1428-
# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
1450+
# (see:
1451+
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
14291452
# The default value is: org.doxygen.Project.
14301453
# This tag requires that the tag GENERATE_QHP is set to YES.
14311454

14321455
QHP_NAMESPACE = org.doxygen.Project
14331456

14341457
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
14351458
# Help Project output. For more information please see Qt Help Project / Virtual
1436-
# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-
1437-
# folders).
1459+
# Folders (see:
1460+
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
14381461
# The default value is: doc.
14391462
# This tag requires that the tag GENERATE_QHP is set to YES.
14401463

14411464
QHP_VIRTUAL_FOLDER = doc
14421465

14431466
# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
14441467
# filter to add. For more information please see Qt Help Project / Custom
1445-
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
1446-
# filters).
1468+
# Filters (see:
1469+
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
14471470
# This tag requires that the tag GENERATE_QHP is set to YES.
14481471

14491472
QHP_CUST_FILTER_NAME =
14501473

14511474
# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
14521475
# custom filter to add. For more information please see Qt Help Project / Custom
1453-
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
1454-
# filters).
1476+
# Filters (see:
1477+
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
14551478
# This tag requires that the tag GENERATE_QHP is set to YES.
14561479

14571480
QHP_CUST_FILTER_ATTRS =
@@ -1463,9 +1486,9 @@ QHP_CUST_FILTER_ATTRS =
14631486

14641487
QHP_SECT_FILTER_ATTRS =
14651488

1466-
# The QHG_LOCATION tag can be used to specify the location of Qt's
1467-
# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
1468-
# generated .qhp file.
1489+
# The QHG_LOCATION tag can be used to specify the location (absolute path
1490+
# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
1491+
# run qhelpgenerator on the generated .qhp file.
14691492
# This tag requires that the tag GENERATE_QHP is set to YES.
14701493

14711494
QHG_LOCATION =
@@ -1592,7 +1615,7 @@ USE_MATHJAX = NO
15921615

15931616
# When MathJax is enabled you can set the default output format to be used for
15941617
# the MathJax output. See the MathJax site (see:
1595-
# http://docs.mathjax.org/en/latest/output.html) for more details.
1618+
# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details.
15961619
# Possible values are: HTML-CSS (which is slower, but has the best
15971620
# compatibility), NativeMML (i.e. MathML) and SVG.
15981621
# The default value is: HTML-CSS.
@@ -1622,7 +1645,8 @@ MATHJAX_EXTENSIONS =
16221645

16231646
# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
16241647
# of code that will be used on startup of the MathJax code. See the MathJax site
1625-
# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
1648+
# (see:
1649+
# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
16261650
# example see the documentation.
16271651
# This tag requires that the tag USE_MATHJAX is set to YES.
16281652

@@ -1669,7 +1693,8 @@ SERVER_BASED_SEARCH = NO
16691693
#
16701694
# Doxygen ships with an example indexer (doxyindexer) and search engine
16711695
# (doxysearch.cgi) which are based on the open source search engine library
1672-
# Xapian (see: https://xapian.org/).
1696+
# Xapian (see:
1697+
# https://xapian.org/).
16731698
#
16741699
# See the section "External Indexing and Searching" for details.
16751700
# The default value is: NO.
@@ -1682,8 +1707,9 @@ EXTERNAL_SEARCH = NO
16821707
#
16831708
# Doxygen ships with an example indexer (doxyindexer) and search engine
16841709
# (doxysearch.cgi) which are based on the open source search engine library
1685-
# Xapian (see: https://xapian.org/). See the section "External Indexing and
1686-
# Searching" for details.
1710+
# Xapian (see:
1711+
# https://xapian.org/). See the section "External Indexing and Searching" for
1712+
# details.
16871713
# This tag requires that the tag SEARCHENGINE is set to YES.
16881714

16891715
SEARCHENGINE_URL =
@@ -2366,10 +2392,32 @@ UML_LOOK = NO
23662392
# but if the number exceeds 15, the total amount of fields shown is limited to
23672393
# 10.
23682394
# Minimum value: 0, maximum value: 100, default value: 10.
2369-
# This tag requires that the tag HAVE_DOT is set to YES.
2395+
# This tag requires that the tag UML_LOOK is set to YES.
23702396

23712397
UML_LIMIT_NUM_FIELDS = 10
23722398

2399+
# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
2400+
# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
2401+
# tag is set to YES, doxygen will add type and arguments for attributes and
2402+
# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
2403+
# will not generate fields with class member information in the UML graphs. The
2404+
# class diagrams will look similar to the default class diagrams but using UML
2405+
# notation for the relationships.
2406+
# Possible values are: NO, YES and NONE.
2407+
# The default value is: NO.
2408+
# This tag requires that the tag UML_LOOK is set to YES.
2409+
2410+
DOT_UML_DETAILS = NO
2411+
2412+
# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
2413+
# to display on a single line. If the actual line length exceeds this threshold
2414+
# significantly it will wrapped across multiple lines. Some heuristics are apply
2415+
# to avoid ugly line breaks.
2416+
# Minimum value: 0, maximum value: 1000, default value: 17.
2417+
# This tag requires that the tag HAVE_DOT is set to YES.
2418+
2419+
DOT_WRAP_THRESHOLD = 17
2420+
23732421
# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
23742422
# collaboration graphs will show the relations between templates and their
23752423
# instances.
@@ -2559,9 +2607,11 @@ DOT_MULTI_TARGETS = NO
25592607

25602608
GENERATE_LEGEND = YES
25612609

2562-
# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
2610+
# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
25632611
# files that are used to generate the various graphs.
2612+
#
2613+
# Note: This setting is not only used for dot files but also for msc and
2614+
# plantuml temporary files.
25642615
# The default value is: YES.
2565-
# This tag requires that the tag HAVE_DOT is set to YES.
25662616

25672617
DOT_CLEANUP = YES

doc/ring_buffer_rev1.0.0_doxy.zip

-231 KB
Binary file not shown.

doc/ring_buffer_rev1.0.1.zip

241 KB
Binary file not shown.

0 commit comments

Comments
 (0)