Files
CodeGenerator/.vscode/launch.json

35 lines
1.1 KiB
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "CBB-Param 代码生成",
"type": "debugpy",
"request": "launch",
"program": "source/main.py",
"console": "integratedTerminal",
"args": [
"test/CBB_Param/param_input.xlsx",
"-t=CBB_Param",
"-d=PV_INV30",
]
},
{
"name": "COMM-ARM 代码生成",
"type": "debugpy",
"request": "launch",
"program": "source/main.py",
"console": "integratedTerminal",
"args": [
// "${command:pickArgs}",
"test/PV_Inverter/光伏逆变器2.1_通信地址表_V33.xlsx",
"-t=COMM_ARM",
"-d=PV_INV30"
],
// "preLaunchTask": "deEncrpyt",
// "postDebugTask": "delFile",
}
]
}