From 2100821c335d46bbad2b67fd0a853fa9f06d66d9 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 1 Mar 2018 10:39:38 +0100 Subject: [PATCH] esp32: add sco_util.c to hsp_hs_demo --- port/esp32/create_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/esp32/create_examples.py b/port/esp32/create_examples.py index a8de12490..733b9a1a5 100755 --- a/port/esp32/create_examples.py +++ b/port/esp32/create_examples.py @@ -84,7 +84,7 @@ def create_examples(script_path, suffix): shutil.copyfile(examples_embedded + file, apps_folder + "/main/" + example + ".c") # add sco_demo_util.c for audio examples - if example in ['hfp_ag_demo','hfp_hf_demo', 'hsp_ag_demo', 'hsp_hf_demo']: + if example in ['hfp_ag_demo','hfp_hf_demo', 'hsp_ag_demo', 'hsp_hs_demo']: shutil.copy(examples_embedded + 'sco_demo_util.c', apps_folder + '/main/') shutil.copy(examples_embedded + 'sco_demo_util.h', apps_folder + '/main/')