2023-01-17 17:54:43 +00:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "embassy-stm32c0-examples"
|
|
|
|
version = "0.1.0"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-22 20:58:29 +00:00
|
|
|
# Change stm32c031c6 to your chip name, if necessary.
|
|
|
|
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["nightly", "defmt", "time-driver-any", "stm32c031c6", "memory-x", "unstable-pac", "exti"] }
|
2023-04-13 21:03:21 +00:00
|
|
|
embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["defmt"] }
|
2023-06-09 14:14:13 +00:00
|
|
|
embassy-executor = { version = "0.2.0", path = "../../embassy-executor", features = ["nightly", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
|
2023-07-05 21:54:45 +00:00
|
|
|
embassy-time = { version = "0.1.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
|
2023-01-17 17:54:43 +00:00
|
|
|
|
|
|
|
defmt = "0.3"
|
|
|
|
defmt-rtt = "0.4"
|
|
|
|
|
|
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
embedded-hal = "0.2.6"
|
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
|
|
|
|
heapless = { version = "0.7.5", default-features = false }
|