Skip to content

Commit 0243c92

Browse files
patrickelectricpeterbarker
authored andcommitted
docs: Add ardusub
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent f455911 commit 0243c92

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

docs/build-ardusub.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3+
4+
cd $DIR/..
5+
6+
. docs/setup.sh
7+
8+
if [ ! -f $DOCS_OUTPUT_BASE/tags/libraries ];
9+
then
10+
echo "Must build libraries first"
11+
exit 0
12+
fi
13+
14+
doxygen docs/config/ardusub
15+

docs/config/ardusub

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@INCLUDE = docs/config/default
2+
3+
PROJECT_NAME = "APM:Sub"
4+
INPUT = ArduSub/
5+
OUTPUT_DIRECTORY = $(DOCS_OUTPUT_BASE)/ArduSub
6+
HTML_OUTPUT = .
7+
TAGFILES = $(DOCS_OUTPUT_BASE)/tags/libraries=../libraries
8+

0 commit comments

Comments
 (0)