{ // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "cwd": "${workspaceRoot}", "executable": "${workspaceFolder}/build/Debug/DevC.elf", "name": "Debug_OpenOCD", "request": "launch", "type": "cortex-debug", "servertype": "openocd", "configFiles": [ "interface/stlink.cfg", "target/stm32f4x.cfg" ], "searchDir": [], "runToEntryPoint": "main", "showDevDebugOutput": "raw", "preLaunchTask": "OpenOCD_debug", "svdFile": "./STM32F407.svd", "liveWatch": { "enabled": true, "samplesPerSecond": 4 } }, { "cwd": "${workspaceRoot}", "executable": "${workspaceFolder}/build/Debug/DevC.elf", "name": "Debug_OpenOCD_dap", "request": "launch", "type": "cortex-debug", "servertype": "openocd", "configFiles": [ "interface/cmsis-dap.cfg", "target/stm32f4x.cfg" ], "searchDir": [], "runToEntryPoint": "main", "showDevDebugOutput": "raw", "preLaunchTask": "OpenOCD_debug_dap", "svdFile": "./STM32F407.svd", "liveWatch": { "enabled": true, "samplesPerSecond": 4 } } ] }