From ef0b73f53fab3bc7af75e873f258a0a3d343a6df Mon Sep 17 00:00:00 2001 From: Adrian Gielniewski Date: Fri, 25 Oct 2024 14:35:35 +0200 Subject: [PATCH] doc: matter: add note on openthread memory configuration Mention openthread memory configuration in matter docs. Signed-off-by: Adrian Gielniewski --- .../protocols/matter/getting_started/memory_optimization.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/nrf/protocols/matter/getting_started/memory_optimization.rst b/doc/nrf/protocols/matter/getting_started/memory_optimization.rst index e73079c03e07..6f1e4893d7ca 100644 --- a/doc/nrf/protocols/matter/getting_started/memory_optimization.rst +++ b/doc/nrf/protocols/matter/getting_started/memory_optimization.rst @@ -420,6 +420,10 @@ To use a dynamic heap size on your Matter device, set them both to ``n``. The static heap size means that you can define the maximum heap size for your application by setting the :kconfig:option:`CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE` Kconfig value. You can also adjust the heap dedicated for MbedTLS purposes by setting the :kconfig:option:`CONFIG_MBEDTLS_HEAP_SIZE` Kconfig option value. +.. note:: + The Thread protocol has a separate configuration for memory allocation. + See :ref:`thread_configuring_messagepool` in the Thread documentation for more information. + Memory profiling troubleshooting ================================