mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 04:10:28 +00:00

* rename `esp-wifi` to `esp-radio` * Add migration guide entry * changelog entry * address reviews * more fixes * address reviews * Thank you for this rebase! * mmm, rebase * Remove unnecessary diff bob * get rid off all `esp-wifi` references * drop the links ƒrom the table
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).