3811c0a401
This allows writing drivers relying on async traits, while still functioning with implementations that already implement the embedded-hal traits. Add examples to stm32l4 for using this feature.
14 lines
280 B
TOML
14 lines
280 B
TOML
[package]
|
|
name = "embassy-traits"
|
|
version = "0.1.0"
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
std = []
|
|
|
|
[dependencies]
|
|
defmt = { version = "0.3", optional = true }
|
|
embedded-hal = { version = "0.2.6", features = ["unproven"] }
|
|
nb = "1.0.0"
|