Home
last modified time | relevance | path

Searched full:idf_tools (Results 1 – 25 of 25) sorted by relevance

/hal_espressif-2.7.6/tools/test_idf_tools/
Dtest_idf_tools.py40 # Need to do this before importing idf_tools.py
44 import idf_tools
47 import idf_tools
53 …old_tools_dir = os.environ.get('IDF_TOOLS_PATH') or os.path.expanduser(idf_tools.IDF_TOOLS_PATH_DE…
72 idf_tools.main(['list'])
85 idf_tools.main(['install'])
96 idf_tools.main(['check'])
104 idf_tools.main(['export'])
116 idf_tools.main(['validate'])
119 idf_tools.main(['rewrite'])
/hal_espressif-2.7.6/docs/en/api-guides/tools/
Didf-tools.rst29 This file is used by :idf_file:`tools/idf_tools.py` script when installing the tools or setting up …
57 ``idf_tools.py`` script
60 :idf_file:`tools/idf_tools.py` script bundled with ESP-IDF performs several functions:
92 eval $($IDF_PATH/tools/idf_tools.py export)
134 In addition to calling ``idf_tools.py``, these scripts list the directories which have been added t…
139 Depending on the environment, more user-friendly wrappers for ``idf_tools.py`` are provided:
141 …ols-installer>` can download and install the tools. Internally the installer uses ``idf_tools.py``.
142 …pse-setup>` includes a menu item to set up the tools. Internally the plugin calls ``idf_tools.py``.
143 …w helps setting up the tools. Although the extension does not rely on ``idf_tools.py``, the same i…
Didf-tools-notes.inc42 …, etc.). However, for convenience it is possible to install CMake using idf_tools.py along with th…
48 …, etc.). However, for convenience it is possible to install ninja using idf_tools.py along with th…
/hal_espressif-2.7.6/
Dexport.bat12 set IDF_TOOLS_PY_PATH=%IDF_PATH%\tools\idf_tools.py
22 :: It is possible to do this without a temporary file (running idf_tools.py from for /r command),
23 :: but that way it is impossible to get the exit code of idf_tools.py.
25 python.exe %IDF_PATH%\tools\idf_tools.py export --format key-value >"%IDF_TOOLS_EXPORTS_FILE%"
Dexport.fish15 # Call idf_tools.py to export tool paths
18 set idf_exports ("$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py export) || return 1
25 # "$IDF_PATH"/tools is already added by 'idf_tools.py export'
Dinstall.fish11 "$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install
14 "$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
D.gitlab-ci.yml73 …tools/idf_tools.py --non-interactive install && eval "$(tools/idf_tools.py --non-interactive expor…
111 - $IDF_PATH/tools/idf_tools.py install-python-env
113 - $IDF_PATH/tools/idf_tools.py --non-interactive install cmake ninja
Dinstall.ps16 Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install"
10 Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-py…
Dinstall.sh12 ${ESP_PYTHON} ${IDF_PATH}/tools/idf_tools.py install
15 ${ESP_PYTHON} ${IDF_PATH}/tools/idf_tools.py install-python-env
Dinstall.bat12 python.exe %IDF_PATH%\tools\idf_tools.py install
16 python.exe %IDF_PATH%\tools\idf_tools.py install-python-env
Dexport.sh69 if [ ! -f "${IDF_PATH}/tools/idf.py" ] || [ ! -f "${IDF_PATH}/tools/idf_tools.py" ]
86 # Call idf_tools.py to export tool paths
89 idf_exports=$("$ESP_PYTHON" "${IDF_PATH}/tools/idf_tools.py" export) || return 1
98 # ${IDF_PATH}/tools is already added by 'idf_tools.py export'
Dexport.ps111 # using idf_tools.py to get $envars_array to set
12 $envars_raw = python $IDF_PATH/tools/idf_tools.py export --format key-value
45 # ${IDF_PATH}/tools is already added by 'idf_tools.py export'
/hal_espressif-2.7.6/tools/windows/tool_setup/
Didf_cmd_init.bat55 if exist "%IDF_PATH%\tools\idf_tools.py" (
56 set "IDF_TOOLS_PY_PATH=%IDF_PATH%\tools\idf_tools.py"
58 echo IDF version does not include tools\idf_tools.py. Using the fallback version.
69 :: It is possible to do this without a temporary file (running idf_tools.py from for /r command),
70 :: but that way it is impossible to get the exit code of idf_tools.py.
Didf_cmd_init.ps148 if ((Test-Path "$IDF_PATH/tools/idf_tools.py")){
49 $IDF_TOOLS_PY_PATH = "$IDF_PATH/tools/idf_tools.py"
52 Write-Output "IDF version does not include tools/idf_tools.py. Using the fallback version."
61 # using idf_tools.py to get $envars_array to set
Didf_setup.iss.inc230 …{ Use bundled copy of idf_tools.py, as the copy shipped with these IDF versions can not work due to
235 Log('UseBundledIDFToolsPy: version=' + Version + ', using bundled idf_tools.py');
333 IDFToolsPyPath := IDFPath + '\tools\idf_tools.py';
339 Log('idf_tools.py exists in IDF directory');
342 Log('Using the bundled idf_tools.py copy');
348 Log('idf_tools.py does not exist in IDF directory, using a fallback version');
368 Log('idf_tools.py command: ' + IDFToolsPyCmd);
Dbuild_installer.sh37 $IDF_PATH/tools/idf_tools.py --non-interactive download --platform Windows-x86_64 $PACKAGES
38 $IDF_PATH/tools/idf_tools.py --tools-json tools_fallback.json --non-interactive download --platform…
Didf_tool_setup.iss66 Source: "..\..\idf_tools.py"; DestDir: "{app}"; DestName: "idf_tools_fallback.py"
/hal_espressif-2.7.6/tools/docker/
DDockerfile58 RUN $IDF_PATH/tools/idf_tools.py --non-interactive install required \
59 && $IDF_PATH/tools/idf_tools.py --non-interactive install cmake \
60 && $IDF_PATH/tools/idf_tools.py --non-interactive install-python-env \
/hal_espressif-2.7.6/docs/zh_CN/api-guides/tools/
Didf-tools-notes.inc44 …manager. However, for convenience it is possible to install CMake using idf_tools.py along with th…
50 …manager. However, for convenience it is possible to install ninja using idf_tools.py along with th…
/hal_espressif-2.7.6/west/
Dupdate.py99 … cmd_exec(("python.exe", "tools/idf_tools.py", "--tools-json=tools/zephyr_tools.json", "install"),
102 cmd_exec(("./tools/idf_tools.py", "--tools-json=tools/zephyr_tools.json", "install"),
/hal_espressif-2.7.6/docs/idf_extensions/
Dgen_idf_tools_links.py21 …call_with_python('{}/tools/idf_tools.py gen-doc --output {}'.format(app.config.idf_path, tools_rst…
/hal_espressif-2.7.6/tools/
Ddetect_python.sh4 # which Python should be used with idf_tools.py for installing tools and exporting environment vari…
Didf_tools.py19 # * To install the tools, run `idf_tools.py install`.
21 # * To install the Python environment, run `idf_tools.py install-python-env`.
23 # * To start using the tools, run `eval "$(idf_tools.py export)"` — this will update
/hal_espressif-2.7.6/tools/windows/idf_exe/
DREADME.md20 For compatibility with `idf_tools.py`, a flag to obtain the version of `idf.py.exe` is provided: `i…
/hal_espressif-2.7.6/tools/ci/
Dexecutable-list.txt79 tools/idf_tools.py