Skip to content
Snippets Groups Projects
Commit 854cb4d4 authored by ftomi's avatar ftomi
Browse files

Debug works

parent 3948e842
Branches
No related tags found
No related merge requests found
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceRoot}/minimatrixrpi",
"miDebuggerPath": "c:\\MinGW\\bin\\gdb.exe",
"miDebuggerServerAddress": "192.168.2.212:10000",
"MIMode": "gdb"
},
{ {
"type": "gdb", "type": "gdb",
"request": "attach", "request": "launch",
"name": "Attach to gdbserver", "name": "Launch Program (SSH)",
"executable": "${workspaceRoot}/minimatrixrpi", "target": "./minimatrixrpi",
"target": "192.168.2.212:10000",
"remote": true,
"printCalls": true,
"cwd": "${workspaceRoot}", "cwd": "${workspaceRoot}",
"gdbpath": "c:\\MinGW\\bin\\gdb.exe", "ssh": {
"valuesFormatting": "parseText" "host": "192.168.2.212",
"cwd": "/home/pi/Documents/minimatrixrpi/test_anim/",
"password": "kiskutya",
"user": "pi"
}
//"preLaunchTask": "fetch program"
} }
] ]
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment