Skip to content

Commit a3675d8

Browse files
committed
[vscode] Add GDB debug targets for central system and charge point
1 parent 6ed3976 commit a3675d8

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.vscode/launch.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,28 @@
77
{
88
"type": "gdb",
99
"request": "launch",
10-
"name": "x86 debug",
10+
"name": "x86 CP debug",
1111
"target": "${workspaceRoot}/bin/gcc_native/quick_start_chargepoint",
1212
"cwd": "${workspaceRoot}/bin/gcc_native/",
13-
"arguments": "",
13+
"arguments": "-r",
14+
"valuesFormatting": "parseText"
15+
},
16+
{
17+
"type": "gdb",
18+
"request": "launch",
19+
"name": "x86 CS debug",
20+
"target": "${workspaceRoot}/bin/gcc_native/quick_start_centralsystem",
21+
"cwd": "${workspaceRoot}/bin/gcc_native/",
22+
"arguments": "-r",
1423
"valuesFormatting": "parseText"
1524
},
1625
{
1726
"type": "gdb",
1827
"request": "launch",
1928
"name": "x86 test debug",
20-
"target": "${workspaceRoot}/build_gcc_native/tests/chargepoint/metervalues/test_metervalues",
29+
"target": "${workspaceRoot}/build_gcc_native/tests/chargepoint/smartcharging/test_smartcharging_setpoint",
2130
"cwd": "${workspaceRoot}",
2231
"valuesFormatting": "parseText"
2332
}
2433
]
25-
}
34+
}

0 commit comments

Comments
 (0)