esp-netif: Support non-lwip mode, add test

It is required to define a mandatory dependency on lwip, so we
introduced esp_netif_stack component and made it require lwip, instead
of directly depending on lwip.
This enables building w-out lwip and support other TCP/IP stacks.
This commit is contained in:
David Cermak
2022-09-26 13:22:20 +02:00
committed by David Čermák
parent 678d7aadd9
commit 38dec0be48
16 changed files with 107 additions and 35 deletions

View File

@@ -9,6 +9,7 @@
#include <string.h>
#include <time.h>
#include <sys/time.h>
#include <netdb.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"