Search found 214 matches

by ESP_bignacio
Wed Mar 27, 2024 6:05 am
Forum: IDEs for ESP-IDF
Topic: Main task ended - COM port not available
Replies: 6
Views: 310

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

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

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...
by ESP_bignacio
Wed Feb 07, 2024 4:41 am
Forum: IDEs for ESP-IDF
Topic: Unknown CMake command error VSCode
Replies: 1
Views: 568

Re: Unknown CMake command error VSCode

Could you provide some troubleshooting information as described in :

https://github.com/espressif/vscode-esp ... leshooting

From the output I suspect there is some space in one of the configuration settings path.I would make sure to use a directory with no spaces.
by ESP_bignacio
Mon Jan 29, 2024 8:51 am
Forum: IDEs for ESP-IDF
Topic: ESP IDF VSCode Extension Release v1.7.0
Replies: 0
Views: 700

ESP IDF VSCode Extension Release v1.7.0

Github release v1.7.0 Features and enhancements - Update extension initial autoconfiguration - Add Commands tree view in Espressif explorer - Update OpenOCD boards filtered by selected IDF target - Documentation commands name consistency - Add new notification mode: Output, Notification, All, Silen...
by ESP_bignacio
Tue Jan 16, 2024 6:21 am
Forum: IDEs for ESP-IDF
Topic: VSCode configuration to compile for Linux
Replies: 1
Views: 58473

Re: VSCode configuration to compile for Linux

You can try our ESP-IDF extension and follow tutorials in our GitHub repository to how to set up

https://github.com/espressif/vscode-esp ... install.md
by ESP_bignacio
Thu Dec 21, 2023 5:18 am
Forum: IDEs for ESP-IDF
Topic: ESP installation always fails with all platforms
Replies: 2
Views: 7538

Re: ESP installation always fails with all platforms

Can you provide the troubleshooting information? https://github.com/espressif/vscode-esp-idf-extension#troubleshooting Also can you check these files exists? d:\ESP_IDF\ESP_IDF_TOOLS\python_env\idf5.1_py3.11_env\Scripts\python.exe c:\Users\eitan\.vscode\extensions\espressif.esp-idf-extension-1.6.5\e...
by ESP_bignacio
Thu Dec 14, 2023 4:00 am
Forum: IDEs for ESP-IDF
Topic: Unable to start debugging. Unexpected GDB output from command "- interpreter-exec console "target remote:3333""
Replies: 14
Views: 145614

Re: Unable to start debugging. Unexpected GDB output from command "- interpreter-exec console "target remote:3333""

So you are just starting a debug session without starting openOCD as far as I can see.

You need to start openOCD, either using ESP-IDF: Start OpenOCD command or in a terminal somewhere. Your launch.json configuration is not starting it.
by ESP_bignacio
Thu Dec 14, 2023 3:53 am
Forum: IDEs for ESP-IDF
Topic: VS Code - menuconfig enable BT error
Replies: 2
Views: 21746

Re: VS Code - menuconfig enable BT error

What is the content of your c_cpp_properties.json ? Are you resolving headers using the compile_commands.json ?

Look into the documentation : https://github.com/espressif/vscode-esp ... URATION.md