Home
last modified time | relevance | path

Searched refs:apps_folder (Results 1 – 8 of 8) sorted by relevance

/btstack/port/esp32/
H A Dcreate_examples.py70 apps_folder = example_folder + example + "/"
71 if os.path.exists(apps_folder):
72 shutil.rmtree(apps_folder)
73 os.makedirs(apps_folder)
80 dst = apps_folder + '/' + item
84 with open(apps_folder + "CMakeLists.txt", "wt") as fout:
88 main_folder = apps_folder + "main/"
93 shutil.copyfile(script_path + '/template/main/main.c', apps_folder + "/main/main.c")
97 shutil.copyfile(examples_embedded + file, apps_folder + "/main/" + example + ".c")
101 shutil.copy(examples_embedded + 'sco_demo_util.c', apps_folder + '/main/')
[all …]
H A Ddelete_examples.py25 apps_folder = apps_btstack + "example/" + example + "/" variable
26 if os.path.exists(apps_folder):
27 shutil.rmtree(apps_folder)
/btstack/port/apollo2-em9304/
H A Dcreate_examples.py52 apps_folder = apps_btstack + "btstack_" + example + "/" variable
53 if not os.path.exists(apps_folder):
54 os.makedirs(apps_folder)
57 shutil.copyfile(example_template + "Makefile", apps_folder + "Makefile");
60 gcc_folder = apps_folder + "/gcc/"
69 src_folder = apps_folder + "/src/"
85 shutil.copyfile(example_template + "gcc/" + file, apps_folder + "/gcc/" + file);
/btstack/port/archive/wiced-h5/
H A Dcreate_examples.py118 apps_folder = apps_btstack + example + "/" variable
119 if not os.path.exists(apps_folder):
120 os.makedirs(apps_folder)
123 with open(apps_folder + example + ".mk", "wt") as fout:
134 update_gatt_script = apps_folder + "update_gatt_db.sh"
/btstack/port/wiced-h4/
H A Dcreate_examples.py115 apps_folder = apps_btstack + example + "/" variable
116 if not os.path.exists(apps_folder):
117 os.makedirs(apps_folder)
120 with open(apps_folder + example + ".mk", "wt") as fout:
131 update_gatt_script = apps_folder + "update_gatt_db.sh"
/btstack/port/samv71-xplained-atwilc3000/scripts/
H A Ddelete_examples.py27 apps_folder = apps_btstack + example + "/" variable
28 if os.path.exists(apps_folder):
29 shutil.rmtree(apps_folder)
/btstack/port/max32630-fthr/scripts/
H A Ddelete_examples.py27 apps_folder = apps_btstack + example + "/" variable
28 if os.path.exists(apps_folder):
29 shutil.rmtree(apps_folder)
/btstack/port/archive/pic32-harmony/
H A Dcreate_examples.py60 apps_folder = apps_btstack + example + "/" variable
61 shutil.rmtree(apps_folder, ignore_errors=True)
62 os.makedirs(apps_folder)
67 update_gatt_script = apps_folder + "update_gatt_db.sh"
78 appX_folder = apps_folder + example + ".X/"