embassy/examples/stm32f1/.vscode/tasks.json
2024-05-29 00:28:26 -04:00

21 lines
No EOL
278 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"args": [
"--bin",
"pwm_input"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "Cargo Build (debug)",
}
]
}