address irq nits

This commit is contained in:
kbleeke
2023-03-27 14:37:39 +02:00
parent b58cc2aa23
commit 8926397f45
4 changed files with 6 additions and 19 deletions

View File

@ -227,10 +227,4 @@ impl cyw43::SpiBusCyw43 for MySpi {
self.read(read).await;
self.cs.set_high();
}
async fn wait_for_event(&mut self) {}
fn clear_event(&mut self) {}
}

View File

@ -170,9 +170,6 @@ where
async fn wait_for_event(&mut self) {
self.sm.wait_irq(0).await;
}
fn clear_event(&mut self) {
self.sm.clear_irq(0);
}
}