Search found 12 matches

by ESP_pdragun
Wed May 15, 2024 7:55 am
Forum: General Discussion
Topic: esp-coredump.py of binary file
Replies: 4
Views: 1063

Re: esp-coredump.py of binary file

There are a couple of reasons why you may see that message: 1. Ensure that after you added esp-gdb into the path you restarted the command line (PowerShell) so the changes will get applied 2. Ensure that you have the correct toolchain architecture based on the chip you are using. You either need RIS...
by ESP_pdragun
Tue May 14, 2024 7:37 am
Forum: General Discussion
Topic: esp-coredump.py of binary file
Replies: 4
Views: 1063

Re: esp-coredump.py of binary file

Hello, if you are trying to use just a coredump I would suggest following this installation guide: https://github.com/espressif/esp-coredump?tab=readme-ov-file#installation There is also an option for standalone installation without ESP-IDF if you don't need it for anything else. You are seeing the ...
by ESP_pdragun
Tue Feb 06, 2024 8:11 am
Forum: General Discussion
Topic: Coredump-info keeps asking for port when trying to decode text file
Replies: 1
Views: 643

Re: Coredump-info keeps asking for port when trying to decode text file

Hi, I am sorry for the inconvenience, this is a known issue that has been already resolved and should be part of the next bugfix for v5.1. You can try using the release/v5.1 branch of ESP-IDF to get the fix. Alternatively, you can use a workaround by adding a port argument like this: idf.py --port C...
by ESP_pdragun
Mon Dec 04, 2023 1:40 pm
Forum: General Discussion
Topic: IOError on deep sleep with idf monitor
Replies: 3
Views: 3987

Re: IOError on deep sleep with idf monitor

Hi, the fix was released and should be now available in esp-idf-monitor 1.3.4. You can install it easily by running the install script (./install.sh) for ESP-IDF.
by ESP_pdragun
Wed Nov 29, 2023 9:48 am
Forum: General Discussion
Topic: IOError on deep sleep with idf monitor
Replies: 3
Views: 3987

Re: IOError on deep sleep with idf monitor

I am sorry for the issues. I was able to reproduce the same problem. We will fix it ASAP and I will let you know once the fix is available.

A possible workaround is to install older version of esp-idf-monitor, to install it you can run `pip install esp-idf-monitor==1.1.2` in ESP-IDF environment.
by ESP_pdragun
Tue Nov 14, 2023 9:59 am
Forum: ESP-IDF
Topic: Monitor hangs decoding core dump
Replies: 7
Views: 2567

Re: Monitor hangs decoding core dump

Hi Felix,

I am happy to inform you that the fix for the non-default partition table offset was backported to 4.4 in commit `4ef81211` and should be available in the next bugfix release - 4.4.7 and also soon in 5.1.
by ESP_pdragun
Fri Nov 03, 2023 9:29 am
Forum: ESP-IDF
Topic: Monitor hangs decoding core dump
Replies: 7
Views: 2567

Re: Monitor hangs decoding core dump

That sort of information, if not the fix, should be back ported to the 4.4 branch as that is what is shipped with ADF. Thanks for your suggestion, I will see what can be done regarding the backporting, but we will try to add some warning at least. I had moved the part table up. I shifted it back to...
by ESP_pdragun
Thu Nov 02, 2023 2:53 pm
Forum: ESP-IDF
Topic: Monitor hangs decoding core dump
Replies: 7
Views: 2567

Re: Monitor hangs decoding core dump

Hi, the error from `espcoredump.py` usually means that the coredump partition was not found. This can be caused by e.g. having the non-default offset of the partition table (!=0x8000) or by some misconfiguration of the partition table. The bug for non-default partition offset was fixed in the master...
by ESP_pdragun
Tue Aug 29, 2023 8:12 am
Forum: ESP-IDF
Topic: Build error: pkg_resource deprecated
Replies: 1
Views: 2231

Re: Build error: pkg_resource deprecated

Hi,
it is just a warning and it can be ignored.
We have already implemented a fix for it and it should be part of ESP-IDF v5.1.1.

The other solution how to remove the warning is to downgrade the setuptools to a version lower than 67.5.0 - in which pkg_resources was deprecated.
by ESP_pdragun
Tue Mar 07, 2023 4:19 pm
Forum: ESP-IDF
Topic: esptool.py stub not working on ESP32-C3 with GPIO9=1 if USB application is already in flash (ESPTOOL-595)
Replies: 11
Views: 7936

Re: esptool.py stub not working on ESP32-C3 with GPIO9=1 if USB application is already in flash (ESPTOOL-595)

Sorry. yes, you are right, those are not related. I got confused because it suddenly started working for me with the latest esptool and the only difference was this commit basically. During checking the diff I somehow replaced S3 with C3. The reason why it worked for me was that I started in bootloa...