97 lines
3.2 KiB
JSON
97 lines
3.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"windows": {
|
|
"options": {
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": ["/d", "/c"]
|
|
}
|
|
}
|
|
},
|
|
"tasks": [
|
|
{
|
|
"type": "cppbuild",
|
|
"label": "Build project",
|
|
"command": "cmake",
|
|
"args": ["--build", "${command:cmake.buildDirectory}", "-j", "8"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": ["$gcc"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "Re-build project",
|
|
"command": "cmake",
|
|
"args": ["--build", "${command:cmake.buildDirectory}", "--clean-first", "-v", "-j", "8"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": ["$gcc"]
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "Clean project",
|
|
"command": "cmake",
|
|
"args": ["--build", "${command:cmake.buildDirectory}", "--target", "clean"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "CubeProg: Flash project (SWD)",
|
|
"command": "STM32_Programmer_CLI",
|
|
"args": [
|
|
"--connect",
|
|
"port=swd",
|
|
"--download",
|
|
"${command:cmake.launchTargetPath}",
|
|
// Let CMake extension decide executable: "${command:cmake.launchTargetPath}",
|
|
"-hardRst", // Hardware reset - if rst pin is connected
|
|
"-rst", // Software reset (backup)
|
|
"--start" // Start execution
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "CubeProg: Flash project with defined serial number (SWD) - you must set serial number first",
|
|
"command": "STM32_Programmer_CLI",
|
|
"args": [
|
|
"--connect",
|
|
"port=swd",
|
|
"sn=<yourserialnumber>",
|
|
"--download",
|
|
"${command:cmake.launchTargetPath}",
|
|
// Let CMake extension decide executable: "${command:cmake.launchTargetPath}",
|
|
"-hardRst", // Hardware reset - if rst pin is connected
|
|
"-rst", // Software reset (backup)
|
|
"--start" // Start execution
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"label": "CubeProg: List all available communication interfaces",
|
|
"command": "STM32_Programmer_CLI",
|
|
"args": ["--list"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|