Search found 221 matches

by ESP_bignacio
Thu Jan 21, 2021 9:07 am
Forum: IDEs for ESP-IDF
Topic: Clean setup vscode + IDF extension: The term 'PYTHON_INTERPRETER' is not recognized
Replies: 2
Views: 3399

Re: Clean setup vscode + IDF extension: The term 'PYTHON_INTERPRETER' is not recognized

PYTHON_INTERPRETER is the "Using Python interpreter in" value generated by $IDF_PATH/export.sh if you used the ESP-IDF: Configure ESP-IDF extension setup wizard you don't need to manually configure settings.json, this is just for manual extension configuration. If you installed using ESP-IDF Window...
by ESP_bignacio
Thu Jan 21, 2021 9:00 am
Forum: IDEs for ESP-IDF
Topic: How can I install the new version of openocd in the ESP-idf?
Replies: 9
Views: 12261

Re: How can I install the new version of openocd in the ESP-idf?

The thing is, some changes were implemented on openOCD to allow Visual Studio Code to perform JTAG flashing from this version. If you want to replace openOCD, just get one of the latest openOCD releases and replace c:\\esp\\tools\\.espressif\\tools\\openocd-esp32\\v0.10.0-esp32-20200709\\openocd-esp...
by ESP_bignacio
Mon Jan 11, 2021 6:47 am
Forum: IDEs for ESP-IDF
Topic: VS Code CMake not using correct Python ENV
Replies: 5
Views: 9268

Re: VS Code CMake not using correct Python ENV

Are you using CMake Tools extension ? Or are you using another extension? If you are using Microsoft's CMake Tools extension, you might want to set an environment variable called PYTHON with C:\ESP32\.espressif\python_env\idf4.3_py3.9_env\Scripts\python.exe You can also try our official extension fo...
by ESP_bignacio
Fri Jan 08, 2021 4:14 am
Forum: IDEs for ESP-IDF
Topic: Problem installing release/4.2
Replies: 2
Views: 2732

Re: Problem installing release/4.2

Should be fixed with new marketplace release v0.6.0
by ESP_bignacio
Thu Jan 07, 2021 3:09 am
Forum: IDEs for ESP-IDF
Topic: Trying to debug in visual studio code extension: No module named 'win32api'
Replies: 1
Views: 3546

Re: Trying to debug in visual studio code extension: No module named 'win32api'

You need to install win32api in your virtual environment python packages.
If you just do `pip install win32api` it will install in your global python packages. Try `idf.pythonBinPathWin -m pip install win32api` and replace idf.pythonBinPathWin with the python path in your extension settings.
by ESP_bignacio
Wed Jan 06, 2021 7:08 am
Forum: IDEs for ESP-IDF
Topic: VS-Code Tool Installation Error.
Replies: 1
Views: 2758

Re: VS-Code Tool Installation Error.

Have you installed the extension python packages as explained in SETUP doc ? IF you look closely to log output, the check_python_requirements.py fails when checking esp_debug_adapter\requirements.txt Try C:\Users\User-Pc\.espressif\python_env\idf4.1_py3.9_env\Scripts\python.exe -m pip install -r c:\...
by ESP_bignacio
Wed Jan 06, 2021 6:32 am
Forum: IDEs for ESP-IDF
Topic: GDB does not load .gdbinit (Windows)
Replies: 2
Views: 3903

Re: GDB does not load .gdbinit (Windows)

What's wrong with setting the debugger in the extension?

Are you able to build and flash with the extension commands ? Did you got any error configuring the extension ?

More info about debugging in https://github.com/espressif/vscode-esp ... BUGGING.md
by ESP_bignacio
Wed Jan 06, 2021 6:28 am
Forum: IDEs for ESP-IDF
Topic: Flashing doesn't work in Extension 6.0 Update for VS Code
Replies: 1
Views: 2536

Re: Flashing doesn't work in Extension 6.0 Update for VS Code

We have renamed `idf.baudRate` to `idf.flashBaudRate` to avoid confusion with monitor baud rate. We have updated our tasks.json templates but you just need to replace ${config:idf.baudRate} to ${config: idf.flashBaudRate} in your tasks.json and should work. Is there any reason why you don't use the ...
by ESP_bignacio
Tue Dec 29, 2020 7:05 am
Forum: IDEs for ESP-IDF
Topic: Python issues when setting up VS Code
Replies: 3
Views: 3882

Re: Python issues when setting up VS Code

Have you configure the extension using the ESP-IDF: Configure ESP-IDF extension command ?

Steps are explained here : https://github.com/espressif/vscode-esp ... OARDING.md

or check our Youtube video
by ESP_bignacio
Tue Dec 29, 2020 7:03 am
Forum: IDEs for ESP-IDF
Topic: VS Code Windows does not recognize esptool, while esptool is available in VS Code terminal
Replies: 3
Views: 5013

Re: VS Code Windows does not recognize esptool, while esptool is available in VS Code terminal

Have you configure the extension using the ESP-IDF: Configure ESP-IDF extension command ?

Steps are explained here : https://github.com/espressif/vscode-esp ... OARDING.md

or check our Youtube video