Initial H7 sdmmc support

This commit is contained in:
Thales Fragoso
2021-05-01 21:19:14 -03:00
parent 180ca48d34
commit 0b607ca80a
375 changed files with 283257 additions and 2 deletions

13
.vscode/settings.json vendored
View File

@ -1,3 +1,16 @@
{
"editor.formatOnSave": true,
"rust-analyzer.cargo.allFeatures": false,
"rust-analyzer.checkOnSave.allFeatures": false,
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.cargo.target": "thumbv7em-none-eabihf",
"rust-analyzer.checkOnSave.target": "thumbv7em-none-eabihf",
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.cargo.loadOutDirsFromCheck": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/target/**": true,
"**/embassy-stm32/src/chip/**": true,
}
}