Search found 250 matches

by ESP_Roland
Thu Jun 27, 2024 9:58 am
Forum: ESP-IDF
Topic: Beginner trouble - Not able to build.
Replies: 2
Views: 120

Re: Beginner trouble - Not able to build.

You should be running "idf.py build" from the project's directory "hello_world" instead of the "main" subdirectory.
by ESP_Roland
Tue Jun 11, 2024 10:11 am
Forum: ESP-IDF
Topic: Can't compile projects for esp32c6 target
Replies: 5
Views: 595

Re: Can't compile projects for esp32c6 target

I don't see you being use any external components. However, in your Kconfig.projbuild you have several "default" and "range" statements applying to certain IDF_TARGETs. You have these for those chips which are working for you. But you don't have them for ESP32-C6. If you have an integer-based Kconfi...
by ESP_Roland
Mon Jun 10, 2024 6:49 am
Forum: ESP-IDF
Topic: Can't compile projects for esp32c6 target
Replies: 5
Views: 595

Re: Can't compile projects for esp32c6 target

Hi Ildar Belkin, we are sorry for this issue. The error message is not clear and provide not enough information to pinpoint the issue. We already track this problem and will address it soon. In the meantime, we can try to find the root cause manually. Is this some project publicly available we can t...
by ESP_Roland
Mon May 27, 2024 12:38 pm
Forum: ESP-IDF
Topic: idf.py not found
Replies: 5
Views: 765

Re: idf.py not found

Do you use pure Vscode without https://github.com/espressif/vscode-esp-idf-extension? This extension is built for convenience to achieve what you try to do yourself, and much more. See the features and setup guides in the linked page.
by ESP_Roland
Tue May 21, 2024 10:33 am
Forum: ESP-IDF
Topic: compile of app fails with FileNotFoundError: [Errno 2] No such file or directory: 'git' (IDF-10003)
Replies: 3
Views: 659

Re: compile of app fails with FileNotFoundError: [Errno 2] No such file or directory: 'git' (IDF-10003)

Git is not required. It was only an optional dependency. Recently we've removed it from some parts of ESP-IDF but we forgot about this. This will be addressed soon. The issue you are facing is with your Python. Somehow it throws a different exception as we've anticipated. You can patch your version ...
by ESP_Roland
Mon May 20, 2024 7:01 am
Forum: ESP-IDF
Topic: compile of app fails with FileNotFoundError: [Errno 2] No such file or directory: 'git' (IDF-10003)
Replies: 3
Views: 659

Re: compile of app fails with FileNotFoundError: [Errno 2] No such file or directory: 'git'

Please try v5.1.4 which is currently the latest bugfix release of v5.1 and report back if the issue still exists. If my memories are correct then this has already been fixed.
by ESP_Roland
Wed May 15, 2024 9:10 am
Forum: ESP-IDF
Topic: idf.py flash only, skip build
Replies: 2
Views: 473

Re: idf.py flash only, skip build

At the end of the output of "idf.py build" you can see the flashing command using esptool.py. Running that command won't re-trigger build. This also means that you don't even need on the flashing machine to have ESP-IDF. You can set up just esptool.py there (https://docs.espressif.com/projects/espto...
by ESP_Roland
Tue Apr 23, 2024 5:31 am
Forum: General Discussion
Topic: Get MAC address using espefuse
Replies: 4
Views: 551

Re: Get MAC address using espefuse

Code: Select all

espefuse.py --port <PORT> summary --format value_only MAC
This will be supported from the upcoming v4.8 release of esptool.