Files
stm32g474_dac_dma_demo/.vscode/tasks.json
2023-12-11 19:14:15 +01:00

23 lines
329 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "nucleo-g474re",
"command": "C:/MyApps/mingw64/bin/make.exe",
"args": [
"-j"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}