Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't run OpenOCD Server when debugging (VSC-1621) #1469

Closed
1 task done
Bennyggcc opened this issue Mar 11, 2025 · 6 comments
Closed
1 task done

Can't run OpenOCD Server when debugging (VSC-1621) #1469

Bennyggcc opened this issue Mar 11, 2025 · 6 comments
Labels
bug-report Bug Report from users on Github (don't use this tag manually, its supposed to be used via the issue)

Comments

@Bennyggcc
Copy link

OS

Windows

Operating System version

windows

Visual Studio Code version

1.91.1

ESP-IDF version

5.2.3

Python version

3.10

Doctor command output

launch.json:
{
"version": "0.2.0",
"configurations": [
{
"type": "gdbtarget",
"request": "attach",
"name": "Eclipse CDT GDB Adapter"
},
{
"type": "espidf",
"name": "Launch",
"request": "launch"
}
]
}

setting.json:
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPathWin": "C:\Users\35222\esp\v5.2.3\esp-idf",
"idf.openOcdConfigs": [
"board/esp32s3-builtin.cfg"
],
"idf.portWin": "COM16",
"idf.toolsPathWin": "C:\Users\35222\.espressif",
"idf.flashType": "UART",
"files.associations": {
"esp_system.h": "c",
"esp_bit_defs.h": "c",
"task.h": "c",
"esp_flash.h": "c"
},
"idf.customExtraVars": {
"IDF_TARGET": "esp32s3"
}
}

c_cpp_properties.json:
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPathWin}\tools\xtensa-esp-elf\esp-13.2.0_20230928\xtensa-esp-elf\bin\xtensa-esp32s3-elf-gcc.exe",
"compileCommands": "${config:idf.buildPath}/compile_commands.json",
"includePath": [
"${config:idf.espIdfPath}/components/",
"${config:idf.espIdfPathWin}/components/
",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${config:idf.espIdfPath}/components",
"${config:idf.espIdfPathWin}/components",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
}
}
],
"version": 4
}

Extension

No response

Description

can't run OpenOCD Server when debugging

Debug Message

[OpenOCD]
Open On-Chip Debugger v0.12.0-esp32-20240821 (2024-08-21-14:45)
Licensed under GNU GPL v2
For bug reports, read
http://openocd.org/doc/doxygen/bugs.html

debug_level: 2

Info : only one transport option; autoselecting 'jtag'

Info : esp_usb_jtag: VID set to 0x303a and PID to 0x1001
Info : esp_usb_jtag: capabilities descriptor set to 0x2000

C:\Users\35222.espressif\tools\openocd-esp32\v0.12.0-esp32-20240821\openocd-esp32\bin\openocd.exe

Info : Listening on port 666
6 for tcl connections
Info : Listening on port 4444 for telnet connections

Info : esp_usb_jtag: serial (34:85:18:A5:50:84)

Info : esp_usb_jtag: Device f
ound. Base speed 40000KHz, div range 1 to 255

Info : clock speed 40000 kHz

❌ Error: libusb_bulk_write error: LIBUSB_ERROR_TIMEOUT

Info : esp_usb_jtag: serial (34:8
5:18:A5:50:84)

Info : esp_usb_jtag: Device found
. Base speed 40000KHz, div range 1 to 255

❌ Error: libusb_bulk_write error: LIBUSB_ERROR_TIMEOUT

Info : esp_usb_jtag: serial (34:85:18:A5:50:84)

Info : esp_usb_jtag: Dev
ice found. Base speed 40000KHz, div range 1 to 255

❌ Error: libusb_bulk_write error: LIBUSB_ERROR_TIMEOUT

Info : esp_usb_jtag: serial (34:85:18:A5:50:84)

Info : esp_usb_jtag: Device found.
Base speed 40000KHz, div range 1 to 255

Other Steps to Reproduce

No response

I have checked existing issues, online documentation and the Troubleshooting Guide

  • I confirm I have checked existing issues, online documentation and Troubleshooting guide.
@Bennyggcc Bennyggcc added the bug-report Bug Report from users on Github (don't use this tag manually, its supposed to be used via the issue) label Mar 11, 2025
@github-actions github-actions bot changed the title Can't run OpenOCD Server when debugging Can't run OpenOCD Server when debugging (VSC-1621) Mar 11, 2025
@brianignacio5
Copy link
Collaborator

brianignacio5 commented Mar 12, 2025

Have you installed the FTDI drivers ? Check https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/jtag-debugging/configure-ft2232h-jtag.html

Please review the OpenOCD troubleshooting FAQ.

Please add " idf.openOcdLaunchArgs": ["-c", '"esp stub_log on"', "-d3", "-l", "log.txt"] in your .vscode/settings.json to see more information in OpenOCD output.

Any thoughts @erhankur ?

@erhankur
Copy link

Logs will be useful to understand what is going on. As an addition; @Bennyggcc

  • Which devkit is used? Custom or Espressif made?
  • Which application is installed? Did you try with a basic hello-world example?

@Bennyggcc
Copy link
Author

  • Which devkit is used? Custom or Espressif made?
  • Which application is installed? Did you try with a basic hello-world example?

Hello, I have added the log file. I used Espressif made devkit: ESP32-S3-DevKitC-1, and I tested on a basic hello-world example.

But this time I use debugger, I got error as follow:

Image Image

log.txt

@erhankur
Copy link

It seems there is a USB timeout that might be related to the driver. I recommend reinstalling it from https://dl.espressif.com/dl/esp-idf/

@Bennyggcc
Copy link
Author

It seems there is a USB timeout that might be related to the driver. I recommend reinstalling it from https://dl.espressif.com/dl/esp-idf/

Sorry for the late reply and thanks for your guidance!

Copy link

Thanks for using our extension! 🚀

Your feedback matters! Could you take a moment to rate it on the marketplace? A positive rating helps other developers discover our tools and motivates us to keep improving.

⭐ Rate ESP-IDF Extension: https://marketplace.visualstudio.com/items?itemName=espressif.esp-idf-extension&ssr=false#review-details

Your support means a lot to our development team!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug-report Bug Report from users on Github (don't use this tag manually, its supposed to be used via the issue)
Projects
None yet
Development

No branches or pull requests

3 participants