mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
46 lines
1.7 KiB
JSON
46 lines
1.7 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "jlink (@PX4_BOARD@)",
|
|
"device": "@DEBUG_DEVICE@",
|
|
"svdFile": "@DEBUG_SVD_FILE_PATH@",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
"request": "launch",
|
|
"type": "cortex-debug",
|
|
"servertype": "jlink",
|
|
"interface": "swd",
|
|
//"ipAddress": "server:19020",
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"preLaunchCommands": [
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/PX4",
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/NuttX",
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/ARMv7M",
|
|
"set mem inaccessible-by-default off",
|
|
"set print pretty",
|
|
]
|
|
},
|
|
{
|
|
"name": "blackmagic (@PX4_BOARD@)",
|
|
"device": "@DEBUG_DEVICE@",
|
|
"svdFile": "@DEBUG_SVD_FILE_PATH@",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
"request": "launch",
|
|
"type": "cortex-debug",
|
|
"servertype": "bmp",
|
|
"BMPGDBSerialPort": "/dev/ttyACM0",
|
|
"interface": "swd",
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"preLaunchCommands": [
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/PX4",
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/NuttX",
|
|
"source ${workspaceRoot}/platforms/nuttx/Debug/ARMv7M",
|
|
"set mem inaccessible-by-default off",
|
|
"set print pretty",
|
|
]
|
|
}
|
|
]
|
|
}
|