Created basic sinus output via postcard rpc.

This commit is contained in:
2025-08-06 18:26:17 +02:00
parent 2d8c6d23fd
commit 0b55cdf8b8
10 changed files with 3384 additions and 29 deletions

50
.vscode/tasks.json vendored
View File

@@ -4,11 +4,13 @@
"version": "2.0.0",
"tasks": [
{
"label": "cargo run",
"label": "cargo run cli",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"run",
"--bin",
"main_cli",
// "--release",
],
"group": {
@@ -17,11 +19,43 @@
}
},
{
"label": "cargo run release",
"label": "cargo run cli release",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"run",
"--bin",
"main_cli",
"--release",
],
"group": {
"kind": "build",
// "isDefault": true
}
},
{
"label": "cargo run gui",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"run",
"--bin",
"main_gui",
// "--release",
],
"group": {
"kind": "build",
// "isDefault": true
}
},
{
"label": "cargo run gui release",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"run",
"--bin",
"main_gui",
"--release",
],
"group": {
@@ -41,12 +75,12 @@
"type": "shell",
"problemMatcher": []
},
{
"label": "cargo rerun",
"dependsOn": ["Terminate All Tasks", "delay", "cargo run"],
"dependsOrder": "sequence",
"group": "build",
}
// {
// "label": "cargo rerun",
// "dependsOn": ["Terminate All Tasks", "delay", "cargo run"],
// "dependsOrder": "sequence",
// "group": "build",
// }
],
"inputs": [
{