mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-22 23:07:28 +02:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
menu "eppp_link"
|
|
|
|
config EPPP_LINK_USES_LWIP
|
|
bool
|
|
default "y"
|
|
select LWIP_PPP_SUPPORT
|
|
select LWIP_PPP_SERVER_SUPPORT
|
|
|
|
choice EPPP_LINK_DEVICE
|
|
prompt "Choose PPP device"
|
|
default EPPP_LINK_DEVICE_UART
|
|
help
|
|
Select which peripheral to use for PPP link
|
|
|
|
config EPPP_LINK_DEVICE_UART
|
|
bool "UART"
|
|
help
|
|
Use UART.
|
|
|
|
config EPPP_LINK_DEVICE_SPI
|
|
bool "SPI"
|
|
help
|
|
Use SPI.
|
|
endchoice
|
|
|
|
config EPPP_LINK_CONN_MAX_RETRY
|
|
int "Maximum retry"
|
|
default 6
|
|
help
|
|
Set the Maximum retry to infinitely avoid reconnecting
|
|
This is used only with the simplified API (eppp_connect()
|
|
and eppp_listen())
|
|
|
|
config EPPP_LINK_PACKET_QUEUE_SIZE
|
|
int "Packet queue size"
|
|
default 64
|
|
help
|
|
Size of the Tx packet queue.
|
|
You can decrease the number for slower bit rates.
|
|
|
|
endmenu
|