:orphan: .. title:: CONFIG_NET_PPP_VERIFY_FCS .. kconfig:: CONFIG_NET_PPP_VERIFY_FCS CONFIG_NET_PPP_VERIFY_FCS ######################### *Verify that received FCS is valid* Type: ``bool`` Help ==== .. code-block:: none If you have a reliable link, then it might make sense to disable this as it takes some time to verify the received packet. Direct dependencies =================== \ :kconfig:`NET_PPP ` && \ :kconfig:`NET_DRIVERS ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/net/Kconfig:63`` 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_VERIFY_FCS bool "Verify that received FCS is valid" default y depends on NET_PPP && NET_DRIVERS help If you have a reliable link, then it might make sense to disable this as it takes some time to verify the received packet. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*