2019-06-28 14:47:34 +00:00
|
|
|
menu "ESP NETIF Adapter"
|
2017-07-19 01:15:11 +00:00
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
config ESP_NETIF_IP_LOST_TIMER_INTERVAL
|
2019-01-25 16:10:53 +00:00
|
|
|
int "IP Address lost timer interval (seconds)"
|
|
|
|
range 0 65535
|
|
|
|
default 120
|
|
|
|
help
|
|
|
|
The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.
|
|
|
|
|
|
|
|
The IP address may be lost because of some reasons, e.g. when the station disconnects
|
|
|
|
from soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will
|
|
|
|
be started everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if
|
|
|
|
the timer expires. The IP lost timer is stopped if the station get the IP again before
|
|
|
|
the timer expires.
|
2017-07-19 01:15:11 +00:00
|
|
|
|
2019-06-28 14:47:34 +00:00
|
|
|
choice ESP_NETIF_USE_TCPIP_STACK_LIB
|
2019-01-25 16:10:53 +00:00
|
|
|
prompt "TCP/IP Stack Library"
|
2019-09-02 09:22:09 +00:00
|
|
|
default ESP_NETIF_TCPIP_LWIP
|
2018-08-15 08:33:32 +00:00
|
|
|
help
|
2019-01-25 16:10:53 +00:00
|
|
|
Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.
|
2019-09-02 09:22:09 +00:00
|
|
|
config ESP_NETIF_TCPIP_LWIP
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "LwIP"
|
|
|
|
help
|
|
|
|
lwIP is a small independent implementation of the TCP/IP protocol suite.
|
2019-09-02 09:22:09 +00:00
|
|
|
|
|
|
|
config ESP_NETIF_LOOPBACK
|
|
|
|
bool "Loopback"
|
|
|
|
help
|
|
|
|
Dummy implementation of esp-netif functionality which connects driver transmit
|
|
|
|
to receive function. This option is for testing purpose only
|
2019-01-25 16:10:53 +00:00
|
|
|
endchoice
|
2018-08-15 08:33:32 +00:00
|
|
|
|
2019-09-02 09:22:09 +00:00
|
|
|
config ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER
|
2019-06-28 14:47:34 +00:00
|
|
|
bool "Enable backward compatible tcpip_adapter interface"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Backward compatible interface to tcpip_adapter is enabled by default to support
|
2019-09-02 09:22:09 +00:00
|
|
|
legacy TCP/IP stack initialisation code. Disable this option to use only esp-netif
|
2019-06-28 14:47:34 +00:00
|
|
|
interface.
|
2017-07-19 01:15:11 +00:00
|
|
|
endmenu
|