flash openocd task
This commit is contained in:
parent
dd2c218f7e
commit
cdd61312bf
28
.vscode/tasks.json
vendored
28
.vscode/tasks.json
vendored
@ -53,6 +53,34 @@
|
|||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "flash",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "openocd",
|
||||||
|
"args": [
|
||||||
|
"-f",
|
||||||
|
"interface/stlink-v2.cfg",
|
||||||
|
"-f",
|
||||||
|
"target/stm32f4x.cfg",
|
||||||
|
"-c",
|
||||||
|
"init",
|
||||||
|
"-c",
|
||||||
|
"reset halt",
|
||||||
|
"-c",
|
||||||
|
"flash write_image erase ${workspaceFolder}/build/stm32.elf",
|
||||||
|
"-c",
|
||||||
|
"reset",
|
||||||
|
"-c",
|
||||||
|
"exit"
|
||||||
|
],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user