-
Notifications
You must be signed in to change notification settings - Fork 319
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
Comments
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 Any thoughts @erhankur ? |
Logs will be useful to understand what is going on. As an addition; @Bennyggcc
|
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! |
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! |
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
The text was updated successfully, but these errors were encountered: