···3232) -> (Device<'a>, Control<'a>) {
3333 let fw = include_bytes!("../cyw43-firmware/43439A0.bin");
3434 let clm = include_bytes!("../cyw43-firmware/43439A0_clm.bin");
3535- let btfw = include_bytes!("../cyw43-firmware/43439A0_btfw.bin");
3535+ // let btfw = include_bytes!("../cyw43-firmware/43439A0_btfw.bin");
36363737 // To make flashing faster for development, you may want to flash the firmwares independently
3838 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
···51515252 static STATE: StaticCell<cyw43::State> = StaticCell::new();
5353 let state = STATE.init(cyw43::State::new());
5454- let (net_device, _bt_device, mut control, runner) =
5555- cyw43::new_with_bluetooth(state, pwr, spi, fw, btfw).await;
5454+ let (net_device, mut control, runner) = cyw43::new(state, pwr, spi, fw).await;
5655 unwrap!(spawner.spawn(cyw43_task(runner)));
57565857 control.init(clm).await;