Search found 257 matches

by ESP_Roland
Mon Sep 09, 2024 6:37 am
Forum: ESP-IDF
Topic: Store menuconfing
Replies: 1
Views: 417

Re: Store menuconfing

There should be an "sdkconfig" file in your project's directory after running menuconfig. When you move your project then you need to move it as well with the project. More information about this topic: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/kconfig.html and also i...
by ESP_Roland
Wed Jul 31, 2024 10:49 am
Forum: ESP-IDF
Topic: Can't flash my ESP32 - Not beginner
Replies: 3
Views: 871

Re: Can't flash my ESP32 - Not beginner

The trace option can only be used when esptool is invoked directly. The command with all the necessary arguments can be copied from the error message, the part starting with "The terminal process ...", and the "--trace" option added after "esptool.py". But at this point I don't think it would reveal...
by ESP_Roland
Wed Jul 31, 2024 6:58 am
Forum: ESP-IDF
Topic: Can't flash my ESP32 - Not beginner
Replies: 3
Views: 871

Re: Can't flash my ESP32 - Not beginner

> I CAN connect to my board with Putty and Hterm and interract with the ESP32 at 115200 baud (on the desktop) Could you share the logs from there? There is a "--trace" command line argument for esptool. Could you use it and capture the log into a file? (it will be long) You can try to push the boot ...
by ESP_Roland
Thu Jul 25, 2024 10:41 am
Forum: IDEs for ESP-IDF
Topic: Can not build any project [IDFGH-13323]
Replies: 2
Views: 2125

Re: Can not build any project

Could you try to run the following and see if it helps?

Code: Select all

ccache -C
I would also recommend to check the output of "git status" and see if any files have been changed. Especially those two in "components/hal" for which the error is reported.
by ESP_Roland
Wed Jul 24, 2024 7:07 am
Forum: ESP-IDF
Topic: VS Code extension 5.2.2 installation issues on Windows 11
Replies: 2
Views: 885

Re: VS Code extension 5.2.2 installation issues on Windows 11

On the ESP-IDF side we already improved the warning message. It was "error" in it so I guess the Vscode plugin exited because of it. I'm not sure if this has been fixed with any of Vscode plugin bugfixes. But the warning itself can be avoided if the virtual environment is manually deleted (C:\\Espre...
by ESP_Roland
Tue Jul 23, 2024 8:11 am
Forum: General Discussion
Topic: idf.py size does not product the
Replies: 3
Views: 1043

Re: idf.py size does not product the

What is your ESP-IDF version? You are reading the documentation for the latest master branch (upcoming v5.4).
by ESP_Roland
Fri Jul 12, 2024 6:31 am
Forum: General Discussion
Topic: esp32-c5
Replies: 3
Views: 1356

Re: esp32-c5

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

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

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

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