mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-01 19:07:45 +08:00
Debug log replays with gdb in vscode
This commit is contained in:
@@ -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",
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user