Skip to content

Commit b9d1b3f

Browse files
samples: matter: Fix nRF54L15 internal build docs.
* Updated a command for building the internal configuration dedicated to nRF54l15. * Added a command for building this configuration in the release configuration as well. Updated prj_release config file to allow building the internal release configuration. Signed-off-by: Arkadiusz Balys <[email protected]>
1 parent 118ee39 commit b9d1b3f

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

doc/nrf/releases_and_maturity/known_issues.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,19 @@ The issues in this section are related to the :ref:`ug_matter` protocol.
498498

499499
.. rst-class:: v2-9-0
500500

501+
KRKNWK-19846: Wrong command for the internal configuration build in the :ref:`matter_template_sample` sample documentation
502+
There is an obsolete and wrong command for building the sample for the nRF54L15 DK with support for Matter OTA DFU and DFU over Bluetooth SMP, and using internal MRAM only.
503+
504+
**Affected platforms:** nRF54L15
505+
506+
**Workaround:** Use the following command to build the sample for the nRF54L15 DK with support for Matter OTA DFU and DFU over Bluetooth SMP, and using internal MRAM only:
507+
508+
.. code-block:: console
509+
510+
west build -p -b nrf54l15dk/nrf54l15/cpuapp -- -DCONFIG_CHIP_DFU_OVER_BT_SMP=y -DFILE_SUFFIX=internal
511+
512+
.. rst-class:: v2-9-0
513+
501514
KRKNWK-19826: The Device Firmware Upgrade (DFU) fails for nRF5340 DK with RAM power down enabled
502515
The DFU fails for nRF5340 DK, if the application enables the :kconfig:option:`CONFIG_RAM_POWER_DOWN_LIBRARY` Kconfig option.
503516
This option is enabled by default for the ``release`` configuration of the following samples:

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Keys samples
340340
Matter samples
341341
--------------
342342

343-
|no_changes_yet_note|
343+
* Updated the :ref:`matter_template_sample` sample document with the instructions on how to build the sample on the nRF54L15 DK with support for Matter OTA DFU and DFU over Bluetooth SMP, and using internal MRAM only.
344344

345345
Networking samples
346346
------------------

samples/matter/template/README.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,13 @@ The following is an example command to build the sample on the nRF54L15 DK with
143143

144144
.. code-block:: console
145145
146-
west build -p -b nrf54l15dk/nrf54l15/cpuapp -- -DCONFIG_CHIP_DFU_OVER_BT_SMP=y -DPM_STATIC_YML_FILE=pm_static_nrf54l15dk_nrf54l15_cpuapp_internal.yml -Dmcuboot_EXTRA_CONF_FILE=<absolute_path_to_the_template_sample>/sysbuild/mcuboot/boards/nrf54l15dk_nrf54l15_cpuapp_internal.conf -Dmcuboot_EXTRA_DTC_OVERLAY_FILE=<absolute_path_to_the_template_sample>/sysbuild/mcuboot/boards/nrf54l15dk_nrf54l15_cpuapp_internal.overlay
146+
west build -p -b nrf54l15dk/nrf54l15/cpuapp -- -DCONFIG_CHIP_DFU_OVER_BT_SMP=y -DFILE_SUFFIX=internal
147+
148+
To build the sample for the same purpose, but in the ``release`` configuration, use the following command:
149+
150+
.. code-block:: console
151+
152+
west build -p -b nrf54l15dk/nrf54l15/cpuapp -- -DCONFIG_CHIP_DFU_OVER_BT_SMP=y -DFILE_SUFFIX=internal -Dtemplate_EXTRA_CONF_FILE=prj_release.conf
147153
148154
Note that in this case, the size of the application partition is half of what it would be when using a configuration with external flash memory support.
149155

samples/matter/template/prj_release.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ CONFIG_RESET_ON_FATAL_ERROR=y
3737
CONFIG_USE_SEGGER_RTT=n
3838
CONFIG_SHELL=n
3939
CONFIG_OPENTHREAD_SHELL=n
40+
CONFIG_CHIP_LIB_SHELL=n
4041
CONFIG_CONSOLE=n
4142
CONFIG_UART_CONSOLE=n
4243
CONFIG_SERIAL=n

0 commit comments

Comments
 (0)