This commit is contained in:
2026-06-04 14:52:37 +02:00
parent e74437a846
commit 78f0bce5dd
6 changed files with 40 additions and 17 deletions

26
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "MAC RTT Streamer",
"type": "shell",
"command": "bash",
"args": [
"-c",
"while true; do nc localhost 19021; sleep 0.2; done"
],
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"runOptions": {
"runOn": "folderOpen"
},
"problemMatcher": []
}
]
}