Debug log replays with gdb in vscode

This commit is contained in:
kamilritz 2019-12-15 13:33:19 +01:00 committed by Daniel Agar
parent 94e05362e1
commit 2a707cf669
1 changed files with 60 additions and 0 deletions

View File

@ -291,5 +291,65 @@
]
}
},
{
"name": "EKF replay",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [
"${workspaceFolder}/ROMFS/px4fmu_common",
"-s",
"etc/init.d-posix/rcS",
"-t",
"${workspaceFolder}/test_data"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build/px4_sitl_default/tmp",
"environment": [
{
"name": "replay",
"value": "${input:setReplayLog}"
},
{
"name": "replay_mode",
"value": "ekf2"
}
],
"externalConsole": false,
"preLaunchTask": "gazebo iris",
"postDebugTask": "gazebo kill",
"linux": {
"MIMode": "gdb",
"externalConsole": false,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "PX4 ignore wq signals",
"text": "handle SIGCONT nostop noprint nopass",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb",
"externalConsole": true,
"setupCommands": [
{
"text": "pro hand -p true -s false -n false SIGCONT",
}
]
}
},
],
"inputs": [
{
"type": "promptString",
"id": "setReplayLog",
"description": "Input the path to ulog file",
}
]
}