mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/esp_netif_non_lwip' into 'master'
esp-netif: Enable use of the ESP-IDF with a non-LWIP (and non-BSD-style) IP stack. Closes IDFGH-3971 See merge request espressif/esp-idf!10472
This commit is contained in:
commit
28d2b7a9b3
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include "esp_netif.h"
|
#include "esp_netif.h"
|
||||||
#include "esp_netif_private.h"
|
#include "esp_netif_private.h"
|
||||||
|
#include "esp_netif_sta_list.h"
|
||||||
|
|
||||||
#if CONFIG_ESP_NETIF_LOOPBACK
|
#if CONFIG_ESP_NETIF_LOOPBACK
|
||||||
|
|
||||||
@ -432,7 +433,7 @@ const char *esp_netif_get_desc(esp_netif_t *esp_netif)
|
|||||||
return esp_netif->if_desc;
|
return esp_netif->if_desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t esp_netif_get_event_id(esp_netif_t *esp_netif, esp_netif_ip_event_type_t event_type)
|
int32_t esp_netif_get_event_id(esp_netif_t *esp_netif, esp_netif_ip_event_type_t event_type)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
#include "esp_netif_lwip_internal.h"
|
#include "esp_netif_lwip_internal.h"
|
||||||
#include "esp_netif_lwip_ppp.h"
|
#include "esp_netif_lwip_ppp.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
#include "netif/wlanif.h"
|
#include "netif/wlanif.h"
|
||||||
#include "netif/ethernetif.h"
|
#include "netif/ethernetif.h"
|
||||||
|
|
||||||
@ -59,3 +61,5 @@ const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_eth = &s_e
|
|||||||
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_wifi_sta = &s_wifi_netif_config_sta;
|
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_wifi_sta = &s_wifi_netif_config_sta;
|
||||||
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_wifi_ap = &s_wifi_netif_config_ap;
|
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_wifi_ap = &s_wifi_netif_config_ap;
|
||||||
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_ppp = &s_netif_config_ppp;
|
const esp_netif_netstack_config_t *_g_esp_netif_netstack_default_ppp = &s_netif_config_ppp;
|
||||||
|
|
||||||
|
#endif /*CONFIG_ESP_NETIF_TCPIP_LWIP*/
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
#include "esp_netif_slip.h"
|
#include "esp_netif_slip.h"
|
||||||
#include "lwip/netif.h"
|
#include "lwip/netif.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
struct esp_netif_netstack_lwip_vanilla_config {
|
struct esp_netif_netstack_lwip_vanilla_config {
|
||||||
err_t (*init_fn)(struct netif*);
|
err_t (*init_fn)(struct netif*);
|
||||||
void (*input_fn)(void *netif, void *buffer, size_t len, void *eb);
|
void (*input_fn)(void *netif, void *buffer, size_t len, void *eb);
|
||||||
@ -126,3 +128,5 @@ struct esp_netif_obj {
|
|||||||
char * if_desc;
|
char * if_desc;
|
||||||
int route_prio;
|
int route_prio;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif /* CONFIG_ESP_NETIF_TCPIP_LWIP */
|
||||||
|
@ -12,8 +12,12 @@
|
|||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
#include "lwip/dns.h"
|
|
||||||
#include "esp_netif.h"
|
#include "esp_netif.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
|
#include "lwip/dns.h"
|
||||||
#include "netif/ppp/pppapi.h"
|
#include "netif/ppp/pppapi.h"
|
||||||
#include "netif/ppp/pppos.h"
|
#include "netif/ppp/pppos.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
@ -21,8 +25,8 @@
|
|||||||
#include "esp_event.h"
|
#include "esp_event.h"
|
||||||
#include "esp_netif_ppp.h"
|
#include "esp_netif_ppp.h"
|
||||||
#include "esp_netif_lwip_internal.h"
|
#include "esp_netif_lwip_internal.h"
|
||||||
#include "lwip/ip6_addr.h"
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "lwip/ip6_addr.h"
|
||||||
|
|
||||||
ESP_EVENT_DEFINE_BASE(NETIF_PPP_STATUS);
|
ESP_EVENT_DEFINE_BASE(NETIF_PPP_STATUS);
|
||||||
|
|
||||||
@ -384,3 +388,5 @@ esp_err_t esp_netif_ppp_set_params(esp_netif_t *netif, const esp_netif_ppp_confi
|
|||||||
LOG_PPP_DISABLED_AND_DO(return ESP_ERR_NOT_SUPPORTED)
|
LOG_PPP_DISABLED_AND_DO(return ESP_ERR_NOT_SUPPORTED)
|
||||||
|
|
||||||
#endif /* PPPOS_SUPPORT */
|
#endif /* PPPOS_SUPPORT */
|
||||||
|
|
||||||
|
#endif /* CONFIG_ESP_NETIF_TCPIP_LWIP */
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
#ifndef _ESP_NETIF_LWIP_PPP_H_
|
#ifndef _ESP_NETIF_LWIP_PPP_H_
|
||||||
#define _ESP_NETIF_LWIP_PPP_H_
|
#define _ESP_NETIF_LWIP_PPP_H_
|
||||||
|
|
||||||
|
#if CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates new PPP related structure
|
* @brief Creates new PPP related structure
|
||||||
*
|
*
|
||||||
@ -75,4 +77,7 @@ esp_err_t esp_netif_stop_ppp(netif_related_data_t *netif_related);
|
|||||||
*/
|
*/
|
||||||
void esp_netif_ppp_set_default_netif(netif_related_data_t *netif_related);
|
void esp_netif_ppp_set_default_netif(netif_related_data_t *netif_related);
|
||||||
|
|
||||||
|
#endif /* CONFIG_ESP_NETIF_TCPIP_LWIP */
|
||||||
|
|
||||||
|
|
||||||
#endif // _ESP_NETIF_LWIP_PPP_H_
|
#endif // _ESP_NETIF_LWIP_PPP_H_
|
@ -13,12 +13,16 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
#include "lwip/dns.h"
|
|
||||||
#include "esp_netif.h"
|
#include "esp_netif.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "esp_netif_slip.h"
|
#include "esp_netif_slip.h"
|
||||||
#include "esp_netif_lwip_internal.h"
|
#include "esp_netif_lwip_internal.h"
|
||||||
#include "esp_netif_net_stack.h"
|
#include "esp_netif_net_stack.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
|
#include "lwip/dns.h"
|
||||||
#include "lwip/opt.h"
|
#include "lwip/opt.h"
|
||||||
#include "lwip/ip6_addr.h"
|
#include "lwip/ip6_addr.h"
|
||||||
#include "lwip/netif.h"
|
#include "lwip/netif.h"
|
||||||
@ -296,3 +300,4 @@ void sio_send(uint8_t c, sio_fd_t fd)
|
|||||||
ESP_LOGD(TAG, "%s: uart_write_bytes error %i", __func__, ret);
|
ESP_LOGD(TAG, "%s: uart_write_bytes error %i", __func__, ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_ESP_NETIF_TCPIP_LWIP */
|
||||||
|
@ -17,14 +17,17 @@
|
|||||||
* it will use UDP to send 'ACK' to cellphone.
|
* it will use UDP to send 'ACK' to cellphone.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include "freertos/FreeRTOS.h"
|
#include "freertos/FreeRTOS.h"
|
||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
#include "lwip/sockets.h"
|
|
||||||
#include "esp_netif.h"
|
#include "esp_netif.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "esp_wifi.h"
|
#include "esp_wifi.h"
|
||||||
#include "esp_event.h"
|
#include "esp_event.h"
|
||||||
|
|
||||||
|
#if CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include "lwip/sockets.h"
|
||||||
#include "esp_smartconfig.h"
|
#include "esp_smartconfig.h"
|
||||||
#include "smartconfig_ack.h"
|
#include "smartconfig_ack.h"
|
||||||
|
|
||||||
@ -208,3 +211,6 @@ void sc_send_ack_stop(void)
|
|||||||
{
|
{
|
||||||
s_sc_ack_send = false;
|
s_sc_ack_send = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
@ -150,6 +150,8 @@ static void esp_wifi_config_info(void)
|
|||||||
#ifdef CONFIG_ESP32_WIFI_RX_BA_WIN
|
#ifdef CONFIG_ESP32_WIFI_RX_BA_WIN
|
||||||
ESP_LOGI(TAG, "rx ba win: %d", CONFIG_ESP32_WIFI_RX_BA_WIN);
|
ESP_LOGI(TAG, "rx ba win: %d", CONFIG_ESP32_WIFI_RX_BA_WIN);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
ESP_LOGI(TAG, "tcpip mbox: %d", CONFIG_LWIP_TCPIP_RECVMBOX_SIZE);
|
ESP_LOGI(TAG, "tcpip mbox: %d", CONFIG_LWIP_TCPIP_RECVMBOX_SIZE);
|
||||||
ESP_LOGI(TAG, "udp mbox: %d", CONFIG_LWIP_UDP_RECVMBOX_SIZE);
|
ESP_LOGI(TAG, "udp mbox: %d", CONFIG_LWIP_UDP_RECVMBOX_SIZE);
|
||||||
ESP_LOGI(TAG, "tcp mbox: %d", CONFIG_LWIP_TCP_RECVMBOX_SIZE);
|
ESP_LOGI(TAG, "tcp mbox: %d", CONFIG_LWIP_TCP_RECVMBOX_SIZE);
|
||||||
@ -172,6 +174,10 @@ static void esp_wifi_config_info(void)
|
|||||||
#ifdef CONFIG_LWIP_IRAM_OPTIMIZATION
|
#ifdef CONFIG_LWIP_IRAM_OPTIMIZATION
|
||||||
ESP_LOGI(TAG, "LWIP IRAM OP enabled");
|
ESP_LOGI(TAG, "LWIP IRAM OP enabled");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
ESP_LOGI(TAG, "LWIP disabled");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
esp_err_t esp_wifi_init(const wifi_init_config_t *config)
|
esp_err_t esp_wifi_init(const wifi_init_config_t *config)
|
||||||
@ -245,3 +251,4 @@ void wifi_apb80m_release(void)
|
|||||||
esp_pm_lock_release(s_wifi_modem_sleep_lock);
|
esp_pm_lock_release(s_wifi_modem_sleep_lock);
|
||||||
}
|
}
|
||||||
#endif //CONFIG_PM_ENABLE
|
#endif //CONFIG_PM_ENABLE
|
||||||
|
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
#include MBEDTLS_CONFIG_FILE
|
#include MBEDTLS_CONFIG_FILE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_ESP_NETIF_TCPIP_LWIP
|
||||||
|
|
||||||
#if !defined(MBEDTLS_NET_C)
|
#if !defined(MBEDTLS_NET_C)
|
||||||
|
|
||||||
#if defined(MBEDTLS_PLATFORM_C)
|
#if defined(MBEDTLS_PLATFORM_C)
|
||||||
@ -441,3 +443,6 @@ void mbedtls_net_free( mbedtls_net_context *ctx )
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MBEDTLS_NET_C */
|
#endif /* MBEDTLS_NET_C */
|
||||||
|
|
||||||
|
#endif /* CONFIG_ESP_NETIF_TCPIP_LWIP */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user