Search found 14 matches

by ESP_pdragun
Thu Jan 30, 2025 11:51 am
Forum: ESP-IDF
Topic: idf.py monitor not outputting logs correctly **SOLVED**
Replies: 4
Views: 1249

Re: idf.py monitor not outputting logs correctly

Hi, can you please provide some more details? Which platform are you using (in the case of Windows also if it is command line or Powershell)? What are the versions of ESP-IDF and esp-idf-monitor (should be at the start of the output) that you are using? It would be also nice to see the output from t...
by ESP_pdragun
Thu Dec 05, 2024 10:32 am
Forum: ESP-IDF
Topic: idf.py monitor cannot find xtensa-esp32s3-elf-addr2line
Replies: 6
Views: 3853

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

Hello, as Roland mentioned, please make sure that you have installed and exported the ESP-IDF environment correctly — run `./install.sh` and `. ./export.sh`; see https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html . *-addr2line tools should be available in your PATH, n...
by ESP_pdragun
Wed May 15, 2024 7:55 am
Forum: General Discussion
Topic: esp-coredump.py of binary file
Replies: 4
Views: 1513

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

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

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

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

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

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

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

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...