Move workspace stuff

This commit is contained in:
hodasemi 2022-12-27 09:44:53 +01:00
parent 4e4097d8e2
commit ec2649ea0f
5 changed files with 18 additions and 40 deletions

View file

@ -20,7 +20,7 @@
}
},
"args": [],
"cwd": "${workspaceFolder}"
"cwd": "${workspaceFolder}/rust/serial_reader"
}
]
}

17
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "Pico: cargo run",
"options": {
"cwd": "rust/pico"
}
},
]
}

View file

@ -1,9 +0,0 @@
{
"rust-analyzer.cargo.target": "thumbv6m-none-eabi",
"rust-analyzer.checkOnSave.allTargets": false,
"workbench.colorCustomizations": {
"activityBar.background": "#43261A",
"titleBar.activeBackground": "#5E3524",
"titleBar.activeForeground": "#FCF9F8"
}
}

View file

@ -1,23 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo run"
}
]
}

View file

@ -1,7 +0,0 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#083144",
"titleBar.activeBackground": "#0B4560",
"titleBar.activeForeground": "#F5FBFE"
}
}