Search found 221 matches

by ESP_bignacio
Mon Feb 21, 2022 6:18 am
Forum: IDEs for ESP-IDF
Topic: VS Code set app offset
Replies: 4
Views: 3532

Re: VS Code set app offset

You could customize the partition table as describe here
by ESP_bignacio
Tue Feb 08, 2022 10:09 am
Forum: IDEs for ESP-IDF
Topic: IDE keeps scanning for kits on project load
Replies: 2
Views: 3797

Re: IDE keeps scanning for kits on project load

This is not done by the ESP-IDF VSCode extension but the Microsoft CMake extension. You can define your own custom kit for CMake development basically specifying the xtensa toolchain compiler. Something like this: { "name": "ESP32 Kit", "compilers": { "CC": "$HOME/.espressif/tools/xtensa-esp32-elf/e...
by ESP_bignacio
Tue Jan 25, 2022 3:17 am
Forum: IDEs for ESP-IDF
Topic: Visual Studio Code Installation issues
Replies: 2
Views: 5698

Re: Visual Studio Code Installation issues

Could you use a location with no spaces in the path ? The build system is yet to fully support spaces.

There seems to be a permission error for one of the files. Please make sure to use a location with read/write permission.
by ESP_bignacio
Thu Jan 13, 2022 11:19 am
Forum: IDEs for ESP-IDF
Topic: problems with esp-idf framework in vs code
Replies: 2
Views: 5310

Re: problems with esp-idf framework in vs code

There is an issue in Windows that should be fixed in GitHub master. Could you try this vsix installer https://nightly.link/espressif/vscode-esp-idf-extension/actions/artifacts/137655771.zip and see if the issue is fixed ? https://user-images.githubusercontent.com/4997752/148534732-b52f1353-d2eb-4a4a...
by ESP_bignacio
Mon Jan 10, 2022 8:32 am
Forum: IDEs for ESP-IDF
Topic: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate
Replies: 10
Views: 22079

Re: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate

Of course whenever you have some time to take a look.

If you have the settings configured as the last doctor output the extension commands should work. Are you using the commands from ESP-IDF extension commands ? Could you share the output of ESP-IDF Build task ?
by ESP_bignacio
Fri Jan 07, 2022 6:01 am
Forum: IDEs for ESP-IDF
Topic: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate
Replies: 10
Views: 22079

Re: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate

Hi RalphD, we are very sorry for the inconvenience ,thankfully you can always rollback to previous versions easily if they were working before. About the issue you are having. I need more information about your setup and the output you are trying to use. Please share all related Troubleshooting info...
by ESP_bignacio
Thu Jan 06, 2022 6:02 am
Forum: IDEs for ESP-IDF
Topic: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate
Replies: 10
Views: 22079

Re: Urgent!! new version 1.3 DOES NOT WORK AT ALL !!!! after autoupdate

Could you update idf.gitPath to the git executable in your C:\\._espressif\\tools\\idf-git\\2.30.1\\cmd\\git.exe and idf.pythonBinPath to the correct path. This should be picked by the extension setup, but maybe your project has a .vscode/settings.json overriding user level settings ? I don't unders...
by ESP_bignacio
Tue Dec 07, 2021 12:20 pm
Forum: IDEs for ESP-IDF
Topic: ESP debug adapter question
Replies: 5
Views: 21704

Re: ESP debug adapter question

You can also open a terminal and try these commands: C:\ESP-IDF\TOOLS\.espressif\python_env\idf4.1_py3.9_env\Scripts\python.exe -m pip install --upgrade -r c:\Users\ndjur\.vscode\extensions\espressif.esp-idf-extension-1.2.0/requirements.txt C:\ESP-IDF\TOOLS\.espressif\python_env\idf4.1_py3.9_env\Scr...
by ESP_bignacio
Fri Dec 03, 2021 12:02 pm
Forum: IDEs for ESP-IDF
Topic: Can't debug hello_world example with ESP-PROG JTAG interface
Replies: 1
Views: 8874

Re: Can't debug hello_world example with ESP-PROG JTAG interface

In your project's .vscode/launch.json can you set "skipVerifyAppBinBeforeDebug": true and try again ?
by ESP_bignacio
Thu Dec 02, 2021 8:50 am
Forum: IDEs for ESP-IDF
Topic: ESP debug adapter question
Replies: 5
Views: 21704

Re: ESP debug adapter question

The vscode extension debug adapter has its own python packages required to work. These will be installed in your Python virtual environment (idf.pythonBinPath) and should not affect your esp-idf modules.

You can use the extension Install ESP-IDF Python Packages command to install these packages.