mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 04:10:28 +00:00
415 B
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).