update package
All checks were successful
Rust/va108xx-rs/pipeline/pr-main This commit looks good

- Add embassy example
- improve timer API
- restructure examples
This commit is contained in:
2024-09-18 15:07:29 +02:00
parent 405cc089c3
commit 4bf50bfa88
27 changed files with 787 additions and 184 deletions

View File

@ -20,7 +20,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -44,7 +44,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -68,7 +68,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -92,7 +92,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -116,7 +116,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -129,7 +129,7 @@
{
"type": "cortex-debug",
"request": "launch",
"name": "Debug UART",
"name": "UART Example",
"servertype": "jlink",
"cwd": "${workspaceRoot}",
"device": "Cortex-M0",
@ -140,7 +140,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -164,7 +164,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -188,7 +188,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -212,7 +212,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -236,7 +236,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -284,7 +284,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -321,7 +321,7 @@
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
@ -340,12 +340,60 @@
"device": "Cortex-M0",
"svdFile": "./va108xx/svd/va108xx.svd.patched",
"preLaunchTask": "rust: cargo build uart irq",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/examples/uart-irq-rtic",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/uart-rtic",
"interface": "jtag",
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "0x10000000",
"address": "auto",
"decoders": [
{
"port": 0,
"timestamp": true,
"type": "console"
}
]
}
},
{
"type": "cortex-debug",
"request": "launch",
"name": "RTIC Example",
"servertype": "jlink",
"cwd": "${workspaceRoot}",
"device": "Cortex-M0",
"svdFile": "./va108xx/svd/va108xx.svd.patched",
"preLaunchTask": "rtic-example",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/rtic-example",
"interface": "jtag",
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "auto",
"decoders": [
{
"port": 0,
"timestamp": true,
"type": "console"
}
]
}
},
{
"type": "cortex-debug",
"request": "launch",
"name": "Embassy Example",
"servertype": "jlink",
"cwd": "${workspaceRoot}",
"device": "Cortex-M0",
"svdFile": "./va108xx/svd/va108xx.svd.patched",
"preLaunchTask": "embassy-example",
"executable": "${workspaceFolder}/target/thumbv6m-none-eabi/debug/embassy-example",
"interface": "jtag",
"runToEntryPoint": "main",
"rttConfig": {
"enabled": true,
"address": "auto",
"decoders": [
{
"port": 0,

View File

@ -67,8 +67,6 @@
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"-p",
"va108xx-hal",
"--example",
"uart",
],
@ -129,10 +127,8 @@
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--example",
"uart-irq-rtic",
"--features",
"rt"
"--bin",
"uart-rtic",
],
"group": {
"kind": "build",
@ -248,5 +244,25 @@
"isDefault": true
}
},
{
"label": "rtic-example",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"rtic-example",
],
},
{
"label": "embassy-example",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"--bin",
"embassy-example",
],
},
]
}