Skip to content

Instantly share code, notes, and snippets.

@bobmcwhirter
Created June 1, 2021 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobmcwhirter/dbbdf27955462c493411f5c7630b4de0 to your computer and use it in GitHub Desktop.
Save bobmcwhirter/dbbdf27955462c493411f5c7630b4de0 to your computer and use it in GitHub Desktop.
[package]
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2018"
name = "embassy-stm32f4-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", "stm32f429zi"] }
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32", features = ["defmt", "defmt-trace", "stm32l4s5vi"] }
embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
#stm32f4 = { version = "0.13", features = ["stm32f429"] }
stm32l4 = { version = "0.13", features = ["stm32l4x5" ] }
stm32l4xx-hal = { path = "/Users/bob/repos/stm32l4xx-hal", features = ["stm32l4x5"]}
defmt = "0.2.0"
defmt-rtt = "0.2.0"
micromath = "2.0.0"
cortex-m = "0.7.1"
cortex-m-rt = "0.6.13"
embedded-hal = { version = "0.2.4" }
panic-probe = "0.1.0"
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }
rand_core = "0.6.2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment