Search found 265 matches
- 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
- 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...
- 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?
Or your "python --version" is of 3.8?
- 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 --...
- 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...
- Tue Oct 29, 2024 10:48 am
- Forum: ESP-IDF
- Topic: esptool.py fails with error UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf0 (micropython build)
- Replies: 2
- Views: 534
Re: esptool.py fails with error UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf0 (micropython build)
Duplicate report here: https://github.com/espressif/esptool/issues/1028. It will be handled there.
- Thu Oct 24, 2024 5:05 am
- Forum: ESP-IDF
- Topic: esptool via python code - "Failed to enter Flash download mode. Only got 2 byte status response."
- Replies: 2
- Views: 551
- Mon Oct 21, 2024 7:04 am
- Forum: ESP-IDF
- Topic: hidden menu item of idf.py menuconfig
- Replies: 10
- Views: 3556
Re: hidden menu item of idf.py menuconfig
Duplicate question here: https://github.com/espressif/esp-idf/issues/14758
- 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...
- 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...