updated launch files and submodules
This commit is contained in:
34
.vscode/launch.json
vendored
34
.vscode/launch.json
vendored
@ -14,7 +14,7 @@
|
||||
"device": "VA10820",
|
||||
"svdFile": "./va108xx-rs/svd/va108xx-base.svd.patched",
|
||||
"preLaunchTask": "rust: cargo build pac blinky",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky_pac",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky-pac",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
@ -28,7 +28,7 @@
|
||||
"device": "VA10820",
|
||||
"svdFile": "./va108xx-rs/svd/va108xx-base.svd.patched",
|
||||
"preLaunchTask": "rust: cargo build hal blinky",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky_hal",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky-hal",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
@ -56,7 +56,35 @@
|
||||
"device": "VA10820",
|
||||
"svdFile": "./va108xx-rs/svd/va108xx-base.svd.patched",
|
||||
"preLaunchTask": "rust: cargo build rtt",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/rtt_log",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/rtt-log",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
{
|
||||
"type": "cortex-debug",
|
||||
"request": "launch",
|
||||
"name": "Debug Blinky Button IRQ",
|
||||
"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",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/blinky-button-irq",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
{
|
||||
"type": "cortex-debug",
|
||||
"request": "launch",
|
||||
"name": "Debug Timer MS Ticks",
|
||||
"servertype": "jlink",
|
||||
"gdbPath": "/usr/bin/gdb-multiarch",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"device": "VA10820",
|
||||
"svdFile": "./va108xx-rs/svd/va108xx-base.svd.patched",
|
||||
"preLaunchTask": "rust: cargo build systick",
|
||||
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/timer-ticks-pac",
|
||||
"interface": "jtag",
|
||||
"runToMain": true,
|
||||
},
|
||||
|
30
.vscode/tasks.json
vendored
30
.vscode/tasks.json
vendored
@ -20,7 +20,7 @@
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky_pac",
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky-pac",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
@ -32,7 +32,7 @@
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky_hal",
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky-hal",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
@ -56,7 +56,31 @@
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "rtt_log",
|
||||
"build", "-p", "vorago-reb1", "--example", "rtt-log",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rust: cargo build button blinky",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "blinky-button-irq",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rust: cargo build systick",
|
||||
"type": "shell",
|
||||
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
|
||||
"args": [
|
||||
"build", "-p", "vorago-reb1", "--example", "timer-ticks-pac",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
|
Submodule va108xx-hal-rs updated: 6c79b15edb...fd0def7212
Submodule vorago-reb1-rs updated: 0fee30f02a...c064788861
Reference in New Issue
Block a user