Search found 234 matches

by ESP_bignacio
Mon Feb 17, 2025 8:51 am
Forum: IDEs for ESP-IDF
Topic: Correct Way to Select the Target Chip in Unit Testing?
Replies: 3
Views: 2456

Re: Correct Way to Select the Target Chip in Unit Testing?

This issue was actually related to IDF_TARGET not being persisted issues that was fixed in this GitHub Pull Request

Please try the latest master vsix install to see the issue is fixed. I've tested myself and seems to work with unity-test ESP-IDF example using different target.
by ESP_bignacio
Mon Feb 17, 2025 8:47 am
Forum: IDEs for ESP-IDF
Topic: Unit tests are disappeared from VS Code Activiy Bar
Replies: 2
Views: 610

Re: Unit tests are disappeared from VS Code Activiy Bar

The reason why test don't show in the Testing tabs is because it is not following the naming convention of test files. The extension automatically find tests in files of name test_*.c as described in unit testing documentation
by ESP_bignacio
Wed Feb 05, 2025 2:24 am
Forum: IDEs for ESP-IDF
Topic: Correct Way to Select the Target Chip in Unit Testing?
Replies: 3
Views: 2456

Re: Correct Way to Select the Target Chip in Unit Testing?

Thank you for sharing! This is indeed a bug to fix !

The unity-app project is created from extension templates. I will update the unit test functionality to set the IDF_TARGET in the unity-app project to match the parent ESP-IDF project.
by ESP_bignacio
Thu Dec 26, 2024 3:08 am
Forum: IDEs for ESP-IDF
Topic: vscode extension does not update testing tab unless on editor restart
Replies: 2
Views: 5362

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

This should be fixed in v1.9.0 so when you click the Refresh tests button in the Testing tab new tests are shown.
by ESP_bignacio
Wed Dec 25, 2024 1:34 am
Forum: IDEs for ESP-IDF
Topic: VSCode + ESP-IDF + Component Dev Env
Replies: 3
Views: 4769

Re: VSCode + ESP-IDF + Component Dev Env

What are you using for Language syntax ? Microsoft C/C++ extension ? What is the content of your .vscode/c_cpp_properties.json configuration ?

Does your main/CMakeLists.txt including SRCS the list of files used by your components ?
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: 2
Views: 5362

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

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

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

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

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