stm32/eth: impl. poll interval

This commit is contained in:
xoviat
2023-07-15 09:57:09 -05:00
parent c3774607a5
commit 975a780efe
6 changed files with 29 additions and 6 deletions

View File

@ -56,7 +56,7 @@ async fn main(spawner: Spawner) -> ! {
p.PG13,
p.PB13,
p.PG11,
GenericSMI,
GenericSMI::new(Duration::from_millis(500)),
mac_addr,
0,
);

View File

@ -57,7 +57,7 @@ async fn main(spawner: Spawner) -> ! {
p.PG13,
p.PB13,
p.PG11,
GenericSMI,
GenericSMI::new(Duration::from_millis(500)),
mac_addr,
0,
);

View File

@ -76,7 +76,7 @@ async fn main(spawner: Spawner) -> ! {
p.PG13,
p.PB15,
p.PG11,
GenericSMI,
GenericSMI::new(Duration::from_millis(500)),
mac_addr,
0,
);

View File

@ -58,7 +58,7 @@ async fn main(spawner: Spawner) -> ! {
p.PG13,
p.PB13,
p.PG11,
GenericSMI,
GenericSMI::new(Duration::from_millis(500)),
mac_addr,
0,
);

View File

@ -59,7 +59,7 @@ async fn main(spawner: Spawner) -> ! {
p.PG13,
p.PB13,
p.PG11,
GenericSMI,
GenericSMI::new(Duration::from_millis(500)),
mac_addr,
0,
);