Fixed invalid terminal symbol in expect script
This commit is contained in:
60
motor-control/firmware/.vscode/tasks.json
vendored
60
motor-control/firmware/.vscode/tasks.json
vendored
@@ -102,6 +102,64 @@
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Pico Remote: Launch OpenOCD",
|
||||
"command": [
|
||||
"scripts/remote/run_openocd.exp",
|
||||
"gobot-rpi",
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": true,
|
||||
"panel": "dedicated",
|
||||
"showReuseMessage": true,
|
||||
"clear": true
|
||||
},
|
||||
"isBackground": true
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Pico Remote: flash main",
|
||||
"command": [
|
||||
"scripts/remote/flash.sh",
|
||||
"${workspaceRoot}/build/bin/main.elf",
|
||||
"gobot-rpi",
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"group": "test",
|
||||
"dependsOn": [
|
||||
"CMake: build main"
|
||||
],
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"focus": true,
|
||||
"panel": "dedicated",
|
||||
"showReuseMessage": true,
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Pico Remote: Reset Device",
|
||||
"command": [
|
||||
"scripts/remote/reset.exp",
|
||||
"gobot-rpi"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"isBackground": true,
|
||||
"problemMatcher": []
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user