You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -799,9 +799,9 @@ To enable generating the factory data set automatically, go to the example's dir
799
799
.. parsed-literal::
800
800
:class: highlight
801
801
802
-
$ west build -b nrf52840dk_nrf52840 -- -DCONFIG_CHIP_FACTORY_DATA=y -DSB_CONFIG_MATTER_FACTORY_DATA_GENERATE=y
802
+
$ west build -b nrf52840dk_nrf52840 -- -DCONFIG_CHIP_FACTORY_DATA=y -DSB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE=y
803
803
804
-
Alternatively, you can also add the :kconfig:option:`SB_CONFIG_MATTER_FACTORY_DATA_GENERATE=y` Kconfig setting to the example's :file:`sysbuild.conf` file.
804
+
Alternatively, you can also add the :kconfig:option:`SB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE=y` Kconfig setting to the example's :file:`sysbuild.conf` file.
805
805
806
806
Each factory data parameter has a default value.
807
807
These are described in the `Matter nRF Connect Kconfig`_.
@@ -817,7 +817,7 @@ For example (replace ``nrf52840dk_nrf52840`` with own board name):
817
817
.. parsed-literal::
818
818
:class: highlight
819
819
820
-
$ west build -b nrf52840dk_nrf52840 -- -DCONFIG_CHIP_FACTORY_DATA=y --DSB_CONFIG_MATTER_FACTORY_DATA_GENERATE=y --DCONFIG_CHIP_DEVICE_DISCRIMINATOR=0xF11
820
+
$ west build -b nrf52840dk_nrf52840 -- -DCONFIG_CHIP_FACTORY_DATA=y --DSB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE=y --DCONFIG_CHIP_DEVICE_DISCRIMINATOR=0xF11
821
821
822
822
Alternatively, you can add the relevant Kconfig option lines to the example's :file:`prj.conf` file.
823
823
@@ -917,7 +917,7 @@ To generate new certificates disable using default certificates by building an e
@@ -989,10 +989,10 @@ To override the inherited classes, complete the following steps:
989
989
#. Disable building both the default and the nRF Connect implementations of factory data providers to start using your own implementation of factory data parser and provider.
990
990
This can be done in one of the following ways:
991
991
992
-
* Set the :option:`CONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND` Kconfig option to ``y`` in the :file:`prj.conf` file and the :kconfig:option:`SB_CONFIG_MATTER_FACTORY_DATA_GENERATE` Kconfig option to ``n``.
992
+
* Set the :option:`CONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND` Kconfig option to ``y`` in the :file:`prj.conf` file and the :kconfig:option:`SB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE` Kconfig option to ``n``.
993
993
* Build an example with the following option (replace ``<build_target>`` with your board name, for example ``nrf52840dk_nrf52840``):
994
994
995
995
.. parsed-literal::
996
996
:class: highlight
997
997
998
-
$ west build -b <build_target> -- -DCONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND=y -DSB_CONFIG_MATTER_FACTORY_DATA_GENERATE=n
998
+
$ west build -b <build_target> -- -DCONFIG_CHIP_FACTORY_DATA_CUSTOM_BACKEND=y -DSB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE=n
Copy file name to clipboardExpand all lines: docs/matter/end_product/test_event_triggers.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,10 +212,10 @@ You cannot set the enable key to a specific value using factory data unless the
212
212
If it is not set, the default value ``00112233445566778899AABBCCDDEEFF`` will be used.
213
213
For secure operation, you need to ensure that the enable key is unique for all of your devices.
214
214
215
-
To specify the enable key through the build system, enable the :kconfig:option:`SB_CONFIG_MATTER_FACTORY_DATA_GENERATE` Kconfig option by setting it to ``y``.
215
+
To specify the enable key through the build system, enable the :kconfig:option:`SB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE` Kconfig option by setting it to ``y``.
216
216
Then, set the :kconfig:option:`CONFIG_CHIP_DEVICE_ENABLE_KEY` Kconfig option to a 32-byte hexadecimal string value.
217
217
218
-
If :kconfig:option:`SB_CONFIG_MATTER_FACTORY_DATA_GENERATE` is set to ``n``, follow the :ref:`ug_matter_device_factory_provisioning` guide in the Matter documentation to generate the factory data set with the specific key value.
218
+
If :kconfig:option:`SB_CONFIG_MATTER_ADD_ON_FACTORY_DATA_GENERATE` is set to ``n``, follow the :ref:`ug_matter_device_factory_provisioning` guide in the Matter documentation to generate the factory data set with the specific key value.
219
219
220
220
If you do not use the |NCS| Matter common module, you need to read the enable key value manually from the factory data set and provide it to the ``TestEventTrigger`` class.
0 commit comments