aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorHenrik Alsér <[email protected]>2022-05-26 18:54:58 +0200
committerGitHub <[email protected]>2022-05-26 18:54:58 +0200
commite10fc2bada1c59420431f09a35f7aa09a5b45623 (patch)
tree4b05a177db2a3e86c86058714d9a4ed014aea486 /.vscode
parent36a1f203648dcb402727ea3eb5d30cf1f6993795 (diff)
Async shared bus for SPI & I2C + rename embassy-traits (#769)
* Rename embassy-traits to embassy-embedded-hal * Rename embassy-traits to embassy-embedded-hal * Add shared bus for SPI and I2C * rustfmt * EHA alpha 1 * Rename embedded-traits in examples * rustfmt * rustfmt Co-authored-by: Henrik Alsér <[email protected]>
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 79433a7c9..5ce8e4e7d 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,15 +1,11 @@
1{ 1{
2 "editor.formatOnSave": true, 2 "editor.formatOnSave": true,
3 "rust-analyzer.assist.importEnforceGranularity": true,
4 "rust-analyzer.assist.importGranularity": "module",
5 "rust-analyzer.checkOnSave.allFeatures": false, 3 "rust-analyzer.checkOnSave.allFeatures": false,
6 "rust-analyzer.checkOnSave.allTargets": false, 4 "rust-analyzer.checkOnSave.allTargets": false,
7 "rust-analyzer.checkOnSave.noDefaultFeatures": true, 5 "rust-analyzer.checkOnSave.noDefaultFeatures": true,
8 "rust-analyzer.cargo.allFeatures": false, 6 "rust-analyzer.cargo.allFeatures": false,
9 "rust-analyzer.cargo.noDefaultFeatures": true, 7 "rust-analyzer.cargo.noDefaultFeatures": true,
10 "rust-analyzer.experimental.procAttrMacros": false,
11 "rust-analyzer.procMacro.enable": true, 8 "rust-analyzer.procMacro.enable": true,
12 "rust-analyzer.cargo.runBuildScripts": true,
13 "rust-analyzer.cargo.target": "thumbv7em-none-eabi", 9 "rust-analyzer.cargo.target": "thumbv7em-none-eabi",
14 "rust-analyzer.cargo.features": [ 10 "rust-analyzer.cargo.features": [
15 // These are needed to prevent embassy-net from failing to build 11 // These are needed to prevent embassy-net from failing to build
@@ -38,4 +34,8 @@
38 // "examples/stm32wl55/Cargo.toml", 34 // "examples/stm32wl55/Cargo.toml",
39 // "examples/wasm/Cargo.toml", 35 // "examples/wasm/Cargo.toml",
40 ], 36 ],
37 "rust-analyzer.imports.granularity.enforce": true,
38 "rust-analyzer.imports.granularity.group": "module",
39 "rust-analyzer.cargo.buildScripts.enable": true,
40 "rust-analyzer.procMacro.attributes.enable": false,
41} \ No newline at end of file 41} \ No newline at end of file