mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-27 12:20:37 +00:00
23 lines
558 B
TOML
23 lines
558 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "blinky-irq"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
publish = false
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = { version = "0.7" }
|
|
embassy-stm32 = { version = "0.4.0", path = "../../../../embassy-stm32", features = ["stm32l475vg", "memory-x", "unstable-pac"] }
|
|
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.0.0"
|
|
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|
|
|
|
[package.metadata.embassy]
|
|
build = [
|
|
{ target = "thumbv7em-none-eabi" }
|
|
]
|