Search found 266 matches

by ESP_Roland
Mon Feb 03, 2025 8:27 am
Forum: General Discussion
Topic: strange git error in Ninha/Cmake build in ESP-32 Vscode project
Replies: 4
Views: 1839

Re: strange git error in Ninha/Cmake build in ESP-32 Vscode project

The error is coming from the build system which tries to detect the ESP-IDF version. If the git command is not found then it will fall back to alternative solutions, ie. version detection from files. I remember that Vscode didn't like the "fatal" or "error" words in the output but this has been reso...
by ESP_Roland
Wed Nov 13, 2024 8:17 am
Forum: ESP-IDF
Topic: Upgrading ESP-IDF from v4.4.7 to v5.0
Replies: 6
Views: 1632

Re: Upgrading ESP-IDF from v4.4.7 to v5.0

Do you know that Espressif provides docker images with ESP-IDF (https://hub.docker.com/r/espressif/idf/tags)? Here are the sources for v5.2: https://github.com/espressif/esp-idf/bl ... Dockerfile
by ESP_Roland
Wed Nov 13, 2024 8:14 am
Forum: ESP-IDF
Topic: Upgrading ESP-IDF from v4.4.7 to v5.0
Replies: 6
Views: 1632

Re: Upgrading ESP-IDF from v4.4.7 to v5.0

Virtualenv installed by pip is not used. The Venv is an internal module of Python. For some reason Debian/Ubuntu and derivate operating systems divide them up and the Venv module is placed in the packages ending with "-venv". So if your python3.8 is missing venv then I don't think you can fix it. Ce...
by ESP_Roland
Mon Nov 11, 2024 3:26 pm
Forum: ESP-IDF
Topic: Upgrading ESP-IDF from v4.4.7 to v5.0
Replies: 6
Views: 1632

Re: Upgrading ESP-IDF from v4.4.7 to v5.0

Ok, I see. Python 3.10 would be better but I don't understand why it is not picked up. python3 is tested before python3.8.

Or your "python --version" is of 3.8?
by ESP_Roland
Mon Nov 11, 2024 1:23 pm
Forum: ESP-IDF
Topic: Upgrading ESP-IDF from v4.4.7 to v5.0
Replies: 6
Views: 1632

Re: Upgrading ESP-IDF from v4.4.7 to v5.0

Have you run the suggested "apt install python3.8-venv" command? python3-venv is an alias of python3.10-venv in your system (https://packages.ubuntu.com/jammy/python3-venv). And based on your logs, our installer picked up 3.8 instead. Maybe you made 3.8 the default one? See the output of "python3 --...
by ESP_Roland
Thu Nov 07, 2024 5:28 am
Forum: General Discussion
Topic: Error when flashing
Replies: 3
Views: 2121

Re: Error when flashing

Mostly those things work for you which don't require much time. The error indicates that the board has disappeared during flashing (e.g. the power supply is not stable) or there is some other issue with the USB. This looks to me a design issue with your board. See https://www.espressif.com/en/contac...
by ESP_Roland
Mon Sep 09, 2024 6:37 am
Forum: ESP-IDF
Topic: Store menuconfing
Replies: 1
Views: 1060

Re: Store menuconfing

There should be an "sdkconfig" file in your project's directory after running menuconfig. When you move your project then you need to move it as well with the project. More information about this topic: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/kconfig.html and also i...