Search found 221 matches

by ESP_bignacio
Tue Apr 25, 2023 5:59 am
Forum: IDEs for ESP-IDF
Topic: ESP32S3-DEVKITC-1 I2C Example error
Replies: 1
Views: 2351

Re: ESP32S3-DEVKITC-1 I2C Example error

Have you configure the target for ESP32S3 ? 1. Delete existing build folder 2. Use the ESP-IDF: Set Espressif device target command 3. Use the ESP-IDF: Select OpenOCD Board Configuration command to choose openOCD board or interface to use. You can also look at the troubleshooting guide to understand...
by ESP_bignacio
Thu Apr 06, 2023 11:39 am
Forum: IDEs for ESP-IDF
Topic: 在VScode上运行ESP-IDF QEMU出错
Replies: 1
Views: 1485

Re: 在VScode上运行ESP-IDF QEMU出错

QEMU is only available for ESP32. Other chips are not yet supported.
by ESP_bignacio
Thu Apr 06, 2023 11:37 am
Forum: IDEs for ESP-IDF
Topic: Using the VSCode Extension Offline
Replies: 1
Views: 1526

Re: Using the VSCode Extension Offline

You could either configure the extension manually by having everything in the offline computer already.

JSON Manual Configuration

Or you could use a previously configured Docker container or WSL environment as shown in the tutorial here:

Docker container tutorial

WSL tutorial
by ESP_bignacio
Thu Apr 06, 2023 11:33 am
Forum: IDEs for ESP-IDF
Topic: VSCODE extension - Can not change monitor baud
Replies: 3
Views: 2348

Re: VSCODE extension - Can not change monitor baud

If the option is not visible in menuconfig is probably because it depends on another configuration that hides this value. When the build happens there is a configuration validation that will use a default value if another configuration is disabled.
by ESP_bignacio
Tue Feb 21, 2023 9:07 am
Forum: IDEs for ESP-IDF
Topic: Missing paramer when starting monitor on Espressif-IDE VSCode Extension
Replies: 3
Views: 2825

Re: Missing paramer when starting monitor on Espressif-IDE VSCode Extension

How are you setting the target to esp32c6 ? We haven't add support for it in the vscode extension yet.

Probably because the toolchain_prefix is defined based on target and is a null string for anything else. Should fix this in the extension soon.
by ESP_bignacio
Fri Feb 17, 2023 8:17 am
Forum: IDEs for ESP-IDF
Topic: build.ninja error from VSCode but works OK from terminal
Replies: 2
Views: 7206

Re: build.ninja error from VSCode but works OK from terminal

Seems there might be an issue with your configuration. Check the troubleshooting section and share the required information.
by ESP_bignacio
Fri Feb 17, 2023 8:04 am
Forum: IDEs for ESP-IDF
Topic: VS Code You do not have IntelliSense configured.
Replies: 2
Views: 7941

Re: VS Code You do not have IntelliSense configured.

The [Scan for kits] message is from the CMake Tools extension, not the Espressif VSCode extension. Your c_cpp_properties.json seems to be configured. These message you are receiving can be removed by uninstalling this extension. "compileCommands": "${workspaceFolder}/build/compile_commands.json" is ...
by ESP_bignacio
Fri Feb 03, 2023 8:29 am
Forum: ESP-IDF
Topic: ESP-Prog JTAG debugging with ESP32S3
Replies: 7
Views: 8887

Re: ESP-Prog JTAG debugging with ESP32S3

I see the issue now. You have defined "initGdbCommands": [ "target remote :3333", "symbol-file /build/VimmsLite_main.elf", "mon reset halt", "flushregs", "thb app_main", "c" ] and as specified in the debugging documentation but initGdbCommands doesn't need to be defined by default. The error in the ...
by ESP_bignacio
Thu Feb 02, 2023 8:28 am
Forum: ESP-IDF
Topic: ESP-Prog JTAG debugging with ESP32S3
Replies: 7
Views: 8887

Re: ESP-Prog JTAG debugging with ESP32S3

It seems something went wrong after switching threads in your application. In your .vscode/launch.json could you change your logLevel to 4 to increase the output from debug adapter. This should give us a bit more detail about the error. You could also play with the tmoScaleFactor to increase the wai...