updated submodules

This commit is contained in:
2021-12-05 17:55:02 +01:00
parent 0528f13040
commit 9530234686
5 changed files with 29 additions and 3 deletions

14
.vscode/launch.json vendored
View File

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

12
.vscode/tasks.json vendored
View File

@ -77,6 +77,18 @@
"isDefault": true
}
},
{
"label": "rust: cargo build pwm",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "va108xx-hal", "--example", "pwm", "--features", "rt"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rust: cargo build led blinky",