Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: matter: fix memory requirements for 54l15 TF-M #18676

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions doc/nrf/protocols/matter/getting_started/hw_requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <app_boards_spe_nspe_cpuapp_ns>` (:ref:`nrf54l15dk/nrf54l15/cpuapp/ns <zephyr:nrf54l15dk_nrf54l15>`).

+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| Sample | MCUboot ROM | Application ROM | Factory data | Settings | Total ROM | Total RAM (incl. static HEAP) |
+================================================================+===============+===================+================+============+=============+=================================+
| :ref:`Light Bulb <matter_light_bulb_sample>` (Debug) | 48 | 749 | 4 | 40 | 841 | 178 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Light Switch <matter_light_switch_sample>` (Debug) | 48 | 713 | 4 | 40 | 805 | 169 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Lock <matter_lock_sample>` (Debug) | 48 | 725 | 4 | 40 | 817 | 173 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Template <matter_template_sample>` (Debug) | 48 | 674 | 4 | 40 | 766 | 168 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Template <matter_template_sample>` (Release) | 48 | 580 | 4 | 40 | 672 | 161 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Thermostat <matter_thermostat_sample>` (Debug) | 48 | 717 | 4 | 40 | 809 | 168 |
+----------------------------------------------------------------+---------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Window Covering <matter_window_covering_sample>` (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 <matter_light_bulb_sample>` (Debug) | 48 | 126 | 749 | 4 | 40 | 967 | 238 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Light Switch <matter_light_switch_sample>` (Debug) | 48 | 126 | 713 | 4 | 40 | 931 | 229 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Lock <matter_lock_sample>` (Debug) | 48 | 126 | 725 | 4 | 40 | 943 | 233 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Template <matter_template_sample>` (Debug) | 48 | 126 | 674 | 4 | 40 | 892 | 228 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Template <matter_template_sample>` (Release) | 48 | 126 | 580 | 4 | 40 | 798 | 221 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Thermostat <matter_thermostat_sample>` (Debug) | 48 | 126 | 717 | 4 | 40 | 935 | 228 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+
| :ref:`Window Covering <matter_window_covering_sample>` (Debug) | 48 | 126 | 697 | 4 | 40 | 915 | 228 |
+----------------------------------------------------------------+---------------+------------+-------------------+----------------+------------+-------------+---------------------------------+

..

Expand Down
Loading