fix(wifi_remote): Added misc wifi API in eppp impl

Adds missing implementation of:
* esp_wifi_deinit()
* esp_wifi_disconnect()
* esp_wifi_set_storage()
This commit is contained in:
David Cermak
2024-05-07 15:00:29 +02:00
parent 3a48c06e96
commit 93256d159b
3 changed files with 54 additions and 0 deletions

View File

@ -18,12 +18,15 @@ enum class api_id : uint32_t {
ERROR,
UNDEF,
INIT,
DEINIT,
SET_MODE,
SET_CONFIG,
START,
STOP,
CONNECT,
DISCONNECT,
GET_MAC,
SET_STORAGE,
WIFI_EVENT,
IP_EVENT,
};