aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32/src/bin
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-01-26 21:53:00 +0100
committerDario Nieuwenhuis <[email protected]>2025-01-26 22:17:25 +0100
commitff52bde787031493ce174cdc1dcc2434fd16aa1b (patch)
tree7f3a1e5c9ea03f9f2b8ed2af28d6d2ea1164244f /tests/stm32/src/bin
parentafe6b9a192f1434bb024040a20cef9509c307871 (diff)
stm32: change all examples and tests to use GenericSMI::new_auto().
Diffstat (limited to 'tests/stm32/src/bin')
-rw-r--r--tests/stm32/src/bin/eth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stm32/src/bin/eth.rs b/tests/stm32/src/bin/eth.rs
index bf1922dde..4ab6e234f 100644
--- a/tests/stm32/src/bin/eth.rs
+++ b/tests/stm32/src/bin/eth.rs
@@ -87,7 +87,7 @@ async fn main(spawner: Spawner) {
87 #[cfg(feature = "stm32h563zi")] 87 #[cfg(feature = "stm32h563zi")]
88 p.PB15, 88 p.PB15,
89 p.PG11, 89 p.PG11,
90 GenericSMI::new(0), 90 GenericSMI::new_auto(),
91 mac_addr, 91 mac_addr,
92 ); 92 );
93 93