29 lines
907 B
TOML
29 lines
907 B
TOML
[package]
|
|
name = "stm32wl-subghz-examples"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
stm32wl-subghz = { path = "../.." }
|
|
|
|
embassy-stm32 = { version = "0.5.0", features = ["defmt", "stm32wle5jc", "time-driver-tim1", "memory-x", "unstable-pac", "exti", "chrono"] }
|
|
embassy-sync = { version = "0.7.2", features = ["defmt"] }
|
|
embassy-executor = { version = "0.9.0", features = ["arch-cortex-m", "executor-thread", "defmt"] }
|
|
embassy-time = { version = "0.5.0", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
|
|
embassy-embedded-hal = "0.5.0"
|
|
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.1.0"
|
|
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.0"
|
|
embedded-hal = "1.0.0"
|
|
embedded-hal-async = "1.0.0"
|
|
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
opt-level = 3
|