wifi task needs to be spawned immediately, otherwise ioctls are just stuck (duh). fix #44
This commit is contained in:
parent
33cbc22236
commit
369f205962
@ -77,6 +77,7 @@ async fn main(spawner: Spawner) {
|
||||
|
||||
let state = singleton!(cyw43::State::new());
|
||||
let (net_device, mut control, runner) = cyw43::new(state, pwr, spi, fw).await;
|
||||
unwrap!(spawner.spawn(wifi_task(runner)));
|
||||
|
||||
control.init(clm).await;
|
||||
control
|
||||
@ -101,7 +102,6 @@ async fn main(spawner: Spawner) {
|
||||
seed
|
||||
));
|
||||
|
||||
unwrap!(spawner.spawn(wifi_task(runner)));
|
||||
unwrap!(spawner.spawn(net_task(stack)));
|
||||
|
||||
//control.join_open(env!("WIFI_NETWORK")).await;
|
||||
|
Loading…
Reference in New Issue
Block a user