:orphan: .. title:: MBEDTLS_ENABLE_HEAP .. option:: CONFIG_MBEDTLS_ENABLE_HEAP *Enable global heap for mbed TLS* Type: ``bool`` Help ==== This option enables the mbedtls to use the heap. This setting must be global so that various applications and libraries in Zephyr do not try to do this themselves as there can be only one heap defined in mbedtls. If this is enabled, then the Zephyr will, during the device startup, initialize the heap automatically. Direct dependencies =================== \ :option:`MBEDTLS ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :option:`CRYPTO_MBEDTLS_SHIM ` - \ :option:`UPDATEHUB_DTLS ` - \ :option:`OPENTHREAD_MBEDTLS ` Kconfig definition ================== .. highlight:: kconfig At ``modules/Kconfig.mbedtls:111`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:23`` → ``modules/Kconfig:21`` Menu path: (Top) → Modules → mbedTLS Support .. parsed-literal:: config MBEDTLS_ENABLE_HEAP bool "Enable global heap for mbed TLS" depends on \ :option:`MBEDTLS ` help This option enables the mbedtls to use the heap. This setting must be global so that various applications and libraries in Zephyr do not try to do this themselves as there can be only one heap defined in mbedtls. If this is enabled, then the Zephyr will, during the device startup, initialize the heap automatically. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*