btstack/port/wiced-h5/create_examples.py

93 lines
2.7 KiB
Python
Raw Normal View History

2016-01-04 15:58:06 +00:00
#!/usr/bin/env python
#
# Create project files for all BTstack embedded examples in WICED/apps/btstack
import os
import shutil
import sys
import time
import subprocess
2016-01-04 15:58:06 +00:00
mk_template = '''#
# BTstack example 'EXAMPLE' for WICED port
#
# Generated by TOOL
# On DATE
NAME := EXAMPLE
GLOBAL_INCLUDES += .
$(NAME)_SOURCES := ../../../libraries/btstack/example/EXAMPLE.c
2017-05-02 16:16:08 +00:00
$(NAME)_COMPONENTS += btstack/port/wiced-h5
$(NAME)_CFLAGS += ADDITIONAL_CFLAGS
2016-01-04 15:58:06 +00:00
'''
gatt_update_template = '''#!/bin/sh
DIR=`dirname $0`
BTSTACK_ROOT=$DIR/../../../libraries/btstack
echo "Creating EXAMPLE.h from EXAMPLE.gatt"
2016-04-10 19:58:19 +00:00
$BTSTACK_ROOT/tool/compile_gatt.py $BTSTACK_ROOT/example/EXAMPLE.gatt $DIR/EXAMPLE.h
'''
2016-01-04 15:58:06 +00:00
# get script path
script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
# validate WICED root by reading version.txt
wiced_root = script_path + "/../../../../"
wiced_version = ""
try:
with open(wiced_root + 'version.txt', 'r') as fin:
wiced_version = fin.read() # Read the contents of the file into memory.
except:
pass
if not "WICED Version" in wiced_version:
print("Cannot find WICED root. Make sure BTstack is checked out in WICED-SDK-X/libraries")
sys.exit(1)
# show WICED version
wiced_version = wiced_version.split()[2]
print("Found WICED SDK version: %s" % wiced_version)
additional_cflags = ""
if wiced_version < "3.4.0":
print("Adding WICED_UART_READ_DOES_NOT_RETURN_BYTES_READ for SDK < 3.4.0")
additional_cflags = "-DWICED_UART_READ_DOES_NOT_RETURN_BYTES_READ"
2016-01-04 15:58:06 +00:00
# path to examples
examples_embedded = script_path + "/../../example/"
2016-01-04 15:58:06 +00:00
# path to WICED/apps/btstack
apps_btstack = wiced_root + "/apps/btstack/"
print("Creating examples in apps/btstack:")
# iterate over btstack examples
for file in os.listdir(examples_embedded):
if not file.endswith(".c"):
continue
example = file[:-2]
# create folder
apps_folder = apps_btstack + example + "/"
if not os.path.exists(apps_folder):
os.makedirs(apps_folder)
# create .mk file
with open(apps_folder + example + ".mk", "wt") as fout:
fout.write(mk_template.replace("EXAMPLE", example).replace("TOOL", script_path).replace("ADDITIONAL_CFLAGS", additional_cflags).replace("DATE",time.strftime("%c")))
2016-01-04 15:58:06 +00:00
# create update_gatt.sh if .gatt file is present
gatt_path = examples_embedded + example + ".gatt"
2016-01-04 15:58:06 +00:00
if os.path.exists(gatt_path):
update_gatt_script = apps_folder + "update_gatt_db.sh"
with open(update_gatt_script, "wt") as fout:
fout.write(gatt_update_template.replace("EXAMPLE", example))
os.chmod(update_gatt_script, 0o755)
subprocess.call(update_gatt_script + "> /dev/null", shell=True)
print("- %s including compiled GATT DB" % example)
else:
print("- %s" % example)
2016-01-04 15:58:06 +00:00