Move workspace stuff
This commit is contained in:
parent
4e4097d8e2
commit
ec2649ea0f
5 changed files with 18 additions and 40 deletions
|
@ -20,7 +20,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"args": [],
|
"args": [],
|
||||||
"cwd": "${workspaceFolder}"
|
"cwd": "${workspaceFolder}/rust/serial_reader"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
17
.vscode/tasks.json
vendored
Normal file
17
.vscode/tasks.json
vendored
Normal 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"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
9
rust/pico/.vscode/settings.json
vendored
9
rust/pico/.vscode/settings.json
vendored
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
23
rust/pico/.vscode/tasks.json
vendored
23
rust/pico/.vscode/tasks.json
vendored
|
@ -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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
7
rust/serial_reader/.vscode/settings.json
vendored
7
rust/serial_reader/.vscode/settings.json
vendored
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"workbench.colorCustomizations": {
|
|
||||||
"activityBar.background": "#083144",
|
|
||||||
"titleBar.activeBackground": "#0B4560",
|
|
||||||
"titleBar.activeForeground": "#F5FBFE"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue