esp-hal/esp-wifi/MIGRATING-0.14.0.md
Scott Mabin 6b758d75b8
Finalize releases (#3805)
* Finalize crate releases

* changelog fixup

* fixup docsrs ci test

* docs fixup
2025-07-16 10:29:34 +00:00

415 B

Migration Guide from 0.14.0 to 0.15.0

Deinitialization

esp_wifi::EspWifiController::deinit got removed and you should just drop the EspWifiController instead.

- esp_wifi_ctrl.deinit();
+ core::mem::drop(esp_wifi_ctrl);

Since esp_wifi::deinit_unchecked is now removed there is no unsafe way to forcefully deinit the controller. Drop the instance of EspWifiController instead (see above).