updated submodules

This commit is contained in:
2021-12-04 21:37:09 +01:00
parent 3afc5cbd86
commit 0528f13040
4 changed files with 29 additions and 2 deletions

14
.vscode/launch.json vendored
View File

@ -116,5 +116,19 @@
"interface": "jtag",
"runToMain": true,
},
{
"type": "cortex-debug",
"request": "launch",
"name": "Debug Button Blinky RTIC",
"servertype": "jlink",
"gdbPath": "/usr/bin/gdb-multiarch",
"cwd": "${workspaceRoot}",
"device": "VA10820",
"svdFile": "./va108xx-rs/svd/va108xx-base.svd.patched",
"preLaunchTask": "rust: cargo build button blinky rtic",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky-button-rtic",
"interface": "jtag",
"runToMain": true,
},
]
}

13
.vscode/tasks.json vendored
View File

@ -114,5 +114,18 @@
"isDefault": true
}
},
{
"label": "rust: cargo build button blinky rtic",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "blinky-button-rtic",
"--features", "rt"
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}