rtic/.vscode/launch.json
2020-11-25 22:56:58 +01:00

20 lines
No EOL
712 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "cortex-debug",
"request": "launch",
"name": "Debug (QEMU)",
"servertype": "qemu",
"cwd": "${workspaceRoot}",
"preLaunchTask": "cargo build --examples",
"runToMain": true,
"executable": "./target/thumbv7m-none-eabi/debug/examples/${fileBasenameNoExtension}",
"cpu": "cortex-m3",
"machine": "lm3s6965evb",
},
]
}