Searched full:idf_tools (Results 1 – 25 of 25) sorted by relevance
/hal_espressif-2.7.6/tools/test_idf_tools/ |
D | test_idf_tools.py | 40 # 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/ |
D | idf-tools.rst | 29 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…
|
D | idf-tools-notes.inc | 42 …, 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/ |
D | export.bat | 12 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%"
|
D | export.fish | 15 # 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'
|
D | install.fish | 11 "$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install 14 "$ESP_PYTHON" "$IDF_PATH"/tools/idf_tools.py install-python-env
|
D | .gitlab-ci.yml | 73 …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
|
D | install.ps1 | 6 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…
|
D | install.sh | 12 ${ESP_PYTHON} ${IDF_PATH}/tools/idf_tools.py install 15 ${ESP_PYTHON} ${IDF_PATH}/tools/idf_tools.py install-python-env
|
D | install.bat | 12 python.exe %IDF_PATH%\tools\idf_tools.py install 16 python.exe %IDF_PATH%\tools\idf_tools.py install-python-env
|
D | export.sh | 69 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'
|
D | export.ps1 | 11 # 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/ |
D | idf_cmd_init.bat | 55 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.
|
D | idf_cmd_init.ps1 | 48 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
|
D | idf_setup.iss.inc | 230 …{ 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);
|
D | build_installer.sh | 37 $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…
|
D | idf_tool_setup.iss | 66 Source: "..\..\idf_tools.py"; DestDir: "{app}"; DestName: "idf_tools_fallback.py"
|
/hal_espressif-2.7.6/tools/docker/ |
D | Dockerfile | 58 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/ |
D | idf-tools-notes.inc | 44 …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/ |
D | update.py | 99 … 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/ |
D | gen_idf_tools_links.py | 21 …call_with_python('{}/tools/idf_tools.py gen-doc --output {}'.format(app.config.idf_path, tools_rst…
|
/hal_espressif-2.7.6/tools/ |
D | detect_python.sh | 4 # which Python should be used with idf_tools.py for installing tools and exporting environment vari…
|
D | idf_tools.py | 19 # * 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/ |
D | README.md | 20 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/ |
D | executable-list.txt | 79 tools/idf_tools.py
|