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.
Search found 232 matches
- Wed Feb 05, 2025 2:24 am
- Forum: IDEs for ESP-IDF
- Topic: Correct Way to Select the Target Chip in Unit Testing?
- Replies: 2
- Views: 2301
- 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: 5244
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.
- Wed Dec 25, 2024 1:34 am
- Forum: IDEs for ESP-IDF
- Topic: VSCode + ESP-IDF + Component Dev Env
- Replies: 3
- Views: 4629
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 ?
Does your main/CMakeLists.txt including SRCS the list of files used by your components ?
- 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: 5244
Re: vscode extension does not update testing tab unless on editor restart
Thank you for your feedback !
Will take a look into it
Will take a look into it
- 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: 3650
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...
- 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: 3381
Re: Vscode ESP-IDF Extension: Files Being Generated Outside the Build Folder
Do you have a or defined in your project ? What is the value ?
Make sure to delete it to have default value or use or
Code: Select all
"idf.buildPath"
Code: Select all
"idf.buildPathWin"
Make sure to delete it to have default value or use
Code: Select all
"idf.buildPath": "${workspaceFolder}/build"
Code: Select all
"idf.buildPathWin": "${workspaceFolder}\\build"
- Wed Sep 18, 2024 1:14 am
- Forum: IDEs for ESP-IDF
- Topic: Cant get debugger working
- Replies: 2
- Views: 3076
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...
- Mon Aug 26, 2024 5:47 am
- Forum: IDEs for ESP-IDF
- Topic: ESP-IDF VS Code extension v1.8.1
- Replies: 0
- Views: 2920
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...
- Mon Jul 22, 2024 7:19 am
- Forum: IDEs for ESP-IDF
- Topic: VSCode GDB Debug Failure - Error: undocumented errno 10061
- Replies: 2
- Views: 6147
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"]
["set mem inaccessible-by-default off",
"set remotetimeout 20",
"-target-select extended-remote localhost:3333"]
- 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: 7624
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...