blob: ddfe500c6c33cdf799dce32137737a3d9b9bf2e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"version": "0.2.0",
"configurations": [
{
"name": "stm32 debug",
"cwd": "${workspaceFolder}",
"executable": "${workspaceFolder}/stm32f091/main.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "stlink",
"windows": {
"armToolchainPath": "C:/msys64/mingw64/bin",
"stlinkPath": "C:/msys64/mingw64/bin/st-util.exe",
"gdbPath": "C:/msys64/mingw64/bin/gdb-multiarch.exe"
},
}
]
}
|