Files

23 lines
711 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": "trace"
// }
}
]
}