Update Embassy.
This commit is contained in:
parent
945449b10f
commit
9218aff498
@ -9,7 +9,8 @@ log = ["dep:log"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
embassy-time = { version = "0.1.0" }
|
embassy-time = { version = "0.1.0" }
|
||||||
embassy-util = { version = "0.1.0" }
|
embassy-sync = { version = "0.1.0" }
|
||||||
|
embassy-futures = { version = "0.1.0" }
|
||||||
embassy-net = { version = "0.1.0" }
|
embassy-net = { version = "0.1.0" }
|
||||||
atomic-polyfill = "0.1.5"
|
atomic-polyfill = "0.1.5"
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@ edition = "2021"
|
|||||||
cyw43 = { path = "../../", features = ["defmt"]}
|
cyw43 = { path = "../../", features = ["defmt"]}
|
||||||
embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
|
embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
|
||||||
embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
|
embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
|
||||||
embassy-util = { version = "0.1.0" }
|
|
||||||
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] }
|
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] }
|
||||||
embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] }
|
embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] }
|
||||||
atomic-polyfill = "0.1.5"
|
atomic-polyfill = "0.1.5"
|
||||||
@ -29,19 +28,12 @@ heapless = "0.7.15"
|
|||||||
|
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" }
|
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" }
|
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
embassy-util = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" }
|
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" }
|
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" }
|
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
#embassy-executor = { path = "/home/dirbaio/embassy/embassy/embassy-executor" }
|
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
|
||||||
#embassy-util = { path = "/home/dirbaio/embassy/embassy/embassy-util" }
|
|
||||||
#embassy-rp = { path = "/home/dirbaio/embassy/embassy/embassy-rp" }
|
|
||||||
#embassy-net = { path = "/home/dirbaio/embassy/embassy/embassy-net" }
|
|
||||||
#smoltcp = { path = "./smoltcp" }
|
|
||||||
|
|
||||||
#[patch."https://github.com/smoltcp-rs/smoltcp"]
|
|
||||||
#smoltcp = { path = "./smoltcp" }
|
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
debug = 2
|
debug = 2
|
||||||
|
@ -17,11 +17,11 @@ use core::sync::atomic::Ordering;
|
|||||||
use core::task::Waker;
|
use core::task::Waker;
|
||||||
|
|
||||||
use atomic_polyfill::AtomicBool;
|
use atomic_polyfill::AtomicBool;
|
||||||
|
use embassy_futures::yield_now;
|
||||||
use embassy_net::{PacketBoxExt, PacketBuf};
|
use embassy_net::{PacketBoxExt, PacketBuf};
|
||||||
|
use embassy_sync::blocking_mutex::raw::NoopRawMutex;
|
||||||
|
use embassy_sync::channel::Channel;
|
||||||
use embassy_time::{block_for, Duration, Timer};
|
use embassy_time::{block_for, Duration, Timer};
|
||||||
use embassy_util::blocking_mutex::raw::NoopRawMutex;
|
|
||||||
use embassy_util::channel::mpmc::Channel;
|
|
||||||
use embassy_util::yield_now;
|
|
||||||
use embedded_hal_1::digital::blocking::OutputPin;
|
use embedded_hal_1::digital::blocking::OutputPin;
|
||||||
use embedded_hal_async::spi::{SpiBusRead, SpiBusWrite, SpiDevice};
|
use embedded_hal_async::spi::{SpiBusRead, SpiBusWrite, SpiDevice};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user