diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-09-29 15:18:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-09-29 15:18:23 +0200 |
commit | ad7ef8a421086b9c7085f6d149b2c555c4e7d635 (patch) | |
tree | 536b873be04df51f911db6e2d8bef048ffc52cb6 /.vscode/launch.json | |
parent | f20e55639c668a99ab61d9be107299f5506a3869 (diff) |
fix build tooling for vscode on linux
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 +} |