diff options
| author | Steven Noreyko <1909661+okyeron@users.noreply.github.com> | 2024-02-19 15:21:50 -0600 |
|---|---|---|
| committer | Steven Noreyko <1909661+okyeron@users.noreply.github.com> | 2024-02-19 15:21:50 -0600 |
| commit | f9cd2526fc5878c52e290a8dc0bb9260c5bd797a (patch) | |
| tree | 026bd0b610003f41b08f1fbb2ed695e123221c2a /sw/.vs/launch.vs.json | |
| parent | e0f9b6b4643a5fdae742137bd2c83b5ca10a64de (diff) | |
| download | plinky-f9cd2526fc5878c52e290a8dc0bb9260c5bd797a.tar.gz | |
add vscode cmake stuff
Diffstat (limited to 'sw/.vs/launch.vs.json')
| -rw-r--r-- | sw/.vs/launch.vs.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sw/.vs/launch.vs.json b/sw/.vs/launch.vs.json new file mode 100644 index 0000000..0a6a616 --- /dev/null +++ b/sw/.vs/launch.vs.json @@ -0,0 +1,26 @@ +{ + "version": "0.2.1", + "configurations": [ + { + "project": "CMakeLists.txt", + "projectTarget": "plinkyblack.elf", + "name": "Launch", + "type": "cppdbg", + "request": "launch", + "cwd": "${workspaceRoot}", + "program": "${debugInfo.fullTargetPath}", + "MIMode": "gdb", + "miDebuggerPath": "${st.gdb}", + "miDebuggerServerAddress": "localhost:3333", + "debugServerPath": "${st.gdbserver}", + "debugServerArgs": "--stm32cubeprogrammer-path ${st.cubeprogrammer} --swd --port-number 3333", + "serverStarted": "Waiting for connection on port .*\\.\\.\\.", + "stopAtConnect": true, + "postRemoteConnectCommands": [ + { + "text": "load build/debug/build/plinkyblack.elf" + } + ], + "svdPath": "${st.svd}/STM32L476.svd" } + ] +}
\ No newline at end of file |
