examples: remove unused deps.

This commit is contained in:
Dario Nieuwenhuis
2021-11-24 03:17:54 +01:00
parent 2a2911221d
commit 3332c40705
15 changed files with 2 additions and 56 deletions

View File

@ -11,9 +11,7 @@ resolver = "2"
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt"] }
embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] }
embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = ["defmt", "stm32h743zi", "net", "time-driver-tim2"] }
embassy-hal-common = {version = "0.1.0", path = "../../embassy-hal-common" }
embassy-net = { path = "../../embassy-net", default-features = false, features = ["defmt", "tcp", "medium-ethernet", "pool-16"] }
embassy-macros = { path = "../../embassy-macros" }
defmt = "0.3"
defmt-rtt = "0.3"

View File

@ -13,7 +13,6 @@ use embassy::executor::{Executor, Spawner};
use embassy::io::AsyncWriteExt;
use embassy::time::{Duration, Timer};
use embassy::util::Forever;
use embassy_macros::interrupt_take;
use embassy_net::{
Config as NetConfig, Ipv4Address, Ipv4Cidr, StackResources, StaticConfigurator, TcpSocket,
};
@ -100,7 +99,7 @@ fn main() -> ! {
RNG_INST.replace(rng);
}
let eth_int = interrupt_take!(ETH);
let eth_int = interrupt::take!(ETH);
let mac_addr = [0x10; 6];
let state = STATE.put(State::new());
let eth = unsafe {