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