1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
"version": "0.2.1",
"configurations": [
{
"project": "CMakeLists.txt",
"projectTarget": "plinkyblack.elf",
"name": "Launch",
"type": "cppdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${debugInfo.fullTargetPath}",
"MIMode": "gdb",
"miDebuggerPath": "${st.gdb}",
"miDebuggerServerAddress": "localhost:3333",
"debugServerPath": "${st.gdbserver}",
"debugServerArgs": "--stm32cubeprogrammer-path ${st.cubeprogrammer} --swd --port-number 3333",
"serverStarted": "Waiting for connection on port .*\\.\\.\\.",
"stopAtConnect": true,
"postRemoteConnectCommands": [
{
"text": "load build/debug/build/plinkyblack.elf"
}
],
"svdPath": "${st.svd}/STM32L476.svd" }
]
}
|