Search found 229 matches

by ESP_bignacio
Wed Nov 06, 2024 12:15 am
Forum: IDEs for ESP-IDF
Topic: vscode extension does not update testing tab unless on editor restart
Replies: 1
Views: 1095

Re: vscode extension does not update testing tab unless on editor restart

Thank you for your feedback !

Will take a look into it
by ESP_bignacio
Wed Nov 06, 2024 12:14 am
Forum: IDEs for ESP-IDF
Topic: How to incorporate Google library to OT_CLI of Esp32-h2 in VSCODE?
Replies: 2
Views: 728

Re: How to incorporate Google library to OT_CLI of Esp32-h2 in VSCODE?

Hi there ! So I think it would be best to post your question in ESP-IDF forums instead of this forum. Here's why: * ESP-IDF extension for VSCode is using commands that call the ESP-IDF framework (instead of Arduino). VSCode in itself doesn't have any program logic. What you are looking for is to imp...
by ESP_bignacio
Tue Sep 24, 2024 8:59 am
Forum: IDEs for ESP-IDF
Topic: Vscode ESP-IDF Extension: Files Being Generated Outside the Build Folder
Replies: 2
Views: 1944

Re: Vscode ESP-IDF Extension: Files Being Generated Outside the Build Folder

Do you have a

Code: Select all

"idf.buildPath"
or

Code: Select all

"idf.buildPathWin"
defined in your project ? What is the value ?

Make sure to delete it to have default value or use

Code: Select all

"idf.buildPath": "${workspaceFolder}/build"
or

Code: Select all

"idf.buildPathWin": "${workspaceFolder}\\build"
by ESP_bignacio
Wed Sep 18, 2024 1:14 am
Forum: IDEs for ESP-IDF
Topic: Cant get debugger working
Replies: 2
Views: 1752

Re: Cant get debugger working

Could you share the troubleshooting information ? https://github.com/espressif/vscode-esp-idf-extension/blob/master/README.md#troubleshooting What is your launch.json configuration ? Did you modify the default one? Based on what you say it seems OpenOCD has issue connecting to your board before debu...
by ESP_bignacio
Mon Aug 26, 2024 5:47 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF VS Code extension v1.8.1
Replies: 0
Views: 1887

ESP-IDF VS Code extension v1.8.1

ESP-IDF VS Code extension v1.8.1 Bug Fixes - Fix monitor for Command Prompt - Update chinese localization - Add Kconfig name in SDK Configuration Editor - Add validation for existing setup path - Fix custom tasks execution - Fix jtag flash on build flash monitor command - Fix CMake arguments for CM...
by ESP_bignacio
Mon Jul 22, 2024 7:19 am
Forum: IDEs for ESP-IDF
Topic: VSCode GDB Debug Failure - Error: undocumented errno 10061
Replies: 2
Views: 4197

Re: VSCode GDB Debug Failure - Error: undocumented errno 10061

Have you tried adding to the launch.json target connectCommands the same you are using in Linux:

["set mem inaccessible-by-default off",
"set remotetimeout 20",
"-target-select extended-remote localhost:3333"]
by ESP_bignacio
Thu Jul 11, 2024 11:06 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF 1.8.0 Debugging won't start
Replies: 3
Views: 5353

Re: ESP-IDF 1.8.0 Debugging won't start

Can you remove the target part and just use { "type": "gdbtarget", "request": "attach", "name": "Eclipse CDT GDB Adapter" } I'm not sure why but the documentation was updated and the target part was updated. Maybe you are seeing and old version of this debugging doc. Code I just shared should be the...
by ESP_bignacio
Tue Jul 09, 2024 8:47 am
Forum: IDEs for ESP-IDF
Topic: VScode keep being asked to "search for compilers on this computer"
Replies: 1
Views: 3382

Re: VScode keep being asked to "search for compilers on this computer"

Probably a message from the Microsoft C/C++ extension ? Could you share some screenshot or output ?

You can check their documentation for more information https://code.visualstudio.com/docs/cpp/ ... tellisense
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: 4137

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

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.