updated submodules

This commit is contained in:
Robin Müller 2021-12-05 17:55:02 +01:00
parent 0528f13040
commit 9530234686
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
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",

@ -1 +1 @@
Subproject commit d4d5bf66e424e640d1100a15058734e8bf67c29d
Subproject commit 5c00459f238356cc51369956bdd20a760b41c41d

@ -1 +1 @@
Subproject commit 9e8dbb7c6dd15ec53f24a679cae6368470495e7f
Subproject commit 8c6537181ff4e2009ac7be0015c65d8f2e3f8588

@ -1 +1 @@
Subproject commit e59df63baa7b97a5f006b9946a741b594fdee779
Subproject commit 7237b9b4ce7b5eec7e0b773f5d68f7b1d306dbb1