Search found 257 matches

by ESP_Roland
Wed Jan 03, 2024 12:51 pm
Forum: General Discussion
Topic: [esp32c3] Issues with Flash Memory on esp32c3 Modules (ESPTOOL-789)
Replies: 8
Views: 9610

Re: [esp32c3] Issues with Flash Memory on esp32c3 Modules (ESPTOOL-789)

Update: I've achieved the same result with a v1.0 and a v1.1. I've tried v4.7.dev1, v4.7 and v4.8.dev1 esptool versions. All the same results, i.e. flasher stub works. In my experiments I've used Espressif boards all through UART.

We will investigate the issue with --no-stub and USB.
by ESP_Roland
Tue Jan 02, 2024 10:22 am
Forum: ESP-IDF
Topic: No pyvenv.cfg file
Replies: 4
Views: 4737

Re: No pyvenv.cfg file

Please try to clean up your system and remove everything ESP-IDF-related (including all environment variables you've set).
Run the installer again and select the option of installing the built-in Python 3.11. Save the installation log and share it if you still encounter the issue.
by ESP_Roland
Thu Dec 28, 2023 10:36 am
Forum: General Discussion
Topic: [esp32c3] Issues with Flash Memory on esp32c3 Modules (ESPTOOL-789)
Replies: 8
Views: 9610

Re: [esp32c3] Issues with Flash Memory on esp32c3 Modules (ESPTOOL-789)

I will try to find a v0.4 revision chip and check the issue there.
by ESP_Roland
Wed Dec 27, 2023 1:20 pm
Forum: General Discussion
Topic: [esp32c3] Issues with Flash Memory on esp32c3 Modules (ESPTOOL-789)
Replies: 8
Views: 9610

Re: [esp32c3] Issues with Flash Memory on esp32c3 Modules

I've tried this with an older revision of the chip and it can read the whole flash: `--> esptool.py --chip esp32c3 read_flash 0 ALL /tmp/file.bin esptool.py v4.7.0 Found 2 serial ports Serial port /dev/ttyUSB0 Connecting.... Chip is ESP32-C3 (QFN32) (revision v0.3) Features: WiFi, BLE Crystal is 40M...
by ESP_Roland
Fri Dec 22, 2023 7:17 am
Forum: ESP-IDF
Topic: PermissionError when solving dependencies on Arch Linux
Replies: 2
Views: 1860

Re: PermissionError when solving dependencies on Arch Linux

Perhaps you've run the build with root access before? It might help to try to remove those particular files it cannot access with "sudo rm".
by ESP_Roland
Thu Dec 21, 2023 2:05 pm
Forum: ESP-IDF
Topic: idf.py monitor cannot find xtensa-esp32s3-elf-addr2line
Replies: 1
Views: 1448

Re: idf.py monitor cannot find xtensa-esp32s3-elf-addr2line

If you are in an ESP-IDF environment then it should be available (in terminal where you sourced export.sh). Please run IDF Monitor from the same environment you are building your projects. You can test this and should be able to run "xtensa-esp32s3-elf-addr2line --version" there.
by ESP_Roland
Mon Nov 06, 2023 5:48 am
Forum: ESP-IDF
Topic: export.sh - tools not found on alpine
Replies: 1
Views: 1064

Re: export.sh - tools not found on alpine

If the installed directories are not empty then please try to run any of those executables manually with the "--version" argument. The output probably will reveal some error message.
by ESP_Roland
Fri Oct 20, 2023 10:12 am
Forum: ESP-IDF
Topic: Error while using espefuse.py
Replies: 3
Views: 4923

Re: Error while using espefuse.py

In ESP-IDF v5.1.1 "espefuse.py" is aliased to run

Code: Select all

python.exe "%IDF_PATH%\components\esptool_py\esptool\espefuse.py"
Are you able to run that instead?

Or the following?

Code: Select all

python -m espefuse
by ESP_Roland
Thu Oct 19, 2023 2:10 pm
Forum: ESP-IDF
Topic: Error while using espefuse.py
Replies: 3
Views: 4923

Re: Error while using espefuse.py

How do you try to run it? Are you in an ESP-IDF terminal environment? What is the working directory and the full command you are running?

"espefuse.pyc" - The pyc part doesn't seem right.
by ESP_Roland
Mon Oct 16, 2023 7:15 am
Forum: ESP-IDF
Topic: ESP-IDF Installation problem while creating Python virtual env
Replies: 4
Views: 2195

Re: ESP-IDF Installation problem while creating Python virtual env

It looks like one of the antivirus programs are blocking the installation. I don't know which one because you seem to have three different ones in addition to Windows defender. You can try to disable them one-by-one to see if that helps. After you've identified the one which is blocking then you can...