From 55a6aca355b7be2a148c755caebb0b4ffd495045 Mon Sep 17 00:00:00 2001 From: Kedar Sovani Date: Mon, 7 Aug 2017 10:35:36 +0530 Subject: [PATCH] wifi: Map esp_wifi_init() to esp_wifi_init_internal() Follow-on patches will include additional functionality in esp_wifi_init() --- components/esp32/event_default_handlers.c | 5 +++++ components/esp32/include/esp_wifi_internal.h | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/components/esp32/event_default_handlers.c b/components/esp32/event_default_handlers.c index 04a74f59d..118277656 100644 --- a/components/esp32/event_default_handlers.c +++ b/components/esp32/event_default_handlers.c @@ -408,3 +408,8 @@ esp_err_t esp_event_process_default(system_event_t *event) } return ESP_OK; } + +esp_err_t esp_wifi_init(wifi_init_config_t *config) +{ + return esp_wifi_init_internal(config); +} diff --git a/components/esp32/include/esp_wifi_internal.h b/components/esp32/include/esp_wifi_internal.h index 09813bfa1..e86d60f7f 100644 --- a/components/esp32/include/esp_wifi_internal.h +++ b/components/esp32/include/esp_wifi_internal.h @@ -40,6 +40,20 @@ extern "C" { #endif +/** + * @brief Initialize Wi-Fi Driver + * Alloc resource for WiFi driver, such as WiFi control structure, RX/TX buffer, + * WiFi NVS structure among others. + * + * @param config provide WiFi init configuration + * + * @return + * - ESP_OK: succeed + * - ESP_ERR_WIFI_NO_MEM: out of memory + * - others: refer to error code esp_err.h + */ +esp_err_t esp_wifi_init_internal(wifi_init_config_t *config); + /** * @brief get whether the wifi driver is allowed to transmit data or not *