update all submodules
This commit is contained in:
14
.vscode/launch.json
vendored
14
.vscode/launch.json
vendored
@ -7,6 +7,7 @@
|
||||
// GDB application
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"type": "cortex-debug",
|
||||
"request": "launch",
|
||||
@ -176,5 +177,18 @@
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
{
|
||||
"type": "cortex-debug",
|
||||
"request": "launch",
|
||||
"name": "Debug UART IRQ",
|
||||
"servertype": "jlink",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"device": "Cortex-M0",
|
||||
"svdFile": "${workspaceFolder}/va108xx/svd/va108xx-base.svd.patched",
|
||||
"preLaunchTask": "rust: cargo build uart irq",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/uart-irq-rtic",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
]
|
||||
}
|
12
.vscode/tasks.json
vendored
12
.vscode/tasks.json
vendored
@ -101,6 +101,18 @@
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rust: cargo build uart irq",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "va108xx-hal", "--example", "uart-irq-rtic", "--features", "rt"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"label": "rust: cargo build led blinky",
|
||||
|
2
va108xx
2
va108xx
Submodule va108xx updated: 4da8267c9c...f626e33e72
Submodule va108xx-hal updated: de607b1950...e3cdd21b41
Submodule vorago-reb1 updated: 2f503ac3b1...1eb7deeb9f
Reference in New Issue
Block a user