CONFIG_ETH_RTT_MTU

Maximum Transmission Unit (MTU)

Type: int

Help

Sets the Maximum Transmission Unit (MTU) for the Ethernet over RTT network interface. Ethernet default is 1500 and using different value may cause unpredictable behavior. Change this value only if you really known what you are doing. IPv4 requires at least 68 and IPv6 requires at least 1280.

Direct dependencies

ETH_RTT && HAS_SEGGER_RTT

(Includes any dependencies from ifs and menus.)

Default

  • 1500

Kconfig definition

At <nRF>/drivers/net/Kconfig:67

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:1<nRF>/Kconfig.nrf:27<nRF>/drivers/Kconfig:11

Menu path: (Top) → Modules → Nordic nRF Connect → Device Drivers → Ethernet over RTT driver

config ETH_RTT_MTU
    int "Maximum Transmission Unit (MTU)"
    range 68 65536
    default 1500
    depends on ETH_RTT && HAS_SEGGER_RTT
    help
      Sets the Maximum Transmission Unit (MTU) for the Ethernet over RTT
      network interface. Ethernet default is 1500 and using different value
      may cause unpredictable behavior. Change this value only if you
      really known what you are doing. IPv4 requires at least 68 and IPv6
      requires at least 1280.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)