:orphan: .. title:: MBEDTLS_OPENTHREAD_OPTIMIZATIONS_ENABLED .. option:: CONFIG_MBEDTLS_OPENTHREAD_OPTIMIZATIONS_ENABLED *Enable mbedTLS optimizations for OpenThread* Type: ``bool`` Help ==== Enable some OpenThread specific mbedTLS optimizations that allows to save some RAM/ROM when OpenThread is used. Note, that when application aims to use other mbedTLS services on top of OpenThread (e.g. secure sockets), it's advised to disable this option. Direct dependencies =================== \ :option:`NET_L2_OPENTHREAD ` && \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS_CFG_FILE ` = "config-tls-generic.h" && \ :option:`MBEDTLS ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :option:`NET_SOCKETS_SOCKOPT_TLS ` Kconfig definition ================== .. highlight:: kconfig At ``modules/Kconfig.tls-generic:324`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:23`` → ``modules/Kconfig:21`` → ``modules/Kconfig.mbedtls:44`` Menu path: (Top) → Modules → mbedTLS Support → TLS configuration .. parsed-literal:: config MBEDTLS_OPENTHREAD_OPTIMIZATIONS_ENABLED bool "Enable mbedTLS optimizations for OpenThread" default y if !\ :option:`NET_SOCKETS_SOCKOPT_TLS ` depends on \ :option:`NET_L2_OPENTHREAD ` && \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS_CFG_FILE ` = "config-tls-generic.h" && \ :option:`MBEDTLS ` help Enable some OpenThread specific mbedTLS optimizations that allows to save some RAM/ROM when OpenThread is used. Note, that when application aims to use other mbedTLS services on top of OpenThread (e.g. secure sockets), it's advised to disable this option. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*