Home
last modified time | relevance | path

Searched refs:idf_path (Results 1 – 25 of 57) sorted by relevance

123

/hal_espressif-3.4.0/tools/cmake/
Didf.cmake8 set(idf_path $ENV{IDF_PATH}) variable
13 if(idf_path)
14 get_filename_component(idf_path "${idf_path}" REALPATH)
15 file(TO_CMAKE_PATH "${idf_path}" idf_path)
17 if(NOT idf_path STREQUAL _idf_path)
21 ${idf_path}")
26 set(idf_path ${_idf_path}) variable
32 "${idf_path}/tools/cmake"
33 "${idf_path}/tools/cmake/third_party"
37 set(IDF_PATH ${idf_path})
[all …]
Ddfu.cmake23 idf_build_get_property(idf_path IDF_PATH)
26 COMMAND ${python} ${idf_path}/tools/mkdfu.py write
37 -P ${idf_path}/tools/cmake/run_dfu_util.cmake
44 -P ${idf_path}/tools/cmake/run_dfu_util.cmake
Dkconfig.cmake10 idf_build_get_property(idf_path IDF_PATH)
37 set(src_path ${idf_path}/tools/kconfig)
91 idf_build_get_property(idf_path IDF_PATH)
92 idf_build_set_property(__ROOT_KCONFIG ${idf_path}/Kconfig)
93 idf_build_set_property(__ROOT_SDKCONFIG_RENAME ${idf_path}/sdkconfig.rename)
180 idf_build_get_property(idf_path IDF_PATH)
196 configure_file("${idf_path}/tools/kconfig_new/config.env.in" ${config_env_path})
218 ${python} ${idf_path}/tools/kconfig_new/prepare_kconfig_files.py
222 ${python} ${idf_path}/tools/kconfig_new/confgen.py
281 …set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${idf_path}/tools/kconfig_new/conf…
[all …]
Duf2.cmake23 idf_build_get_property(idf_path IDF_PATH)
26 COMMAND ${python} ${idf_path}/tools/mkuf2.py write
36 COMMAND ${python} ${idf_path}/tools/mkuf2.py write
Dbuild.cmake66 idf_build_get_property(idf_path IDF_PATH)
67 git_describe(idf_ver_git "${idf_path}" "--match=v*.*")
68 if(EXISTS "${idf_path}/version.txt")
69 file(STRINGS "${idf_path}/version.txt" idf_ver_t)
70 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${idf_path}/version.txt")
77 git_submodule_check("${idf_path}")
127 function(__build_init idf_path)
140 idf_build_set_property(IDF_PATH ${idf_path})
148 idf_build_get_property(idf_path IDF_PATH)
150 file(GLOB component_dirs ${idf_path}/components/*)
[all …]
Dldgen.cmake32 idf_build_get_property(idf_path IDF_PATH)
61 "--check-mapping-exceptions=${idf_path}/tools/ci/check_ldgen_mapping_exceptions.txt")
67 COMMAND ${python} ${idf_path}/tools/ldgen/ldgen.py
/hal_espressif-3.4.0/tools/esp_prov/proto/
D__init__.py32 idf_path = os.environ['IDF_PATH'] variable
35 constants_pb2 = _load_source('constants_pb2', idf_path + '/components/protocomm/python/constants_pb…
36 sec0_pb2 = _load_source('sec0_pb2', idf_path + '/components/protocomm/python/sec0_pb2.py')
37 sec1_pb2 = _load_source('sec1_pb2', idf_path + '/components/protocomm/python/sec1_pb2.py')
38 session_pb2 = _load_source('session_pb2', idf_path + '/components/protocomm/python/session_pb2.…
41 wifi_constants_pb2 = _load_source('wifi_constants_pb2', idf_path + '/components/wifi_provisioning/p…
42 wifi_config_pb2 = _load_source('wifi_config_pb2', idf_path + '/components/wifi_provisioning/p…
43 wifi_scan_pb2 = _load_source('wifi_scan_pb2', idf_path + '/components/wifi_provisioning/p…
46 custom_config_pb2 = _load_source('custom_config_pb2', idf_path +
/hal_espressif-3.4.0/tools/test_apps/system/no_embedded_paths/
Dcheck_for_file_paths.py51 idf_path = sys.argv[1]
54 assert os.path.exists(idf_path)
57 print('Checking object files in {} for mentions of {}...'.format(build_dir, idf_path))
66 …idf_path_binary = idf_path.encode() # we're going to be checking binary streams (note: probably n…
77 def check_file(obj_file, idf_path): # type: (str, bytes) -> int argument
86 if idf_path in contents:
DCMakeLists.txt8 idf_build_get_property(idf_path IDF_PATH)
20 …COMMAND ${python} "${CMAKE_CURRENT_LIST_DIR}/check_for_file_paths.py" "${idf_path}" "${CMAKE_BINAR…
/hal_espressif-3.4.0/tools/
Dgen_esp_err_to_name.py122 def process(line, idf_path, include_as): argument
127 if idf_path.endswith('.c'):
129 raise InputError(idf_path, 'This line should be in a header file: %s' % line)
135 raise InputError(idf_path, 'Error at line %s' % line)
172 raise InputError(idf_path, 'Cannot parse line %s' % line)
178 err_dict[num].append(ErrItem(words[1], idf_path, include_as, comment))
182 unproc_list.append(ErrItem(words[1], idf_path, include_as, comment, related, num))
326 idf_path = os.environ['IDF_PATH']
328 idf_path = os.path.realpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
332 default=idf_path + '/components/esp_common/src/esp_err_to_name.c.in')
[all …]
Dcheck_python_dependencies.py29 idf_path = os.getenv('IDF_PATH') variable
31 default_requirements_path = os.path.join(idf_path, 'requirements.txt') # type: ignore
70 …print('To install the missing packages, please run "%s"' % os.path.join(idf_path, install_script))…
/hal_espressif-3.4.0/tools/unit-test-app/tools/
DUnitTestParser.py61 idf_path = os.getenv('IDF_PATH')
66 self.idf_path = idf_path
71 … self.tag_def = yaml.load(open(os.path.join(idf_path, self.TAG_DEF_FILE), 'r'), Loader=Loader)
72 …self.module_map = yaml.load(open(os.path.join(idf_path, self.MODULE_DEF_FILE), 'r'), Loader=Loader)
73 …self.config_dependencies = yaml.load(open(os.path.join(idf_path, self.CONFIG_DEPENDENCY_FILE), 'r'…
291 filename = os.path.join(self.idf_path, self.TEST_CASE_FILE_DIR,
302 src = os.path.join(self.idf_path, self.MODULE_DEF_FILE)
303 dst = os.path.join(self.idf_path, self.MODULE_ARTIFACT_FILE)
310 output_folder = os.path.join(self.idf_path, self.ut_bin_folder, self.idf_target)
311 configs_folder = os.path.join(self.idf_path, self.UT_CONFIG_FOLDER)
/hal_espressif-3.4.0/components/ulp/
Dproject_include.cmake33 idf_build_get_property(idf_path IDF_PATH)
38 set(TOOLCHAIN_FLAG ${idf_path}/components/ulp/cmake/toolchain-esp32-ulp.cmake)
44 … set(TOOLCHAIN_FLAG ${idf_path}/components/ulp/cmake/toolchain-esp32s2-ulp-riscv.cmake)
47 set(TOOLCHAIN_FLAG ${idf_path}/components/ulp/cmake/toolchain-esp32s2-ulp.cmake)
53 SOURCE_DIR ${idf_path}/components/ulp/cmake
62 -DIDF_PATH=${idf_path}
/hal_espressif-3.4.0/tools/ci/python_packages/ttfw_idf/
DIDFApp.py234 self.idf_path = self.get_sdk_path() # type: (str)
266 idf_path = os.getenv('IDF_PATH')
267 assert idf_path
268 assert os.path.exists(idf_path)
269 return idf_path
315 artifacts = self.artifact_cls(self.idf_path,
325 return os.path.join(self.idf_path, path)
383 partition_tool = os.path.join(self.idf_path,
470 path = os.path.join(self.idf_path, self.app_path, 'build')
479 example_path = os.path.join(self.idf_path, self.case_group.LOCAL_BUILD_DIR)
[all …]
/hal_espressif-3.4.0/examples/security/flash_encryption/
Dexample_test.py14 idf_path = os.getenv('IDF_PATH') variable
15 if not idf_path or not os.path.exists(idf_path):
17 sys.path.insert(0, os.path.join(idf_path, 'components', 'esptool_py', 'esptool'))
/hal_espressif-3.4.0/components/espcoredump/test/
Dtest_espcoredump.py25 idf_path = os.getenv('IDF_PATH') variable
26 if idf_path:
27 sys.path.insert(0, os.path.join(idf_path, 'components', 'espcoredump'))
/hal_espressif-3.4.0/examples/system/app_trace_to_host/
Dexample_test.py13 idf_path = dut.app.get_sdk_path()
14 proj_path = os.path.join(idf_path, rel_project_path)
40 …with ttfw_idf.CustomProcess(' '.join([os.path.join(idf_path, 'tools/esp_app_trace/logtrace_proc.py…
/hal_espressif-3.4.0/components/mbedtls/esp_crt_bundle/test_gen_crt_bundle/
Dtest_gen_crt_bundle.py14 idf_path = os.environ['IDF_PATH'] variable
15 ca_crts_path = idf_path + '/components/mbedtls/esp_crt_bundle/'
16 test_crts_path = idf_path + '/components/mbedtls/esp_crt_bundle/test_gen_crt_bundle/'
/hal_espressif-3.4.0/examples/protocols/esp_local_ctrl/scripts/
Dproto_lc.py34 idf_path = os.environ['IDF_PATH'] variable
35 constants_pb2 = _load_source('constants_pb2', idf_path + '/components/protocomm/python/constants_pb…
36 local_ctrl_pb2 = _load_source('esp_local_ctrl_pb2', idf_path + '/components/esp_local_ctrl/python/e…
/hal_espressif-3.4.0/examples/protocols/esp_local_ctrl/
Dexample_test.py15 idf_path = dut.app.get_sdk_path()
31 …cmd = ' '.join([sys.executable, os.path.join(idf_path, rel_project_path, 'scripts/esp_local_ctrl.p…
35 esp_local_ctrl_log = os.path.join(idf_path, rel_project_path, 'esp_local_ctrl.log')
/hal_espressif-3.4.0/tools/ci/
Dcheck_readme_links.py104 idf_path = Path(os.getenv('IDF_PATH'))
107 for path in (idf_path / folder).rglob('*.md'):
108 … if any([path.relative_to(idf_path).match(exclude_doc) for exclude_doc in EXCLUDE_DOCS_LIST]):
Dcheck_public_headers.py245 idf_path = os.getenv('IDF_PATH')
246 project_dir = os.path.join(idf_path, 'examples', 'get-started', 'blink')
276 if only_dir is not None and not os.path.relpath(d, idf_path).startswith(only_dir):
279 if os.path.relpath(d, idf_path).startswith(tuple(ignore_dirs)):
290 rel_path_file = os.path.relpath(f, idf_path)
/hal_espressif-3.4.0/components/app_update/
DCMakeLists.txt38 idf_build_get_property(idf_path IDF_PATH)
60 -D IDF_PATH="${idf_path}"
72 -D IDF_PATH="${idf_path}"
/hal_espressif-3.4.0/examples/system/gcov/
Dexample_test.py15 idf_path = dut.app.get_sdk_path()
16 proj_path = os.path.join(idf_path, rel_project_path)
/hal_espressif-3.4.0/examples/storage/semihost_vfs/
Dsemihost_vfs_example_test.py20 idf_path = dut.app.get_sdk_path()
21 proj_path = os.path.join(idf_path, rel_project_path)

123