Search found 265 matches

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: 769

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: 769

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: 769

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: 769

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: 1033

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: 726

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...
by ESP_Roland
Wed Jul 31, 2024 10:49 am
Forum: ESP-IDF
Topic: Can't flash my ESP32 - Not beginner
Replies: 5
Views: 2421

Re: Can't flash my ESP32 - Not beginner

The trace option can only be used when esptool is invoked directly. The command with all the necessary arguments can be copied from the error message, the part starting with "The terminal process ...", and the "--trace" option added after "esptool.py". But at this point I don't think it would reveal...