Search found 221 matches

by ESP_bignacio
Fri Aug 07, 2020 3:49 am
Forum: IDEs for ESP-IDF
Topic: CMakeLists.txt error on project.cmake
Replies: 1
Views: 19473

Re: CMakeLists.txt error on project.cmake

Try deleting the build folder on your project and try again. Settings seem to be ok. Have you try build from the terminal and see what happens? Doesn't seem to be an issue with the extension itself. IS there any error in the log: - Windows: `%USERPROFILE%\.vscode\extensions\espressif.esp-idf-extensi...
by ESP_bignacio
Thu Jul 30, 2020 9:31 am
Forum: ESP-IDF 中文讨论版
Topic: 关于Visual Studio Code的 espressif-idf插件下出现的卡顿
Replies: 2
Views: 4982

Re: 关于Visual Studio Code的 espressif-idf插件下出现的卡顿

你能在上发表一个问题吗https://github.com/espressif/vscode-esp-idf-extension/issues/new/choose有一些复制的步骤吗

可以在vscode中修改键盘快捷键,如中所示https://code.visualstudio.com/docs/getstarted/keybindings

如果任务被卡住,可以运行F1 Tasks: Terminate task
by ESP_bignacio
Thu Jul 23, 2020 1:52 am
Forum: IDEs for ESP-IDF
Topic: how to increase task stack size on visual studio code?
Replies: 1
Views: 4198

Re: how to increase task stack size on visual studio code?

It is a parameter that you specify programmatically on the esp-idf task creation method API using usStackDepth as explained in the Task API here: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos.html?highlight=task%20size I'm not sure why would you like to co...
by ESP_bignacio
Fri Jul 10, 2020 2:22 am
Forum: ESP-IDF
Topic: Finally I'm interested in ESP32-IDF, with Visual Studio Code extension
Replies: 4
Views: 6335

Re: Finally I'm interested in ESP32-IDF, with Visual Studio Code extension

Olá @jgustavoam ! What seems to be the issue with ESP-IDF extension for Visual Studio Code? The extension needs to be configured as shown in https://github.com/espressif/vscode-esp-idf-extension#how-to-use to set ESP-IDF and required ESP-IDF Tools such as the Xtensa ESP32 Toolchain (which is used fo...
by ESP_bignacio
Thu Jul 02, 2020 9:48 am
Forum: Report Bugs
Topic: VSCODE-Extension: Debug not working, idf: custom extra paths not recognized
Replies: 1
Views: 5600

Re: VSCODE-Extension: Debug not working, idf: custom extra paths not recognized

Hi there, There is seems to be an issue that vscode stopped parsing values within env in launch.json. We had a discussion in https://github.com/espressif/vscode-esp-idf-extension/issues/132 basically replace "PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter" to "PYTHO...
by ESP_bignacio
Tue Jun 16, 2020 6:56 am
Forum: IDEs for ESP-IDF
Topic: VSC extension and Arduino as component
Replies: 1
Views: 5349

Re: VSC extension and Arduino as component

Please give a try to the feature PR to support this https://github.com/espressif/vscode-esp ... n/pull/117
by ESP_bignacio
Tue Jun 02, 2020 9:30 am
Forum: IDEs for ESP-IDF
Topic: VS Code extension installation error - invalid command 'bdist_wheel'
Replies: 5
Views: 8835

Re: VS Code extension installation error - invalid command 'bdist_wheel'

Hi @pascalb sorry for late reply. After reviewing on Ubuntu, we found out the issue. It seems venv doesn't include wheel in the virtual environment by default, so when the requirements.txt's packages are being installed it can't find bdist_wheel . This only seems to happen on Ubuntu (maybe also in o...
by ESP_bignacio
Thu May 28, 2020 2:04 am
Forum: IDEs for ESP-IDF
Topic: VS Code extension installation error - invalid command 'bdist_wheel'
Replies: 5
Views: 8835

Re: VS Code extension installation error - invalid command 'bdist_wheel'

It seems venv is not passing wheel to the virtualenv before installing requirements.txt packages. Maybe an old pip version ?

Try `pip install --upgrade pip wheel` and `pip3 install --upgrade pip wheel` and run the extension tools download again please.
by ESP_bignacio
Thu Apr 30, 2020 9:29 am
Forum: IDEs for ESP-IDF
Topic: Visual Studio Code install error [VSC-313]
Replies: 10
Views: 18606

Re: Visual Studio Code install error [VSC-313]

We could probably improve this in the onboarding document, but in the Github repository README https://github.com/espressif/vscode-esp-idf-extension#esp-idf-settings this is one of the settings the extension contributes. You will find in either settings.json or Visual Studio Code Preferences Open Se...
by ESP_bignacio
Wed Apr 29, 2020 9:02 am
Forum: IDEs for ESP-IDF
Topic: Visual Studio Code install error [VSC-313]
Replies: 10
Views: 18606

Re: Visual Studio Code install error [VSC-313]

At that point of checking the tools it also check the python requirements using the extension python virtual env defined in idf.pythonBinPath but for some reason it reading the default value instead of the one when you download the tools from the extension. The extension asks for your system python ...