Skip to content

Commit 56a9541

Browse files
Merge pull request #26 from dani007200964/dev-database
Dev database
2 parents 8ba7987 + b6fe6cb commit 56a9541

File tree

910 files changed

+3265
-123747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

910 files changed

+3265
-123747
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
build/*
2-
!build/README.md
2+
docs/*

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "docs/Style/doxygen-awesome-css"]
22
path = docs/Style/doxygen-awesome-css
33
url = https://github.com/jothepro/doxygen-awesome-css.git
4+
[submodule "extras/doxygen-awesome-css"]
5+
path = extras/doxygen-awesome-css
6+
url = https://github.com/jothepro/doxygen-awesome-css.git

.vscode/settings.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
"utility": "cpp",
88
"xutility": "cpp",
99
"cmath": "cpp",
10-
"initializer_list": "cpp"
11-
}
10+
"initializer_list": "cpp",
11+
"xstring": "cpp",
12+
"xlocale": "cpp",
13+
"ios": "cpp",
14+
"xmemory": "cpp",
15+
"system_error": "cpp",
16+
"typeinfo": "cpp"
17+
},
18+
"C_Cpp.errorSquiggles": "disabled"
1219
}

CMakeLists.txt

Lines changed: 0 additions & 122 deletions
This file was deleted.

Doxyfile

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ PROJECT_BRIEF = "Lightweight Command Parser"
6161
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
6262
# the logo to the output directory.
6363

64-
PROJECT_LOGO = docs/images/logo.svg
64+
PROJECT_LOGO = C:/Users/dani0/Documents/Arduino/libraries/Commander-API/extras/Assets/logo.svg
6565

6666
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
6767
# into which the generated documentation will be written. If a relative path is
6868
# entered, it will be relative to the location where doxygen was started. If
6969
# left blank the current directory will be used.
7070

71-
OUTPUT_DIRECTORY = docs
71+
OUTPUT_DIRECTORY = ../CommanderDocs/
7272

7373
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
7474
# sub-directories (in 2 levels) under the output directory of each output format
@@ -342,7 +342,7 @@ OPTIMIZE_OUTPUT_SLICE = NO
342342
#
343343
# Note see also the list of default file extension mappings.
344344

345-
EXTENSION_MAPPING =
345+
EXTENSION_MAPPING = ino=cpp
346346

347347
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
348348
# according to the Markdown format, which allows for more readable
@@ -795,7 +795,7 @@ FILE_VERSION_FILTER =
795795
# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
796796
# tag is left empty.
797797

798-
LAYOUT_FILE = docs/Style/layout.xml
798+
LAYOUT_FILE = extras/Assets/DoxygenLayout.xml
799799

800800
# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
801801
# the reference definitions. This must be a list of .bib files. The .bib
@@ -909,7 +909,7 @@ WARN_LOGFILE =
909909
# Note: If this tag is empty the current directory is searched.
910910

911911
INPUT = src \
912-
docs/markdown_pages
912+
extras/Assets/DocuPages
913913

914914
# This tag can be used to specify the character encoding of the source files
915915
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -1043,7 +1043,7 @@ EXCLUDE_SYMBOLS =
10431043
# that contain example code fragments that are included (see the \include
10441044
# command).
10451045

1046-
EXAMPLE_PATH = extras/examples_doxygen
1046+
EXAMPLE_PATH =
10471047

10481048
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
10491049
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
@@ -1063,7 +1063,7 @@ EXAMPLE_RECURSIVE = YES
10631063
# that contain images that are to be included in the documentation (see the
10641064
# \image command).
10651065

1066-
IMAGE_PATH = docs/images
1066+
IMAGE_PATH = extras/Assets/DocuImages
10671067

10681068
# The INPUT_FILTER tag can be used to specify a program that doxygen should
10691069
# invoke to filter for each input file. Doxygen will invoke the filter program
@@ -1322,7 +1322,7 @@ HTML_FILE_EXTENSION = .html
13221322
# of the possible markers and block names see the documentation.
13231323
# This tag requires that the tag GENERATE_HTML is set to YES.
13241324

1325-
HTML_HEADER = docs/Style/doxygen-custom/header.html
1325+
HTML_HEADER = extras/Assets/header.html
13261326

13271327
# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
13281328
# generated HTML page. If the tag is left blank doxygen will generate a standard
@@ -1332,7 +1332,7 @@ HTML_HEADER = docs/Style/doxygen-custom/header.html
13321332
# that doxygen normally uses.
13331333
# This tag requires that the tag GENERATE_HTML is set to YES.
13341334

1335-
HTML_FOOTER = docs/Style/doxygen-custom/footer.html
1335+
HTML_FOOTER =
13361336

13371337
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
13381338
# sheet that is used by each HTML page. It can be used to fine-tune the look of
@@ -1357,11 +1357,10 @@ HTML_STYLESHEET =
13571357
# list). For an example see the documentation.
13581358
# This tag requires that the tag GENERATE_HTML is set to YES.
13591359

1360-
HTML_EXTRA_STYLESHEET = docs/Style/doxygen-custom/custom.css \
1361-
docs/Style/doxygen-custom/custom-alternative.css \
1362-
docs/Style/doxygen-awesome-css/doxygen-awesome.css \
1363-
docs/Style/doxygen-awesome-css/doxygen-awesome-sidebar-only.css \
1364-
docs/Style/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css
1360+
HTML_EXTRA_STYLESHEET = extras/doxygen-awesome-css/doxygen-awesome.css \
1361+
extras/doxygen-awesome-css/doxygen-awesome-sidebar-only.css \
1362+
extras/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css \
1363+
extras/Assets/custom_header.css
13651364

13661365
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
13671366
# other source files which should be copied to the HTML output directory. Note
@@ -1371,13 +1370,10 @@ HTML_EXTRA_STYLESHEET = docs/Style/doxygen-custom/custom.css \
13711370
# files will be copied as-is; there are no commands or markers available.
13721371
# This tag requires that the tag GENERATE_HTML is set to YES.
13731372

1374-
HTML_EXTRA_FILES = docs/images/arduino_logo.png \
1375-
docs/images/platformio_logo.png \
1376-
docs/Style/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js \
1377-
docs/Style/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js \
1378-
docs/Style/doxygen-awesome-css/doxygen-awesome-interactive-toc.js \
1379-
docs/Style/doxygen-awesome-css/doxygen-awesome-paragraph-link.js \
1380-
docs/Style/doxygen-awesome-css/doxygen-awesome-tabs.js
1373+
HTML_EXTRA_FILES = extras/Assets/DocuImages/support_me_on_kofi_red.png \
1374+
extras/Assets/supported_boards.html \
1375+
extras/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js \
1376+
extras/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js
13811377

13821378
# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output
13831379
# should be rendered with a dark or light theme. Default setting AUTO_LIGHT
@@ -1405,15 +1401,15 @@ HTML_COLORSTYLE = LIGHT
14051401
# Minimum value: 0, maximum value: 359, default value: 220.
14061402
# This tag requires that the tag GENERATE_HTML is set to YES.
14071403

1408-
HTML_COLORSTYLE_HUE = 209
1404+
HTML_COLORSTYLE_HUE = 220
14091405

14101406
# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
14111407
# in the HTML output. For a value of 0 the output will use gray-scales only. A
14121408
# value of 255 will produce the most vivid colors.
14131409
# Minimum value: 0, maximum value: 255, default value: 100.
14141410
# This tag requires that the tag GENERATE_HTML is set to YES.
14151411

1416-
HTML_COLORSTYLE_SAT = 255
1412+
HTML_COLORSTYLE_SAT = 100
14171413

14181414
# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
14191415
# luminance component of the colors in the HTML output. Values below 100
@@ -1424,7 +1420,7 @@ HTML_COLORSTYLE_SAT = 255
14241420
# Minimum value: 40, maximum value: 240, default value: 80.
14251421
# This tag requires that the tag GENERATE_HTML is set to YES.
14261422

1427-
HTML_COLORSTYLE_GAMMA = 113
1423+
HTML_COLORSTYLE_GAMMA = 80
14281424

14291425
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
14301426
# page will contain the date and time when the page was generated. Setting this

0 commit comments

Comments
 (0)