diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-08-16 00:40:56 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-16 00:40:56 +0200 |
| commit | f26dd54f6378be87a71f0c9f351b56851df96014 (patch) | |
| tree | 6fbaea24c44d4fbbe01b08a0d87b9d8e49a4ad5a /tests | |
| parent | ffe96889525105ac37cb74add67ac73f148726f6 (diff) | |
Update embedded-hal to 1.0.0-rc.1 (#1783)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/nrf/Cargo.toml | 3 | ||||
| -rw-r--r-- | tests/nrf/src/bin/wifi_esp_hosted_perf.rs | 2 | ||||
| -rw-r--r-- | tests/rp/Cargo.toml | 4 | ||||
| -rw-r--r-- | tests/stm32/Cargo.toml | 4 |
4 files changed, 7 insertions, 6 deletions
diff --git a/tests/nrf/Cargo.toml b/tests/nrf/Cargo.toml index 974a9413f..e2dab81af 100644 --- a/tests/nrf/Cargo.toml +++ b/tests/nrf/Cargo.toml | |||
| @@ -15,7 +15,8 @@ embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defm | |||
| 15 | embedded-io-async = { version = "0.5.0" } | 15 | embedded-io-async = { version = "0.5.0" } |
| 16 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "nightly"] } | 16 | embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "nightly"] } |
| 17 | embassy-net-esp-hosted = { version = "0.1.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] } | 17 | embassy-net-esp-hosted = { version = "0.1.0", path = "../../embassy-net-esp-hosted", features = ["defmt"] } |
| 18 | embedded-hal-async = { version = "0.2.0-alpha.2" } | 18 | embedded-hal-async = { version = "1.0.0-rc.1" } |
| 19 | embedded-hal-bus = { version = "0.1.0-rc.1", features = ["async"] } | ||
| 19 | static_cell = { version = "1.1", features = [ "nightly" ] } | 20 | static_cell = { version = "1.1", features = [ "nightly" ] } |
| 20 | 21 | ||
| 21 | defmt = "0.3" | 22 | defmt = "0.3" |
diff --git a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs index e2adfe0be..16055fae8 100644 --- a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs +++ b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs | |||
| @@ -15,7 +15,7 @@ use embassy_nrf::rng::Rng; | |||
| 15 | use embassy_nrf::spim::{self, Spim}; | 15 | use embassy_nrf::spim::{self, Spim}; |
| 16 | use embassy_nrf::{bind_interrupts, peripherals}; | 16 | use embassy_nrf::{bind_interrupts, peripherals}; |
| 17 | use embassy_time::{with_timeout, Delay, Duration, Timer}; | 17 | use embassy_time::{with_timeout, Delay, Duration, Timer}; |
| 18 | use embedded_hal_async::spi::ExclusiveDevice; | 18 | use embedded_hal_bus::spi::ExclusiveDevice; |
| 19 | use static_cell::make_static; | 19 | use static_cell::make_static; |
| 20 | use {defmt_rtt as _, embassy_net_esp_hosted as hosted, panic_probe as _}; | 20 | use {defmt_rtt as _, embassy_net_esp_hosted as hosted, panic_probe as _}; |
| 21 | 21 | ||
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml index 90a3bd0cf..c69bf7a88 100644 --- a/tests/rp/Cargo.toml +++ b/tests/rp/Cargo.toml | |||
| @@ -22,8 +22,8 @@ defmt-rtt = "0.4" | |||
| 22 | cortex-m = { version = "0.7.6" } | 22 | cortex-m = { version = "0.7.6" } |
| 23 | cortex-m-rt = "0.7.0" | 23 | cortex-m-rt = "0.7.0" |
| 24 | embedded-hal = "0.2.6" | 24 | embedded-hal = "0.2.6" |
| 25 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" } | 25 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.1" } |
| 26 | embedded-hal-async = { version = "=0.2.0-alpha.2" } | 26 | embedded-hal-async = { version = "=1.0.0-rc.1" } |
| 27 | panic-probe = { version = "0.3.0", features = ["print-defmt"] } | 27 | panic-probe = { version = "0.3.0", features = ["print-defmt"] } |
| 28 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 28 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 29 | embedded-io-async = { version = "0.5.0" } | 29 | embedded-io-async = { version = "0.5.0" } |
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml index 17320649e..e26388976 100644 --- a/tests/stm32/Cargo.toml +++ b/tests/stm32/Cargo.toml | |||
| @@ -41,8 +41,8 @@ defmt-rtt = "0.4" | |||
| 41 | cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } | 41 | cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } |
| 42 | cortex-m-rt = "0.7.0" | 42 | cortex-m-rt = "0.7.0" |
| 43 | embedded-hal = "0.2.6" | 43 | embedded-hal = "0.2.6" |
| 44 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" } | 44 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.1" } |
| 45 | embedded-hal-async = { version = "=0.2.0-alpha.2" } | 45 | embedded-hal-async = { version = "=1.0.0-rc.1" } |
| 46 | micromath = "2.0.0" | 46 | micromath = "2.0.0" |
| 47 | panic-probe = { version = "0.3.0", features = ["print-defmt"] } | 47 | panic-probe = { version = "0.3.0", features = ["print-defmt"] } |
| 48 | rand_core = { version = "0.6", default-features = false } | 48 | rand_core = { version = "0.6", default-features = false } |
