esp-hal/esp-wifi/MIGRATING-0.14.0.md
Björn Quentin 3893e5665b
Remove global wifi/ble init state tracking (#3553)
* Remove global wifi/ble init state tracking

* CHANGELOG.md

* Remove (now) redundant clippy-allow

* Cleanup after rebase

* Fix CHANGELOG

* Rebase

* Remove unused
2025-06-10 09:31:11 +00:00

427 B

Migration Guide from 0.14.0 to {{currentVersion}}

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).