diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-09-27 18:10:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-09-27 18:10:23 +0200 |
commit | 7038e12c3e4ee4284495018546a88e98df891a00 (patch) | |
tree | dcab4f5eff18d274ef9a69259950f3e8a4717204 /.vscode/launch.json | |
parent | 3bf32b389dc7cfc85014d91356cfb0ec4cb4df70 (diff) |
move windows-specific vscode config
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index e580e37..ddfe500 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,9 +9,11 @@ "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" + "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 |