2024-09-11 20:44:10 +02:00
|
|
|
[package]
|
2024-09-16 18:05:11 +02:00
|
|
|
name = "embassy-example"
|
2024-09-11 20:44:10 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
|
|
cortex-m-rt = "0.7"
|
|
|
|
embedded-hal = "1"
|
2024-09-17 18:01:09 +02:00
|
|
|
|
2024-09-11 20:44:10 +02:00
|
|
|
rtt-target = { version = "0.5" }
|
|
|
|
panic-rtt-target = { version = "0.1" }
|
2024-09-16 07:49:09 +02:00
|
|
|
critical-section = "1"
|
2024-09-11 20:44:10 +02:00
|
|
|
|
|
|
|
embassy-sync = { version = "0.6.0" }
|
2024-09-17 18:01:09 +02:00
|
|
|
embassy-time = { version = "0.3.2", features = ["tick-hz-1"] }
|
2024-09-16 07:49:09 +02:00
|
|
|
embassy-time-driver = { version = "0.1" }
|
2024-09-11 20:44:10 +02:00
|
|
|
|
2024-09-17 18:01:09 +02:00
|
|
|
[dependencies.once_cell]
|
|
|
|
version = "1"
|
|
|
|
default-features = false
|
|
|
|
features = ["critical-section"]
|
|
|
|
|
2024-09-11 20:44:10 +02:00
|
|
|
[dependencies.embassy-executor]
|
|
|
|
version = "0.6.0"
|
2024-09-16 18:05:11 +02:00
|
|
|
features = [
|
|
|
|
"arch-cortex-m",
|
|
|
|
"executor-thread",
|
|
|
|
"executor-interrupt",
|
|
|
|
"integrated-timers",
|
|
|
|
]
|
2024-09-11 20:44:10 +02:00
|
|
|
|
|
|
|
[dependencies.va416xx-hal]
|
|
|
|
path = "../../va416xx-hal"
|
|
|
|
features = ["va41630"]
|