aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-04-22 19:58:24 +0200
committerDario Nieuwenhuis <[email protected]>2022-04-22 19:58:24 +0200
commit3251a21fb7f7d0bcbd4e900274f4917c58ab9c87 (patch)
tree1193acee1e41822b0cbf538f6271ccad35c056aa /tests
parentea0a701ebd142ea42e05e51e844bd53cc9bdf354 (diff)
Switch to crates.io embedded-hal, embedded-hal-async.
This temporarily removes support for the async UART trait, since it's not yet in embedded-hal-async.
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index 9893b0289..260ac223b 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -23,7 +23,8 @@ defmt-rtt = "0.3.0"
23cortex-m = "0.7.3" 23cortex-m = "0.7.3"
24cortex-m-rt = "0.7.0" 24cortex-m-rt = "0.7.0"
25embedded-hal = "0.2.6" 25embedded-hal = "0.2.6"
26embedded-hal-async = { version = "0.0.1", git = "https://github.com/embassy-rs/embedded-hal", branch = "embassy2"} 26embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" }
27embedded-hal-async = { version = "0.1.0-alpha.0" }
27panic-probe = { version = "0.3.0", features = ["print-defmt"] } 28panic-probe = { version = "0.3.0", features = ["print-defmt"] }
28 29
29[profile.dev] 30[profile.dev]