:orphan: .. title:: CONFIG_NET_PPP_ASYNC_UART_RX_RECOVERY_TIMEOUT .. kconfig:: CONFIG_NET_PPP_ASYNC_UART_RX_RECOVERY_TIMEOUT CONFIG_NET_PPP_ASYNC_UART_RX_RECOVERY_TIMEOUT ############################################# *UART RX recovery timeout in milliseconds* Type: ``int`` Help ==== .. code-block:: none The time that UART RX is in disabled state in case when we cannot receive more data from UART. Direct dependencies =================== \ :kconfig:`NET_PPP_ASYNC_UART ` && \ :kconfig:`NET_PPP ` && \ :kconfig:`NET_DRIVERS ` *(Includes any dependencies from ifs and menus.)* Default ======= - 200 Kconfig definition ================== At ``/net/Kconfig:106`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:24`` Menu path: (Top) → Device Drivers → Network Drivers → Point-to-point (PPP) UART based driver .. code-block:: kconfig config NET_PPP_ASYNC_UART_RX_RECOVERY_TIMEOUT int "UART RX recovery timeout in milliseconds" default 200 depends on NET_PPP_ASYNC_UART && NET_PPP && NET_DRIVERS help The time that UART RX is in disabled state in case when we cannot receive more data from UART. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*