aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSteven Friedman <[email protected]>2025-03-20 08:43:35 -0400
committerSteven Friedman <[email protected]>2025-03-20 09:14:28 -0400
commit83b70d5847e919421696b40ac6ed7021eb7a4678 (patch)
tree95803202e661fc1884a6738c40854844f0948c5e /examples
parent1e027d3b61dac659fa7bf28cd3ff604d49bd1e5c (diff)
w/ static config, don't need to wait for DHCP
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32h7rs/src/bin/eth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32h7rs/src/bin/eth.rs b/examples/stm32h7rs/src/bin/eth.rs
index 2f0ef2492..f2bd9575e 100644
--- a/examples/stm32h7rs/src/bin/eth.rs
+++ b/examples/stm32h7rs/src/bin/eth.rs
@@ -96,7 +96,7 @@ async fn main(spawner: Spawner) -> ! {
96 unwrap!(spawner.spawn(net_task(runner))); 96 unwrap!(spawner.spawn(net_task(runner)));
97 97
98 // Ensure DHCP configuration is up before trying connect 98 // Ensure DHCP configuration is up before trying connect
99 stack.wait_config_up().await; 99 //stack.wait_config_up().await;
100 100
101 info!("Network task initialized"); 101 info!("Network task initialized");
102 102