-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Error on xtensa-esp32s3-espidf #102
Comments
This particular error looks like what happens if you set Other than that, even if you manage to resolve this particular error, our esp-idf support isn't really done (we don't correctly reset Xtensa ESP32s currently) so you might run into other issues. |
This is my launch.json. {
"version": "0.24.0",
"configurations": [
{
"type": "probe-rs-debug",
"request": "launch",
"name": "Launch",
"cwd": "C:\\prova-debug4",
"chip": "esp32s3", //!MODIFY
"flashingConfig": {
"flashingEnabled": true,
},
"coreConfigs": [
{
"coreIndex": 0,
"programBinary": "C:\\S3WifiCD\\xtensa-esp32s3-espidf\\debug", //!MODIFY
}
]
},
{
"type": "probe-rs-debug",
"request": "attach",
"name": "Attach",
"cwd": "C:\\prova-debug4",
"chip": "esp32s3", //!MODIFY
"coreConfigs": [
{
"coreIndex": 0,
"programBinary": "C:\\S3WifiCD\\xtensa-esp32s3-espidf\\debug", //!MODIFY
}
]
}
]
} I don't set any server and I removed the lines for the reset but I still have the same problems. |
Okay thank you. I'm not sure what's going on, maybe @noppej knows how we can get an ECONNREFUSED for a partially supported target 🤔 Also, while this is irrelevant to your issue, |
To be sure that I set up the debug environment correctly, I explain all the steps.
I have a doubt, Do I need to have cmake installed in my pc to use probe-rs? |
Hi,
I am currently working on a project for esp32 in Rust.
I followed the instructions of https://docs.esp-rs.org/book/tooling/debugging/probe-rs.html.
So I did cargo install probe-rs-tools on cmd and I downloaded probe-rs extention for vscode and I added probe-rs.exe as debugger in the extention settings.
I downloaded the esp-idf-template and I added the launch.json file.
But when I launch the debug I get this:
Can anyone help me?
Could it be a problem that I didn't set up the cmake extention?
Thanks
The text was updated successfully, but these errors were encountered: