mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-02 15:41:38 +01:00
by enabling PPP netif, so esp_netif knows that lwip's netif->state will be reserved for special netif info (slip) Closes https://github.com/espressif/esp-protocols/issues/759
6 lines
217 B
Plaintext
6 lines
217 B
Plaintext
# Override some defaults to enable SLIP
|
|
CONFIG_LWIP_SLIP_SUPPORT=y
|
|
# Workaround: Enable PPP to let esp_netif know that lwip's netif->state
|
|
# will be occupied (by SLIP netif info)
|
|
CONFIG_LWIP_PPP_SUPPORT=y
|