Search found 227 matches

by ESP_bignacio
Sun Apr 25, 2021 9:00 am
Forum: IDEs for ESP-IDF
Topic: What is the best method for updating esp-idf to get latest commits VS Code extension
Replies: 3
Views: 5441

Re: What is the best method for updating esp-idf to get latest commits VS Code extension

You can just go to the ESP-IDF path and do a `git pull --recurse-submodules`. When ESP-IDF is updated, use the `ESP-IDF: Configure ESP-IDF extension` using existing ESP-IDF path to download and configure the ESP-IDF tools and create a virtual environment for the new version.
by ESP_bignacio
Fri Apr 16, 2021 2:39 pm
Forum: IDEs for ESP-IDF
Topic: VS Code Blink Debug Problems
Replies: 1
Views: 3581

Re: VS Code Blink Debug Problems

Maybe you can try disabling launching the monitor by setting `idf.launchMonitorOnDebugSession` to false and try again.
by ESP_bignacio
Wed Apr 07, 2021 11:22 am
Forum: IDEs for ESP-IDF
Topic: Visual Studio Code path distortion when flash command is sent to bash
Replies: 1
Views: 3123

Re: Visual Studio Code path distortion when flash command is sent to bash

Can you change the terminal for Visual Studio Code like:

"terminal.integrated.shell.windows": "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" in you settings.json

or command prompt ? We haven't tested the extension tasks using Cygwin64 bash
by ESP_bignacio
Mon Mar 29, 2021 4:23 am
Forum: IDEs for ESP-IDF
Topic: Unable to buid VS Code
Replies: 4
Views: 7883

Re: Unable to buid VS Code

Based on Doctor command output I assume something failed while installing Python packages for ESP-IDF in your setup. In any terminal in your system do: C:\Users\asgar\.espressif\python_env\idf4.2_py3.7_env\Scripts\python.exe -m pip install -r "C:\Users\asgar\esp\esp-idf\requirements.txt" C:\Users\as...
by ESP_bignacio
Thu Mar 25, 2021 8:05 am
Forum: IDEs for ESP-IDF
Topic: Unable to buid VS Code
Replies: 4
Views: 7883

Re: Unable to buid VS Code

Can you provide additional information of your setup ? **Environment (please complete the following information):** - OS Name & Version: [e.g. MacOS X 10.14.5] - VSCode Version: [e.g. 1.35.1] - ESP-IDF Version: [e.g. v3.2.2] - Python Version: [e.g. 2.7.10] You can use the "ESP-IDF: Doctor command" t...
by ESP_bignacio
Thu Mar 18, 2021 10:02 am
Forum: IDEs for ESP-IDF
Topic: Intellisense for pdMS_TO_TICKS
Replies: 2
Views: 3425

Re: Intellisense for pdMS_TO_TICKS

Have you look into C_CPP_CONFIGURATION ?
by ESP_bignacio
Tue Mar 16, 2021 8:30 am
Forum: IDEs for ESP-IDF
Topic: New VSC Updates Stops Project build
Replies: 3
Views: 4198

Re: New VSC Updates Stops Project build

Can you check your project's settings.json values? If your project settings.json have idf.espIdfPath, for example, this will override any global settings in Visual Studio Code. Can you share a bit about your setup and any errors ? You can use the `ESP-IDF: Doctor command` to generate a report of you...
by ESP_bignacio
Tue Mar 16, 2021 8:20 am
Forum: IDEs for ESP-IDF
Topic: VSCODE: purchased Wrover-kit, serial flashing does not work and JTAG flash/debug does not work
Replies: 12
Views: 14383

Re: VSCODE: purchased Wrover-kit, serial flashing does not work and JTAG flash/debug does not work

In your project's/.vscode/launch.json set logLevel:5 to increase output logs in debug console as shown in debugging.md.

Any error on your project's debug.log or in the debug console or in openOCD ?
by ESP_bignacio
Fri Mar 12, 2021 9:53 am
Forum: IDEs for ESP-IDF
Topic: VSCODE: purchased Wrover-kit, serial flashing does not work and JTAG flash/debug does not work
Replies: 12
Views: 14383

Re: VSCODE: purchased Wrover-kit, serial flashing does not work and JTAG flash/debug does not work

If idf.openOcdConfigs is missing, it might be the issue. As shown in Configuration settings Board Specific settings idf.openOcdConfigs specifies the configuration files used by openOCD to communicate with your board. In Visual Studio Code extension, when you use Select OpenOCD Board Configuration co...