Files
LightSabre/.vscode/launch.json
T
2025-05-26 17:32:36 +00:00

23 lines
702 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Remote executable 'lightsabre_backend'",
"preLaunchTask": "rust: remote Rpi debug setup",
"targetCreateCommands": [
"target create ${workspaceFolder}/target/armv7-unknown-linux-gnueabihf/debug/lightsabre_backend"
],
"processCreateCommands": [
"gdb-remote raspberrypi.local:17777"
],
"env": {
"RUST_LOG": "debug"
}
}
]
}