mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
c79485c286
* Add RCC * Fix more issues with dash in chip names * Update stm32-data version * Add blinky and spi example
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>", "Ulf Lilleengen <ulf.lilleengen@gmail.com>"]
|
|
edition = "2018"
|
|
name = "embassy-stm32l1-examples"
|
|
version = "0.1.0"
|
|
resolver = "2"
|
|
|
|
[features]
|
|
default = [
|
|
"defmt-default",
|
|
]
|
|
defmt-default = []
|
|
defmt-trace = []
|
|
defmt-debug = []
|
|
defmt-info = []
|
|
defmt-warn = []
|
|
defmt-error = []
|
|
|
|
[dependencies]
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] }
|
|
embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] }
|
|
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "defmt-trace", "stm32l151cb-a", "time-driver-tim2", "memory-x"] }
|
|
embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" }
|
|
embassy-macros = { path = "../../embassy-macros" }
|
|
|
|
defmt = "0.2.3"
|
|
defmt-rtt = "0.2.0"
|
|
|
|
cortex-m = "0.7.3"
|
|
cortex-m-rt = "0.7.0"
|
|
embedded-hal = "0.2.6"
|
|
panic-probe = { version = "0.2.0", features = ["print-defmt"] }
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
|
|
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
|
|
heapless = { version = "0.7.5", default-features = false }
|