esp_netif: Migrate SLIP interface to user-space

This commit is contained in:
David Cermak
2022-07-22 17:37:47 +02:00
committed by David Čermák
parent 985f44c158
commit 83b8556f10
21 changed files with 368 additions and 628 deletions

View File

@@ -9,7 +9,6 @@
#include "esp_netif.h"
#include "lwip/netif.h"
#include "esp_netif_ppp.h"
#include "esp_netif_slip.h"
#if defined(CONFIG_ESP_NETIF_TCPIP_LWIP)
@@ -26,12 +25,6 @@ struct esp_netif_netstack_lwip_ppp_config {
esp_netif_ppp_config_t ppp_events;
};
struct esp_netif_netstack_lwip_slip_config {
init_fn_t init_fn;
input_fn_t input_fn;
esp_netif_slip_config_t slip_config;
};
// LWIP netif specific network stack configuration
struct esp_netif_netstack_config {
union {