From 144607e665b319ba606327f9d163bd4592286b2d Mon Sep 17 00:00:00 2001 From: Maciej Baczmanski Date: Wed, 6 Nov 2024 16:05:28 +0100 Subject: [PATCH] doc: matter: fix memory requirements for 54l15 TF-M Fix memory requirements for 54l15 TF-M to take into account RAM and ROM usage by TF-M itself Signed-off-by: Maciej Baczmanski --- .../getting_started/hw_requirements.rst | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/doc/nrf/protocols/matter/getting_started/hw_requirements.rst b/doc/nrf/protocols/matter/getting_started/hw_requirements.rst index a24bf42cc4af..94b515348f82 100644 --- a/doc/nrf/protocols/matter/getting_started/hw_requirements.rst +++ b/doc/nrf/protocols/matter/getting_started/hw_requirements.rst @@ -265,23 +265,23 @@ Values are provided in kilobytes (KB). The following table lists memory requirements for samples running on the :ref:`nRF54L15 DK with CMSE enabled ` (:ref:`nrf54l15dk/nrf54l15/cpuapp/ns `). - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | Sample | MCUboot ROM | Application ROM | Factory data | Settings | Total ROM | Total RAM (incl. static HEAP) | - +================================================================+===============+===================+================+============+=============+=================================+ - | :ref:`Light Bulb ` (Debug) | 48 | 749 | 4 | 40 | 841 | 178 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Light Switch ` (Debug) | 48 | 713 | 4 | 40 | 805 | 169 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Lock ` (Debug) | 48 | 725 | 4 | 40 | 817 | 173 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Template ` (Debug) | 48 | 674 | 4 | 40 | 766 | 168 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Template ` (Release) | 48 | 580 | 4 | 40 | 672 | 161 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Thermostat ` (Debug) | 48 | 717 | 4 | 40 | 809 | 168 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ - | :ref:`Window Covering ` (Debug) | 48 | 697 | 4 | 40 | 789 | 168 | - +----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+ + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | Sample | MCUboot ROM | TF-M ROM | Application ROM | Factory data | Settings | Total ROM | Total RAM (incl. static HEAP) | + +================================================================+===============+============+===================+================+============+=============+=================================+ + | :ref:`Light Bulb ` (Debug) | 48 | 126 | 749 | 4 | 40 | 967 | 238 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Light Switch ` (Debug) | 48 | 126 | 713 | 4 | 40 | 931 | 229 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Lock ` (Debug) | 48 | 126 | 725 | 4 | 40 | 943 | 233 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Template ` (Debug) | 48 | 126 | 674 | 4 | 40 | 892 | 228 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Template ` (Release) | 48 | 126 | 580 | 4 | 40 | 798 | 221 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Thermostat ` (Debug) | 48 | 126 | 717 | 4 | 40 | 935 | 228 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ + | :ref:`Window Covering ` (Debug) | 48 | 126 | 697 | 4 | 40 | 915 | 228 | + +----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+ ..