Initial swag at h7 examples.
This commit is contained in:
41
examples/stm32h7/Cargo.toml
Normal file
41
examples/stm32h7/Cargo.toml
Normal file
@ -0,0 +1,41 @@
|
||||
[package]
|
||||
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
||||
edition = "2018"
|
||||
name = "embassy-stm32h4-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", "stm32h743zi"] }
|
||||
embassy-extras = {version = "0.1.0", path = "../../embassy-extras" }
|
||||
stm32h7 = { version = "0.13", features = ["stm32h743"]}
|
||||
stm32h7xx-hal = { version = "0.9.0", features = ["stm32h743"] }
|
||||
#stm32l4 = { version = "0.13", features = ["stm32l4x5" ] }
|
||||
#stm32l4xx-hal = { version = "0.6.0", features = ["stm32l4x5"] }
|
||||
|
||||
defmt = "0.2.0"
|
||||
defmt-rtt = "0.2.0"
|
||||
|
||||
cortex-m = "0.7.1"
|
||||
cortex-m-rt = "0.6.14"
|
||||
embedded-hal = { version = "0.2.4" }
|
||||
panic-probe = { version = "0.2.0", features= ["print-defmt"] }
|
||||
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
|
||||
rtt-target = { version = "0.3", features = ["cortex-m"] }
|
||||
heapless = { version = "0.7.1", default-features = false }
|
||||
|
||||
#micromath = "2.0.0"
|
||||
|
Reference in New Issue
Block a user