Merge pull request #3024 from bsodmike/fix_rp_wifi_example

Update RP Wifi Scan Example: Remove code that isn't used by the example (minor cleanup)
This commit is contained in:
Dario Nieuwenhuis 2024-12-02 23:51:13 +00:00 committed by GitHub
commit f7a1f5bf56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,11 +26,6 @@ async fn cyw43_task(runner: cyw43::Runner<'static, Output<'static>, PioSpi<'stat
runner.run().await
}
#[embassy_executor::task]
async fn net_task(mut runner: embassy_net::Runner<'static, cyw43::NetDriver<'static>>) -> ! {
runner.run().await
}
#[embassy_executor::main]
async fn main(spawner: Spawner) {
info!("Hello World!");