We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb2488 commit b7ce3e3Copy full SHA for b7ce3e3
examples/rtic-echo.rs
@@ -133,6 +133,12 @@ mod app {
133
134
phy.phy_init();
135
136
+ defmt::info!("Waiting for link up.");
137
+
138
+ while !phy.phy_link_up() {}
139
140
+ defmt::info!("Link up.");
141
142
if let Some(speed) = phy.speed().map(|s| match s {
143
PhySpeed::HalfDuplexBase10T => Speed::HalfDuplexBase10T,
144
PhySpeed::FullDuplexBase10T => Speed::FullDuplexBase10T,
0 commit comments