diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index b038059..9c586dc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -34,11 +34,14 @@ "runToEntryPoint": "main", "servertype": "stlink", "preLaunchTask": "stm32/build", + "linux": { + "stlinkPath": "/usr/bin/st-util" + }, "windows": { "armToolchainPath": "C:/msys64/mingw64/bin", "stlinkPath": "C:/msys64/mingw64/bin/st-util.exe", "gdbPath": "C:/msys64/mingw64/bin/gdb-multiarch.exe" - }, + } } ] -}
\ No newline at end of file +} |