-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
47 lines (47 loc) · 1.52 KB
/
launch.vs.json
File metadata and controls
47 lines (47 loc) · 1.52 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"version": "0.2.1",
"configurations": [
{
"project": "CMakeLists.txt",
"projectTarget": "STM32F756.elf (tests\\STM32F756\\STM32F756.elf)",
"name": "Launch (tests\\STM32F756\\STM32F756.elf)",
"type": "cppdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${debugInfo.fullTargetPath}",
"MIMode": "gdb",
"miDebuggerPath": "C:\\MSYS64\\ucrt64\\bin\\gdb-multiarch.exe",
"miDebuggerServerAddress": "localhost:3333",
"debugServerPath": "C:\\MSYS64\\ucrt64\\bin\\openocd.exe",
"debugServerArgs": "-f board/st_nucleo_f7.cfg -c \u0022$_TARGETNAME configure -rtos auto\u0022",
"serverStarted": "Listening on port .* for gdb connections",
"filterStderr": true,
"stopAtConnect": false,
"hardwareBreakpoints": {
"require": true,
"limit": 6
},
"postRemoteConnectCommands": [
{
"text": "-target-download",
"ignoreFailures": false
},
{
"text": "-interpreter-exec console \u0022monitor reset halt\u0022",
"ignoreFailures": false
},
{
"text": "-interpreter-exec console \u0022monitor arm semihosting enable\u0022",
"ignoreFailures": false
}
],
"svdPath": "${workspaceRoot}/STM32F756.svd"
},
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "STM32F756.elf (tests\\STM32F756\\STM32F756.elf)",
"name": "STM32F756.elf (tests\\STM32F756\\STM32F756.elf)"
}
]
}