2024-09-18 15:07:29 +02:00
|
|
|
[package]
|
|
|
|
name = "rtic-example"
|
|
|
|
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"
|
|
|
|
embedded-io = "0.6"
|
2025-02-08 18:09:40 +01:00
|
|
|
rtt-target = "0.6"
|
|
|
|
panic-rtt-target = "0.2"
|
2024-09-20 11:58:41 +02:00
|
|
|
|
2024-09-18 15:07:29 +02:00
|
|
|
# Even though we do not use this directly, we need to activate this feature explicitely
|
|
|
|
# so that RTIC compiles because thumv6 does not have CAS operations natively.
|
|
|
|
portable-atomic = { version = "1", features = ["unsafe-assume-single-core"]}
|
|
|
|
|
2025-02-08 18:09:40 +01:00
|
|
|
rtic = { version = "2", features = ["thumbv6-backend"] }
|
|
|
|
rtic-monotonics = { version = "2", features = ["cortex-m-systick"] }
|
|
|
|
rtic-sync = { version = "1.3", features = ["defmt-03"] }
|
2024-09-18 15:07:29 +02:00
|
|
|
|
2025-02-08 18:09:40 +01:00
|
|
|
once_cell = {version = "1", default-features = false, features = ["critical-section"]}
|
|
|
|
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
|
2024-09-18 15:07:29 +02:00
|
|
|
|
2025-02-11 10:18:32 +01:00
|
|
|
va108xx-hal = { version = "0.8", path = "../../va108xx-hal" }
|
2025-02-08 18:09:40 +01:00
|
|
|
vorago-reb1 = { path = "../../vorago-reb1" }
|