embassy/examples/stm32f1/.vscode/tasks.json

21 lines
278 B
JSON
Raw Normal View History

2024-05-28 23:12:08 -04:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"args": [
"--bin",
2024-05-29 00:28:26 -04:00
"pwm_input"
2024-05-28 23:12:08 -04:00
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "Cargo Build (debug)",
}
]
}