Cleanup stm32f4 examples

* Remove dependency on stm32f4 pac crate
* Remove unused `ZeroClock`
This commit is contained in:
Timo Kröger
2021-07-21 23:12:36 +02:00
parent 40ea8298ee
commit 5e998d1a6c
7 changed files with 101 additions and 170 deletions

View File

@ -19,9 +19,8 @@ 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", "stm32f429zi", "unstable-pac"] }
embassy-extras = {version = "0.1.0", path = "../../embassy-extras" }
stm32f4 = { version = "0.13", features = ["stm32f429"] }
defmt = "0.2.0"
defmt-rtt = "0.2.0"