mirror of
https://github.com/peter-tanner/tinyusb-cdc-stm32f302c8-stm32-hal-minimal.git
synced 2024-11-30 17:10:15 +08:00
26 lines
833 B
JSON
26 lines
833 B
JSON
|
{
|
||
|
"version": "0.2.1",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"project": "CMakeLists.txt",
|
||
|
"projectTarget": "tinyusb-stm32f302c8.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/tinyusb-stm32f302c8.elf"
|
||
|
}
|
||
|
],
|
||
|
"svdPath": "${st.svd}/STM32F302.svd" }
|
||
|
]
|
||
|
}
|