:orphan: .. title:: CONFIG_MCUMGR_SMP_UDP_MTU .. kconfig:: CONFIG_MCUMGR_SMP_UDP_MTU CONFIG_MCUMGR_SMP_UDP_MTU ######################### *UDP SMP MTU* Type: ``int`` Help ==== .. code-block:: none Maximum size of SMP frames sent and received over UDP, in bytes. This value must satisfy the following relation: MCUMGR_SMP_UDP_MTU <= MCUMGR_BUF_SIZE + SMP msg overhead - address size where address size is determined by IPv4/IPv6 selection. Direct dependencies =================== \ :kconfig:`MCUMGR_SMP_UDP ` && \ :kconfig:`MCUMGR ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1500 Kconfig definition ================== At ``/mgmt/mcumgr/Kconfig:394`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:35`` → ``/mgmt/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Device Management → mcumgr Support → UDP mcumgr SMP transport .. code-block:: kconfig config MCUMGR_SMP_UDP_MTU int "UDP SMP MTU" default 1500 depends on MCUMGR_SMP_UDP && MCUMGR help Maximum size of SMP frames sent and received over UDP, in bytes. This value must satisfy the following relation: MCUMGR_SMP_UDP_MTU <= MCUMGR_BUF_SIZE + SMP msg overhead - address size where address size is determined by IPv4/IPv6 selection. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*