···32) -> (Device<'a>, Control<'a>) {
33 let fw = include_bytes!("../cyw43-firmware/43439A0.bin");
34 let clm = include_bytes!("../cyw43-firmware/43439A0_clm.bin");
35- let btfw = include_bytes!("../cyw43-firmware/43439A0_btfw.bin");
3637 // To make flashing faster for development, you may want to flash the firmwares independently
38 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
···5152 static STATE: StaticCell<cyw43::State> = StaticCell::new();
53 let state = STATE.init(cyw43::State::new());
54- let (net_device, _bt_device, mut control, runner) =
55- cyw43::new_with_bluetooth(state, pwr, spi, fw, btfw).await;
56 unwrap!(spawner.spawn(cyw43_task(runner)));
5758 control.init(clm).await;
···32) -> (Device<'a>, Control<'a>) {
33 let fw = include_bytes!("../cyw43-firmware/43439A0.bin");
34 let clm = include_bytes!("../cyw43-firmware/43439A0_clm.bin");
35+ // let btfw = include_bytes!("../cyw43-firmware/43439A0_btfw.bin");
3637 // To make flashing faster for development, you may want to flash the firmwares independently
38 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
···5152 static STATE: StaticCell<cyw43::State> = StaticCell::new();
53 let state = STATE.init(cyw43::State::new());
54+ let (net_device, mut control, runner) = cyw43::new(state, pwr, spi, fw).await;
055 unwrap!(spawner.spawn(cyw43_task(runner)));
5657 control.init(clm).await;