Search found 240 matches

by ESP_Roland
Tue Apr 16, 2024 6:10 am
Forum: ESP-IDF
Topic: bogus sdkconfig changes
Replies: 4
Views: 272

Re: bogus sdkconfig changes

Here is one suggestion but I didn't get any response if it helped or not: https://github.com/espressif/esp-idf/is ... 2036568548
by ESP_Roland
Mon Apr 15, 2024 6:06 am
Forum: General Discussion
Topic: Running idf.py size-components while using idf_as_lib
Replies: 3
Views: 266

Re: Running idf.py size-components while using idf_as_lib

Perhaps this is what you are missing:

Code: Select all

        # Add this symbol as a hint for esp_idf_size to guess the target name
        target_link_options(${project_elf} PRIVATE "-Wl,--defsym=IDF_TARGET_${idf_target}=0")
by ESP_Roland
Thu Mar 21, 2024 8:23 am
Forum: ESP-IDF
Topic: How do I use espcoredump.py on binary coredump?
Replies: 9
Views: 737

Re: How do I use espcoredump.py on binary coredump?

Again, it looks that the file is not in ELF format. I'll ask my colleagues to take a look at this....
by ESP_Roland
Wed Mar 20, 2024 8:49 am
Forum: ESP-IDF
Topic: How do I use espcoredump.py on binary coredump?
Replies: 9
Views: 737

Re: How do I use espcoredump.py on binary coredump?

How did you obtain coredump.raw? From the the output I think it might not be in RAW format.
by ESP_Roland
Fri Mar 08, 2024 8:18 am
Forum: ESP-IDF
Topic: visual studio code and esp-idf problem, cannot compile using idf.py build and visual studio ESP-IDF extension
Replies: 2
Views: 366

Re: visual studio code and esp-idf problem, cannot compile using idf.py build and visual studio ESP-IDF extension

Could you please install a Python with Homebrew or Macports and use it during the installation process to set up the environment? The one you are using have trouble to detect your architecture. You can see in your logs that the following error is repeating. (mach-o file, but is an incompatible archi...
by ESP_Roland
Wed Feb 14, 2024 7:22 am
Forum: ESP-IDF
Topic: ESP-IDF Installation of Ubuntu 22.04LTS with VSCode repeatedly failing
Replies: 1
Views: 624

Re: ESP-IDF Installation of Ubuntu 22.04LTS with VSCode repeatedly failing

You can see in your logs that you are forcing it to use the system Python and you are installing things to this directory: /home/user/.espressif/python_env/idf5.1_py3.10_env And when you are sourcing the environment then it is looking for the following directory: /home/user/.espressif/python_env/idf...
by ESP_Roland
Mon Feb 05, 2024 7:06 am
Forum: General Discussion
Topic: Project path in idf.py
Replies: 1
Views: 303

Re: Project path in idf.py

_safe_relpath is used for printing the flashing command. This is not executed at all but is a convenience to the user for copy-pasting it. relpath generates a shorter relative path, e.g. build/hello_world.bin, instead of the full absolute path starting with the drive letter. However, as you can see,...