Files
mkrtos-real/.vscode/tasks.json

26 lines
530 B
JSON
Raw Normal View History

{
"tasks": [
{
"type": "shell",
"label": "download",
"command": "openocd",
"args": [
"-f",
2024-01-19 22:37:13 +08:00
"interface/cmsis-dap.cfg",
"-f",
2024-01-19 22:37:13 +08:00
"target/stm32f1x.cfg",
"-c","init",
"-c","targets;reset halt;wait_halt;poll",
"-c","flash write_image erase unlock build/output/kernel.img 0x08000000",
"-c","flash erase_check 0;reset run; shutdown"
],
"problemMatcher": [
"$gcc"
],
"group": "build",
"dependsOn": "Build"
}
],
"version": "2.0.0"
}