Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. menu "ESP NETIF Adapter"
  2. config ESP_NETIF_IP_LOST_TIMER_INTERVAL
  3. int "IP Address lost timer interval (seconds)"
  4. range 0 65535
  5. default 120
  6. help
  7. The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.
  8. The IP address may be lost because of some reasons, e.g. when the station disconnects
  9. from soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will
  10. be started everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if
  11. the timer expires. The IP lost timer is stopped if the station get the IP again before
  12. the timer expires.
  13. choice ESP_NETIF_USE_TCPIP_STACK_LIB
  14. prompt "TCP/IP Stack Library"
  15. default ESP_NETIF_TCPIP_LWIP
  16. help
  17. Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.
  18. config ESP_NETIF_TCPIP_LWIP
  19. bool "LwIP"
  20. help
  21. lwIP is a small independent implementation of the TCP/IP protocol suite.
  22. config ESP_NETIF_LOOPBACK
  23. bool "Loopback"
  24. help
  25. Dummy implementation of esp-netif functionality which connects driver transmit
  26. to receive function. This option is for testing purpose only
  27. endchoice
  28. config ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER
  29. bool "Enable backward compatible tcpip_adapter interface"
  30. default y
  31. help
  32. Backward compatible interface to tcpip_adapter is enabled by default to support
  33. legacy TCP/IP stack initialisation code. Disable this option to use only esp-netif
  34. interface.
  35. endmenu