aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorriceman2000 <[email protected]>2025-09-12 22:52:53 -0400
committerriceman2000 <[email protected]>2025-09-12 22:56:52 -0400
commit6beb7e35a6bf2ae0e72a389b2dac6bde08e5dcd2 (patch)
treeaa4ab540ca8aa07493f8b072e12ebf5fd725029a
parent97adc129b89bcf8278becb603f8f4a7287429287 (diff)
Remove unused imports
-rw-r--r--examples/rp/src/bin/ethernet_w55rp20_tcp_server.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/rp/src/bin/ethernet_w55rp20_tcp_server.rs b/examples/rp/src/bin/ethernet_w55rp20_tcp_server.rs
index 17dc40aff..0d69b66c4 100644
--- a/examples/rp/src/bin/ethernet_w55rp20_tcp_server.rs
+++ b/examples/rp/src/bin/ethernet_w55rp20_tcp_server.rs
@@ -8,8 +8,6 @@
8#![no_std] 8#![no_std]
9#![no_main] 9#![no_main]
10 10
11use core::str::FromStr;
12
13use defmt::*; 11use defmt::*;
14use embassy_executor::Spawner; 12use embassy_executor::Spawner;
15use embassy_futures::yield_now; 13use embassy_futures::yield_now;
@@ -22,7 +20,7 @@ use embassy_rp::peripherals::PIO0;
22use embassy_rp::pio_programs::spi::Spi; 20use embassy_rp::pio_programs::spi::Spi;
23use embassy_rp::spi::{Async, Config as SpiConfig}; 21use embassy_rp::spi::{Async, Config as SpiConfig};
24use embassy_rp::{bind_interrupts, pio}; 22use embassy_rp::{bind_interrupts, pio};
25use embassy_time::{Delay, Duration, Timer}; 23use embassy_time::{Delay, Duration};
26use embedded_hal_bus::spi::ExclusiveDevice; 24use embedded_hal_bus::spi::ExclusiveDevice;
27use embedded_io_async::Write; 25use embedded_io_async::Write;
28use static_cell::StaticCell; 26use static_cell::StaticCell;