diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-09-27 17:13:39 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-09-27 17:13:39 +0200 |
commit | 3bf32b389dc7cfc85014d91356cfb0ec4cb4df70 (patch) | |
tree | 18a4d7150b55a8ab679c8a2ecc4479689b160293 /.vscode/launch.json | |
parent | f9f1e5bf0bd7e8b0ca0708fb63f4d2c56d47ef49 (diff) |
windows toolchain setup
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e580e37 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,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" + } + ] +}
\ No newline at end of file |