arduino: fix paths for doc generation

This commit is contained in:
Matthias Ringwald 2016-03-04 15:10:05 +01:00
parent ed2540d4a9
commit 6dd60d2741
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ api_ending = """
# [file_name, api_title, api_lable]
list_of_apis = [
[btstack_folder+"platforms/arduino/BTstack.h", "BTstack", "api_btstack"],
[btstack_folder+"port/arduino/BTstack.h", "BTstack", "api_btstack"],
]
def replacePlaceholder(template, title, lable):

View File

@ -312,7 +312,7 @@ def processExamples(intro_file, examples_folder, examples_ofile):
def main(argv):
btstack_folder = "../../../"
docs_folder = "docs/examples/"
inputfolder = btstack_folder + "platforms/arduino/examples/"
inputfolder = btstack_folder + "port/arduino/examples/"
outputfile = docs_folder + "generated.md"
intro_file = "docs/examples/intro.md"