{ "version": "0.2.0", "configurations": [ { "name": "[SNOOPerToCSV]构建并调试", "type": "cppdbg", "request": "launch", "preLaunchTask": "project_debug_build_task", // 预构建脚本 "program": "${workspaceFolder}\\Build\\Debug\\SNOOPerToCSV.exe", // 调试目标 "args": [ // 附加参数 "-f", "GetAdcRaw", "int16_t", "-f", "1", "float", ".\\Test\\Lauterbach-SNOOPer.txt", "-t", "1.234", ], "stopAtEntry": false, "cwd": "${workspaceFolder}", // 工作目录 "environment": [], "externalConsole": false, } ] }