mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ffe043b1a8
- provides object oriented access to network intefaces - not limited to default netifs - more generic abstraction to network input output functions - event handler registration removed from component responsibility - backward compatibility layer for legacy tcpip_apapter APIs Closes IDF-39
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
// Copyright 2019 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef _ESP_WIFI_DEFAULT_H
|
|
#define _ESP_WIFI_DEFAULT_H
|
|
|
|
#define ESP_NETIF_DRIVER_DEFAULT_WIFI_STA &_g_wifi_driver_sta_ifconfig
|
|
#define ESP_NETIF_DRIVER_DEFAULT_WIFI_AP &_g_wifi_driver_ap_ifconfig
|
|
|
|
/**
|
|
* @brief Sets default wifi event handlers for STA interface
|
|
*
|
|
* @param esp_netif instance of corresponding if object
|
|
*
|
|
* @return
|
|
* - ESP_OK on success, error returned from esp_event_handler_register if failed
|
|
*/
|
|
esp_err_t esp_wifi_set_default_wifi_sta_handlers(void *esp_netif);
|
|
|
|
/**
|
|
* @brief Sets default wifi event handlers for STA interface
|
|
*
|
|
* @param esp_netif instance of corresponding if object
|
|
*
|
|
* @return
|
|
* - ESP_OK on success, error returned from esp_event_handler_register if failed
|
|
*/
|
|
esp_err_t esp_wifi_set_default_wifi_ap_handlers(void *esp_netif);
|
|
|
|
|
|
extern const esp_netif_driver_ifconfig_t _g_wifi_driver_sta_ifconfig;
|
|
extern const esp_netif_driver_ifconfig_t _g_wifi_driver_ap_ifconfig;
|
|
|
|
|
|
#endif //_ESP_WIFI_DEFAULT_H
|