2024-09-18 15:07:29 +02:00
|
|
|
VA108xx Example Applications
|
|
|
|
========
|
|
|
|
|
|
|
|
This folder contains various examples
|
|
|
|
Consult the main README first for setup of the repository.
|
|
|
|
|
|
|
|
## Simple examples
|
|
|
|
|
|
|
|
```rs
|
|
|
|
cargo run --example blinky
|
|
|
|
```
|
|
|
|
|
|
|
|
You can have a look at the `simple/examples` folder to see all available simple examples
|
|
|
|
|
|
|
|
## RTIC example
|
|
|
|
|
|
|
|
```rs
|
|
|
|
cargo run --bin rtic-example
|
|
|
|
```
|
|
|
|
|
|
|
|
## Embassy example
|
|
|
|
|
2025-02-08 18:09:40 +01:00
|
|
|
Blinky with time driver IRQs in library
|
|
|
|
|
2024-09-18 15:07:29 +02:00
|
|
|
```rs
|
|
|
|
cargo run --bin embassy-example
|
|
|
|
```
|
2025-02-08 18:09:40 +01:00
|
|
|
|
|
|
|
Blinky with custom time driver IRQs
|
|
|
|
|
|
|
|
```rs
|
|
|
|
cargo run --bin embassy-example --no-default-features --features custom-irqs
|
|
|
|
```
|