Browse Source

vscode launch.json add black magic probe debug config

sbg
Daniel Agar 6 years ago
parent
commit
5e058ae290
  1. 21
      .vscode/launch.json

21
.vscode/launch.json vendored

@ -164,6 +164,27 @@ @@ -164,6 +164,27 @@
"showtasks",
]
},
{
"name": "Debug px4_fmu-v2/v3/v4 (blackmagic)",
"device": "STM32F427VI",
"svdFile": "${workspaceRoot}/../cmsis-svd/data/STMicro/STM32F427.svd",
"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",
"showtasks",
]
},
{
"name": "Debug px4_fmu-v4pro (jlink)",
"device": "STM32F469VI",

Loading…
Cancel
Save