You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
6 years ago
|
{
|
||
|
"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",
|
||
|
"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",
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|