esp-hal/esp-radio/MIGRATING-0.14.0.md
Kirill Mikhailov 73ef8d9227
Rename esp-wifi to esp-radio (part 1) (#3858)
* 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
2025-07-25 12:26:08 +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).