Search found 221 matches

by ESP_bignacio
Fri Jun 28, 2024 1:26 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF extension for Visual Studio Code 1.8.0
Replies: 1
Views: 123

ESP-IDF extension for Visual Studio Code 1.8.0

ESP-IDF extension for Visual Studio Code 1.8.0 Features and enhancements Add button to enable custom partition when calling Partition table editor Add ESP-IDF version switcher Translation using l10n vscode api, remove gulp files Add Eclipse CDT Debug Adapter and update debugging documentation Add C...
by ESP_bignacio
Fri Jun 21, 2024 8:15 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF setup error in vscode with ESP-IDF extension
Replies: 4
Views: 730

Re: ESP-IDF setup error in vscode with ESP-IDF extension

We should have a fix in this vsix installer and it will be part of the next v1.8.0 release.

You can try by uninstall your current esp-idf vscode extension and install the vsix from the link with Install from VSIX command in vscode.
by ESP_bignacio
Fri Jun 14, 2024 4:56 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF setup error in vscode with ESP-IDF extension
Replies: 4
Views: 730

Re: ESP-IDF setup error in vscode with ESP-IDF extension

In Visual Studio Code select menu View then click Command Palette... and type ESP-IDF: Doctor Command to generate a report of your environment configuration and it will be copied in your clipboard to paste anywhere. Check log file which can be obtained from: Windows: %USERPROFILE%\.vscode\extensions...
by ESP_bignacio
Thu Jun 13, 2024 3:45 am
Forum: IDEs for ESP-IDF
Topic: Debug connection through JTAG not always working in VSCode
Replies: 3
Views: 432

Re: Debug connection through JTAG not always working in VSCode

We are deprecating espidf target in favor of gdbtarget. In the future we will remove it entirely.
by ESP_bignacio
Fri Jun 07, 2024 8:11 am
Forum: IDEs for ESP-IDF
Topic: Debug connection through JTAG not always working in VSCode
Replies: 3
Views: 432

Re: Debug connection through JTAG not always working in VSCode

Hi ! We implemented a new debug adapter which is currently in GitHub master. You can try by installing this vsix installer: https://nightly.link/espressif/vscode-esp-idf-extension/workflows/ci/master/esp-idf-extension.vsix.zip We also updated the debug tutorials documentation in here: https://github...
by ESP_bignacio
Wed Mar 27, 2024 6:05 am
Forum: IDEs for ESP-IDF
Topic: Main task ended - COM port not available
Replies: 7
Views: 4453

Re: Main task ended - COM port not available

Probably because you are not ending the monitor session properly and COM5 is still in use. Make sure to close the monitor before (like running

Code: Select all

CTRL + ]
) for example.
by ESP_bignacio
Wed Feb 07, 2024 5:04 am
Forum: IDEs for ESP-IDF
Topic: Build of Hello_World.c fails for target devices ESP32H2, ESP32C6
Replies: 4
Views: 2786

Re: Build of Hello_World.c fails for target devices ESP32H2, ESP32C6

Where are you seeing the error ? Is the error coming from the Microsoft C/C++ extension ? or is it in the build output ? You can check the .vscode/c_cpp_properties.json and use the compile_commands.json configuration as described in https://github.com/espressif/vscode-esp-idf-extension/blob/master/d...
by ESP_bignacio
Wed Feb 07, 2024 4:47 am
Forum: IDEs for ESP-IDF
Topic: vscode config parameters - fatfs fastseek ?
Replies: 1
Views: 18435

Re: vscode config parameters - fatfs fastseek ?

You can try passing them with the idf.cmakeCompilerArgs configuration setting in your project .vscode/settings.json Something like: { "idf.cmakeCompilerArgs": ["-G", "Ninja","-DPYTHON_DEPS_CHECKED=1","-DESP_PLATFORM=1","-DCORE_DEBUG_LEVEL=5", "-DCONFIG_ARDUHAL_LOG_COLORS=1","-DCONFIG_FATFS_USE_FASTS...