Search found 21 matches

by ESP_georgik
Fri Oct 07, 2022 12:17 pm
Forum: ESP-IDF
Topic: idf.py gdb fails
Replies: 1
Views: 1747

Re: idf.py gdb fails

The problem is caused by missing Python 2 in OpenSUSE Thumbleweed. There is no Python 2 package for the distribution anymore. The issue was fixed in ESP-IDF master branch, but was not backported yet to 4.x: https://github.com/espressif/esp-idf/issues/6334#issuecomment-1261435018 The new solution is ...
by ESP_georgik
Mon May 09, 2022 7:08 am
Forum: IDEs for ESP-IDF
Topic: ninja: build stopped: subcommand failed.
Replies: 2
Views: 3662

Re: ninja: build stopped: subcommand failed.

Please, try to set environment variable TMP to path without spaces. The directory should exist.

Powershell:

Code: Select all

$env:TMP="C:\mytmp"
CMD:

Code: Select all

SET TMP=C:\mytmp
Then run the build again.
by ESP_georgik
Fri Feb 18, 2022 6:34 am
Forum: ESP-IDF
Topic: Windows driver install fails with exit code -2
Replies: 4
Views: 3301

Re: Windows driver install fails with exit code -2

Thank you for notification about the scenario. We will double-check this setup.
by ESP_georgik
Wed Feb 16, 2022 7:29 am
Forum: ESP-IDF
Topic: Windows driver install fails with exit code -2
Replies: 4
Views: 3301

Re: Windows driver install fails with exit code -2

Thank you for reporting the problem. This is definitely bug. I've created an issue to resolve it: https://github.com/espressif/idf-installer/issues/113 The installer does not support just an installation of a single driver without ESP-IDF. There are following workarounds: Workaround 1: run command i...
by ESP_georgik
Mon Feb 07, 2022 9:28 am
Forum: ESP-IDF
Topic: idf installation - Installation has failed with exit code 1
Replies: 2
Views: 4515

Re: idf installation - Installation has failed with exit code 1

The problem is caused by the antivirus blocking rename operation of the directory with cmake after extraction from ZIP archive. Options: - disable antivirus scanning for the time-being - use one of Offline installers which extracts CMake directly to desired location - https://github.com/espressif/id...
by ESP_georgik
Thu Jan 06, 2022 11:47 am
Forum: ESP-IDF
Topic: Error to install esp-idf
Replies: 10
Views: 37759

Re: Error to install esp-idf

Problem described above seems like TLS issue. dl.espressif.com is hosted with enabled TLSv1.2 so it should work also on OSes like Windows 8 which does not have support for TLSv1.3. Try following steps to mitigate the problem: Option #1: - open https://dl.espressif.com/pypi in Internet Explorer or Ed...
by ESP_georgik
Thu Nov 25, 2021 6:36 pm
Forum: Rust
Topic: Rust language for ESP32 - Welcome to the forum
Replies: 1
Views: 42537

Rust language for ESP32 - Welcome to the forum

Welcome to the forum dedicated to Rust language support for ESP32. Links: - The Rust on ESP Book - https://esp-rs.github.io/book/ - Installation scripts - https://github.com/esp-rs/rust-build/ - Windows Installer - https://github.com/espressif/idf-installer/releases Examples - Cargo-first example wi...
by ESP_georgik
Wed Sep 01, 2021 1:26 pm
Forum: ESP-IDF 中文讨论版
Topic: windows下idf-tools安装进行到 “Switching branch”时失败
Replies: 5
Views: 4770

Re: windows下idf-tools安装进行到 “Switching branch”时失败

We updated Offline installer, please test the following version:
https://github.com/espressif/idf-instal ... 11-beta-02

The installation of 4.2.2 should pass without problem.
by ESP_georgik
Wed Sep 01, 2021 12:17 pm
Forum: ESP-IDF 中文讨论版
Topic: windows下idf-tools安装进行到 “Switching branch”时失败
Replies: 5
Views: 4770

Re: windows下idf-tools安装进行到 “Switching branch”时失败

Meanwhile we identified the problem. If the git does not have autocrlf set to true in global config the installation fails. To workaround the problem it's possible to enter command: git config --global core.autocrlf true After this correction the installation works without problem. The new issue for...
by ESP_georgik
Wed Sep 01, 2021 10:48 am
Forum: ESP-IDF 中文讨论版
Topic: windows下idf-tools安装进行到 “Switching branch”时失败
Replies: 5
Views: 4770

Re: windows下idf-tools安装进行到 “Switching branch”时失败

Unfortunately we were not able to simulate the error.

Please, provide output of command:

Code: Select all

git config --list --show-origin
The output could help us with diagnostics of the problem.