Matter hardware and memory requirements

Hardware that runs Matter protocol applications must meet specification requirements, including providing the right amount of flash memory and being able to run Bluetooth LE and Thread or Wi-Fi concurrently.

Supported SoCs

Currently the following SoCs from Nordic Semiconductor are supported for use with the Matter protocol:

  • nRF5340 (Matter over Thread and Matter over Wi-Fi through the nrf7002ek shield)

  • nRF5340 + nRF7002 (Matter over Thread and Matter over Wi-Fi)

  • nRF52840 (Matter over Thread)

  • nRF54L15 (Matter over Thread)

Front-End Modules

SoCs from Nordic Semiconductor that can run the Matter protocol over Thread can also work with external Front-End Modules. For more information about the FEM support in the nRF Connect SDK, see Working with RF front-end modules and nRF21540 DK.

External flash

For the currently supported SoCs, you must use an external memory with at least 1 MB of flash for nRF52840 and 1.5MB for nRF5340. This is required to perform the DFU operation.

The development kits for the supported SoCs from Nordic Semiconductor are supplied with the MX25R64 type of external flash that meets these memory requirements. However, it is possible to configure the SoCs with different QSPI or SPI memory if it is supported by Zephyr. For this purpose, check the reference design for Nordic DKs for information about how to connect the external memory with SoC, specifically whether the pins are designed for the QSPI or the high-speed SPIM operations.

RAM and flash memory requirements

RAM and flash memory requirement values differ depending on the DK and the programmed sample.

The following tables list memory requirement values for Matter samples.

Values are provided in kilobytes (KB).

The following table lists memory requirements for samples running on the nRF52840 DK (nrf52840dk_nrf52840).

Sample

MCUboot ROM

Application ROM

Factory data

Settings

Total ROM

Total RAM (incl. static HEAP)

Light Bulb (Debug)

28

782

4

32

846

178

Light Bulb (Release)

28

681

4

32

745

171

Light Switch (Debug)

28

744

4

32

808

169

Light Switch (Release)

28

642

4

32

706

161

Lock (Debug)

28

758

4

32

822

168

Lock (Release)

28

639

4

32

703

162

Template (Debug)

28

699

4

32

763

167

Template (Release)

28

605

4

32

669

161

Template (LTO Debug)

28

634

4

32

698

169

Template (LTO Release)

28

542

4

32

606

163

Thermostat (Debug)

28

745

4

32

809

167

Thermostat (Release)

28

639

4

32

703

161

Window Covering (Debug)

28

730

4

32

794

167

Window Covering (Release)

28

630

4

32

694

161

Note

The results for Link-Time Optimization (LTO) are based on building the Thread library from sources. If you use the binary Thread library version, the ROM usage may be higher.

Reference Matter memory layouts

The following tabs show how the Matter stack architecture in the nRF Connect SDK translates to actual memory maps for each of the available Matter platform designs (System-on-Chip, multiprotocol). The memory values match RAM and flash memory requirements listed above.

Each tab shows the memory maps for the development kits supported by the Matter protocol, including two memory maps for the Thingy:53: Matter weather station, which uses Nordic Thingy:53.

For more information about configuration of memory layouts in Matter, see Partition layout.

The following memory map is valid for Matter applications running on the nRF52840 DK (nrf52840dk_nrf52840).

Internal flash (size: 0x100000 = 1024kB)

Partition

Offset

Size

Partition elements

Element offset

Element size

Bootloader (mcuboot)

0kB (0x0)

28kB (0x7000)

Application (mcuboot_primary/app)

28kB (0x7000)

960kB (0xf0000)

mcuboot_pad

28kB (0x7000)

512B (0x200)

mcuboot_primary_app

28.5kB (0x7200)

959.5kB (0xefe00)

Factory data (factory_data)

988kB (0xf7000)

4kB (0x1000)

Non-volatile storage (settings_storage)

992kB (0xf8000)

32kB (0x8000)

SRAM primary (size: 0x40000 = 256kB)

SRAM is located at the address 0x20000000 in the memory address space of the application.

Partition

Offset

Size

Partition elements

Element offset

Element size

Static RAM (sram_primary)

0kB (0x0)

256kB (0x40000)

External flash (size: 0x800000 = 8192kB)

Partition

Offset

Size

Partition elements

Element offset

Element size

Application DFU (mcuboot_secondary)

0kB (0x0)

960kB (0xf0000)

Free space (external_flash)

960kB (0xf0000)

7232kB (0x710000)

You can generate Partition Manager’s ASCII representation of these tables by running the following command for your respective <build_target>:

west build -b <build_target> -t partition_manager_report

For example, for the nrf7002dk_nrf5340_cpuapp build target, the command is as follows:

west build -b nrf7002dk_nrf5340_cpuapp -t partition_manager_report

Note

Partition Manager report generation is not available on the nRF54L15 PDK (nrf54l15pdk_nrf54l15).