Skip to content

Commit

Permalink
Debug log replays with gdb in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilritz authored and dagar committed Dec 15, 2019
1 parent 94e0536 commit 2a707cf
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions platforms/posix/Debug/launch.json.in
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
]
}

0 comments on commit 2a707cf

Please sign in to comment.