20 lines
838 B
TOML
20 lines
838 B
TOML
[package]
|
|
name = "embassy-NUCLEO-L476RG-blinky"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7"
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.3"
|
|
# potentially use executor-interrupt instead of executor-thread for cortex-m architectures
|
|
embassy-executor = { version = "0.3", features = ["defmt", "integrated-timers", "arch-cortex-m", "executor-thread", "nightly"] }
|
|
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", features = ["defmt", "exti", "time", "time-driver-tim2", "stm32l476rg", "nightly"] }
|
|
embassy-sync = { version = "0.3", features = ["nightly"] }
|
|
embassy-time = { version = "0.1.3", features = ["defmt", "nightly"] }
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
[profile.release]
|
|
debug = true
|
|
opt-level = "z"
|