<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/120766/issue-launching-zap-gui-with-custom-cluster-in-ncs-v3-0-0-preview2</link><description>Hello Team, 
 I’m working on creating a custom Matter cluster using the instructions provided in the Nordic documentation: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/matter/getting_started/custom_clusters.html#ug-matter-creating</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 08 May 2025 12:43:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/120766/issue-launching-zap-gui-with-custom-cluster-in-ncs-v3-0-0-preview2" /><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/534464?ContentTypeID=1</link><pubDate>Thu, 08 May 2025 12:43:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7684ea64-a2ec-4405-a6a3-940c805fc5ca</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi Rahul,&lt;/p&gt;
&lt;p&gt;Looks like the tool complains about multiple things,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Application is failing the Device Type Specification as follows:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;-&amp;nbsp;&amp;nbsp;Check Device Type Compliance on endpoint: 0, device type: MA-rootdevice, cluster: Localization Configuration, attribute: ActiveLocale needs to be enabled&lt;br /&gt;-&amp;nbsp;&amp;nbsp;Check Device Type Compliance on endpoint: 0, device type: MA-rootdevice, cluster: Localization Configuration, attribute: SupportedLocales needs to be enabled&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Length of your custom struct:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Application is failing the Cluster Specification as follows:&lt;br /&gt;&amp;nbsp;using output destination: /home/rahul/nrf/template_bh/src/default_zap/zap-generated&lt;br /&gt;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f550.svg" title="Clock1"&gt;&amp;#x1f550;&lt;/span&gt;&amp;nbsp;File loading time: 520ms&lt;br /&gt;Error in endpoint_config helper: ERROR: Unknown size for non-external attribute: MyStructAttribute / 4293984257&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Reading the zap-generated endpoint.config.h&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;️ Errors:&lt;br /&gt;&amp;nbsp;/home/rahul/nrf/template_bh/src/default_zap/zap-generated/endpoint_config.h:&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/26d4.svg" title="No entry"&gt;&amp;#x26d4;&lt;/span&gt;&amp;nbsp;TypeError: Cannot read properties of undefined (reading &amp;#39;toHTML&amp;#39;)&lt;/p&gt;
&lt;p&gt;Are you able to resolve these errors? I assume they refer to your configurations of your custom clusters that&amp;#39;s causing htis&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/534375?ContentTypeID=1</link><pubDate>Thu, 08 May 2025 05:56:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dbb3cf83-d048-4574-8585-19f4ab5a6a6f</guid><dc:creator>rahul@123</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/ahaug"&gt;AHaug&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;I am able to add custom cluster with one boolean attribute in &lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/matter/template/README.html#matter-template-sample"&gt;matter template&lt;/a&gt; application. The XML file generated through &amp;quot;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/matter/getting_started/manufacturer_cluster_editor_tool.html#ug-nrfconnect-manufacturer-cluster-editor-tool"&gt;nRF Connect Matter Manufacturer Cluster Editor tool&lt;/a&gt;&amp;quot; is buggy, I have to fix that manually. After that I have to add stub call back function in the&amp;nbsp;zcl_callbacks.cpp file as I was getting undefined reference error.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I want to add attribute with struct type in my custom cluster. Through the editor tool it is not generating data in XML file. So I have manually added data in XML file which I don&amp;#39;t know correct or not.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;My structure type:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;struct MyStruct&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;uint8_t width;&lt;/p&gt;
&lt;p&gt;uint8_t length;&lt;/p&gt;
&lt;p&gt;uint8_t height;&lt;/p&gt;
&lt;p&gt;};&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;My XML File:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;
&amp;lt;configurator&amp;gt;

   &amp;lt;struct name=&amp;quot;MyStruct&amp;quot; isFabricScoped=&amp;quot;true&amp;quot;&amp;gt;
      &amp;lt;cluster code=&amp;quot;0xFFF1FC01&amp;quot;/&amp;gt;
      &amp;lt;item fieldId=&amp;quot;1&amp;quot; name=&amp;quot;width&amp;quot; type=&amp;quot;int8u&amp;quot; min=&amp;quot;0&amp;quot; max=&amp;quot;10&amp;quot; isFabricSensitive=&amp;quot;true&amp;quot;/&amp;gt;
      &amp;lt;item fieldId=&amp;quot;2&amp;quot; name=&amp;quot;length&amp;quot; type=&amp;quot;int8u&amp;quot; min=&amp;quot;0&amp;quot; max=&amp;quot;10&amp;quot; isFabricSensitive=&amp;quot;true&amp;quot;/&amp;gt;
      &amp;lt;item fieldId=&amp;quot;3&amp;quot; name=&amp;quot;height&amp;quot; type=&amp;quot;int8u&amp;quot; min=&amp;quot;0&amp;quot; max=&amp;quot;10&amp;quot; isFabricSensitive=&amp;quot;true&amp;quot;/&amp;gt;
   &amp;lt;/struct&amp;gt;

   &amp;lt;cluster&amp;gt;
      &amp;lt;domain&amp;gt;General&amp;lt;/domain&amp;gt;
      &amp;lt;name&amp;gt;Mangoe&amp;lt;/name&amp;gt;
      &amp;lt;code&amp;gt;0xFFF1FC01&amp;lt;/code&amp;gt;
      &amp;lt;define&amp;gt;MANGOE&amp;lt;/define&amp;gt;
      &amp;lt;description&amp;gt;The MyNewCluster cluster showcases a cluster manufacturer extensions&amp;lt;/description&amp;gt;

      &amp;lt;attribute side=&amp;quot;server&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; define=&amp;quot;MY_ATTRIBUTE&amp;quot; type=&amp;quot;boolean&amp;quot; writable=&amp;quot;true&amp;quot; default=&amp;quot;false&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;MyAttribute&amp;lt;/attribute&amp;gt;

      &amp;lt;attribute side=&amp;quot;server&amp;quot; code=&amp;quot;0xFFF10001&amp;quot; define=&amp;quot;MY_STRUCT_ATTRIBUTE&amp;quot; type=&amp;quot;MyStruct&amp;quot; length=&amp;quot;1&amp;quot; writable=&amp;quot;true&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;MyStructAttribute&amp;lt;/attribute&amp;gt;

      &amp;lt;command source=&amp;quot;client&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; name=&amp;quot;MyCommand&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Command that takes two uint8 arguments and returns their sum.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
         &amp;lt;arg name=&amp;quot;arg2&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/command&amp;gt;

      &amp;lt;event side=&amp;quot;server&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; name=&amp;quot;MyEvent&amp;quot; priority=&amp;quot;info&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Event that is generated by the server.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/event&amp;gt;
   &amp;lt;/cluster&amp;gt;

&amp;lt;/configurator&amp;gt;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;zap-gui&amp;nbsp;&lt;/strong&gt;command works fine, I am able to see my cluster and attribute in the gui tool.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;west zap-gui -j zcl.json --cluster ./MyCluster.xml&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;After that&amp;nbsp;&lt;strong&gt;west zap-generate --full&amp;nbsp;&lt;/strong&gt;failed with below error:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;rahul@rahul-H510M-H-V2:~/nrf/template_bh$ west zap-generate --full
ZAP installation directory: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install
Found ZAP 2024.8.14 (up to date)
Searching for zcl file from /home/rahul/nrf/template_bh/src/default_zap/template.zap
&amp;#128295; Using temporary state directory: /tmp/zapb5bbfdmw/zap.jK6eJ7
&amp;#129302; ZAP generation started:
    &amp;#128269; input files: /home/rahul/nrf/template_bh/src/default_zap/template.zap
    &amp;#128269; output pattern: /home/rahul/nrf/template_bh/src/default_zap/zap-generated
    &amp;#128269; using templates: /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json
    &amp;#128269; using zcl data: /home/rahul/nrf/template_bh/zcl.json
    &amp;#128269; zap version: ver. 2024.8.14, featureLevel 103, commit: dca1ad01b8affd07eae1a6ca23afc284067c151c from 2024-08-14T15:52:25.000Z, mode: binary, exe: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/zap-cli
&amp;#128336; Setup time: 14s 91ms 
&amp;#128073; using input file: /home/rahul/nrf/template_bh/src/default_zap/template.zap


&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;

Application is failing the Device Type Specification as follows: 

  - ⚠ Check Device Type Compliance on endpoint: 0, device type: MA-rootdevice, cluster: Localization Configuration, attribute: ActiveLocale needs to be enabled
  - ⚠ Check Device Type Compliance on endpoint: 0, device type: MA-rootdevice, cluster: Localization Configuration, attribute: SupportedLocales needs to be enabled

Application is failing the Cluster Specification as follows: 


&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;&amp;#128680;


&amp;#128073; using output destination: /home/rahul/nrf/template_bh/src/default_zap/zap-generated
&amp;#128336; File loading time: 520ms
Error in endpoint_config helper: ERROR: Unknown size for non-external attribute: MyStructAttribute / 4293984257
&amp;#129302; Generating files:
    ✍  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/callback-stub.cpp
    ✍  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/gen_config.h
    ✍  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/IMClusterCommandHandler.cpp
    ✍  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/PluginApplicationCallbacks.h
    ✍  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/access.h
⚠️  Errors:
    &amp;#128078;  /home/rahul/nrf/template_bh/src/default_zap/zap-generated/endpoint_config.h: ⛔ TypeError: Cannot read properties of undefined (reading &amp;#39;toHTML&amp;#39;)
Stack trace:

TypeError: Cannot read properties of undefined (reading &amp;#39;toHTML&amp;#39;)
    at replacePlaceholdersRecursivelyIn (/snapshot/zap/node_modules/promised-handlebars/lib/markers.js:96:31)
    at /snapshot/zap/node_modules/promised-handlebars/lib/markers.js:106:22
    at /snapshot/zap/node_modules/promised-handlebars/lib/replaceP.js:44:47
    at String.replace (&amp;lt;anonymous&amp;gt;)
    at replaceP (/snapshot/zap/node_modules/promised-handlebars/lib/replaceP.js:37:14)
    at replacePlaceholdersRecursivelyIn (/snapshot/zap/node_modules/promised-handlebars/lib/markers.js:102:20)
    at /snapshot/zap/node_modules/promised-handlebars/lib/markers.js:111:18
    at produceContent (/snapshot/zap/dist/src-electron/generator/template-engine.js:152:19)
    at generateSingleTemplate (/snapshot/zap/dist/src-electron/generator/generation-engine.js:540:27)
    at async Promise.all (index 5)
&amp;#128336; Generation time: 335ms 
{&amp;quot;endpoint_config.h&amp;quot;:{}}
Error: Generation failed: /home/rahul/nrf/template_bh/src/default_zap/template.zap
    at generateSingleFile (/snapshot/zap/dist/src-electron/main-process/startup.js:496:19)
    at startGeneration (/snapshot/zap/dist/src-electron/main-process/startup.js:551:5)
Zap generation error: Error: Generation failed: /home/rahul/nrf/template_bh/src/default_zap/template.zap
Traceback (most recent call last):
  File &amp;quot;/home/rahul/ncs/v3.0.0/modules/lib/matter/scripts/tools/zap/generate.py&amp;quot;, line 404, in &amp;lt;module&amp;gt;
    main()
  File &amp;quot;/home/rahul/ncs/v3.0.0/modules/lib/matter/scripts/tools/zap/generate.py&amp;quot;, line 382, in main
    runGeneration(cmdLineArgs)
  File &amp;quot;/home/rahul/ncs/v3.0.0/modules/lib/matter/scripts/tools/zap/generate.py&amp;quot;, line 240, in runGeneration
    tool.run(&amp;#39;generate&amp;#39;, *args)
  File &amp;quot;/home/rahul/ncs/v3.0.0/modules/lib/matter/scripts/tools/zap/zap_execution.py&amp;quot;, line 109, in run
    subprocess.check_call(
  File &amp;quot;/home/rahul/ncs/toolchains/7cbc0036f4/usr/local/lib/python3.12/subprocess.py&amp;quot;, line 413, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command &amp;#39;[&amp;#39;/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/zap-cli&amp;#39;, &amp;#39;generate&amp;#39;, &amp;#39;-z&amp;#39;, &amp;#39;/home/rahul/nrf/template_bh/zcl.json&amp;#39;, &amp;#39;-g&amp;#39;, &amp;#39;/home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json&amp;#39;, &amp;#39;-o&amp;#39;, &amp;#39;/home/rahul/nrf/template_bh/src/default_zap/zap-generated&amp;#39;, &amp;#39;-i&amp;#39;, &amp;#39;/home/rahul/nrf/template_bh/src/default_zap/template.zap&amp;#39;, &amp;#39;--tempState&amp;#39;]&amp;#39; returned non-zero exit status 1.
FATAL ERROR: command exited with status 1: /home/rahul/ncs/toolchains/7cbc0036f4/usr/local/bin/python3.12 /home/rahul/ncs/v3.0.0/modules/lib/matter/scripts/tools/zap/generate.py /home/rahul/nrf/template_bh/src/default_zap/template.zap -o /home/rahul/nrf/template_bh/src/default_zap/zap-generated -t /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json
rahul@rahul-H510M-H-V2:~/nrf/template_bh$ &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Can you please provide some guidance here.&lt;/p&gt;
&lt;p&gt;NCS version: v3.0.0&lt;/p&gt;
&lt;p&gt;Board: nrf54l15dk&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Rahul&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533886?ContentTypeID=1</link><pubDate>Mon, 05 May 2025 10:42:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5531f399-b305-46a2-8cd3-59757afbd5df</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi Rahul,&lt;/p&gt;
&lt;p&gt;Has anything changed on your end since last week? If not, could you try to follow the steps that resolved this case&amp;nbsp;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/121007/failedto-customize-cluster-as-per-document"&gt;Failedto customize Cluster as per document&lt;/a&gt;&amp;nbsp;?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533384?ContentTypeID=1</link><pubDate>Tue, 29 Apr 2025 12:00:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46b91786-53c1-49a9-84cd-91a9536705c5</guid><dc:creator>rahul@123</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/ahaug"&gt;AHaug&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I am trying to open zap-gui tool for &lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/matter/manufacturer_specific/README.html"&gt;manufacturer_specific&lt;/a&gt; sample using&amp;nbsp;below command&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;west zap-gui -j ./src/default_zap/zcl.json&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;but getting below error&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Errro:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;rahul@rahul-H510M-H-V2:~/nrf/manufacturer_specific$ west zap-gui -j ./src/default_zap/zcl.json
Using ZAP file: /home/rahul/nrf/manufacturer_specific/src/default_zap/manufacturer_specific.zap
Using ZCL file: /home/rahul/nrf/manufacturer_specific/src/default_zap/zcl.json
Using app templates: /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json
ZAP installation directory: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install
Found ZAP 2024.8.14 (up to date)
&amp;#128295; Using temporary state directory: /tmp/zap.Ax6DuA
[121749:0429/172609.960302:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[121749:0429/172609.960336:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[121749:0429/172609.960346:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[121749:0429/172609.960353:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
Xlib:  extension &amp;quot;NV-GLX&amp;quot; missing on display &amp;quot;:0&amp;quot;.
[121781:0429/172610.066499:ERROR:viz_main_impl.cc(196)] Exiting GPU process due to errors during initialization
Xlib:  extension &amp;quot;NV-GLX&amp;quot; missing on display &amp;quot;:0&amp;quot;.
Error: 

Unknown cluster &amp;quot;Access Control&amp;quot; in attributeAccessInterfaceAttributes


    at loadZclJsonOrProperties (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader-silabs.js:2066:27)
    at loadZclMetaFilesCommon (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader.js:63:19)
    at Object.loadZclMetafiles (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader.js:150:28)
    at startNormal (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/main-process/startup.js:62:9)
    at Object.startUpMainInstance (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/main-process/startup.js:744:20)
FATAL ERROR: Error::ThrowAsJavaScriptException napi_throw
FATAL ERROR: command exited with status -6: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/zap /home/rahul/nrf/manufacturer_specific/src/default_zap/manufacturer_specific.zap --zcl /home/rahul/nrf/manufacturer_specific/src/default_zap/zcl.json --gen /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json --tempState
rahul@rahul-H510M-H-V2:~/nrf/manufacturer_specific$&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;We will try with the template sample if its working for it or not.&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Rahul&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533219?ContentTypeID=1</link><pubDate>Mon, 28 Apr 2025 13:50:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:55f8aeec-345f-4e64-8ceb-d75026a9edef</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Both me and several of my colleagues have tried to reproduce the issue without any success. Here&amp;#39;s the following steps we&amp;#39;ve used&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;cd nrf/samples/template&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Copy &amp;nbsp;&lt;code&gt;MyCluster.xml&lt;/code&gt; content from step 2 of the mentioned guide into a new file in the Template sample directory.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;west zap-gui -j ./zcl.json --clusters ./MyCluster.xml&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Could you triple check that you&amp;#39;ve followed these exact steps?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533192?ContentTypeID=1</link><pubDate>Mon, 28 Apr 2025 12:46:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dcf10d04-935f-4df8-a3e1-4ec154270be8</guid><dc:creator>Bhavya Mathukiya</dc:creator><description>&lt;p&gt;Sure &lt;a href="https://devzone.nordicsemi.com/members/ahaug"&gt;AHaug&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;here it is&lt;/p&gt;
&lt;p&gt;zcl.json&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="json"&gt;{
    &amp;quot;description&amp;quot;: &amp;quot;Matter SDK ZCL data&amp;quot;,
    &amp;quot;category&amp;quot;: &amp;quot;matter&amp;quot;,
    &amp;quot;version&amp;quot;: 1,
    &amp;quot;requiredFeatureLevel&amp;quot;: 102,
    &amp;quot;xmlRoot&amp;quot;: [
        &amp;quot;../../ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/zcl&amp;quot;,
        &amp;quot;../../ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/zcl/data-model/chip&amp;quot;,
        &amp;quot;../../ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/zcl/data-model/silabs&amp;quot;,
        &amp;quot;src/default_zap&amp;quot;
    ],
    &amp;quot;_comment&amp;quot;: &amp;quot;Ensure access-control-definitions.xml is first in xmlFile array&amp;quot;,
    &amp;quot;xmlFile&amp;quot;: [
        &amp;quot;access-control-definitions.xml&amp;quot;,
        &amp;quot;chip-types.xml&amp;quot;,
        &amp;quot;access-control-cluster.xml&amp;quot;,
        &amp;quot;account-login-cluster.xml&amp;quot;,
        &amp;quot;administrator-commissioning-cluster.xml&amp;quot;,
        &amp;quot;air-quality-cluster.xml&amp;quot;,
        &amp;quot;application-basic-cluster.xml&amp;quot;,
        &amp;quot;application-launcher-cluster.xml&amp;quot;,
        &amp;quot;audio-output-cluster.xml&amp;quot;,
        &amp;quot;ballast-configuration-cluster.xml&amp;quot;,
        &amp;quot;basic-information-cluster.xml&amp;quot;,
        &amp;quot;binding-cluster.xml&amp;quot;,
        &amp;quot;boolean-state-cluster.xml&amp;quot;,
        &amp;quot;boolean-state-configuration-cluster.xml&amp;quot;,
        &amp;quot;actions-cluster.xml&amp;quot;,
        &amp;quot;bridged-device-basic-information.xml&amp;quot;,
        &amp;quot;chime-cluster.xml&amp;quot;,
        &amp;quot;chip-ota.xml&amp;quot;,
        &amp;quot;channel-cluster.xml&amp;quot;,
        &amp;quot;clusters-extensions.xml&amp;quot;,
        &amp;quot;color-control-cluster.xml&amp;quot;,
        &amp;quot;commissioner-control-cluster.xml&amp;quot;,
        &amp;quot;concentration-measurement-cluster.xml&amp;quot;,
        &amp;quot;content-launch-cluster.xml&amp;quot;,
        &amp;quot;content-app-observer-cluster.xml&amp;quot;,
        &amp;quot;content-control-cluster.xml&amp;quot;,
        &amp;quot;descriptor-cluster.xml&amp;quot;,
        &amp;quot;device-energy-management-cluster.xml&amp;quot;,
        &amp;quot;device-energy-management-mode-cluster.xml&amp;quot;,
        &amp;quot;diagnostic-logs-cluster.xml&amp;quot;,
        &amp;quot;dishwasher-alarm-cluster.xml&amp;quot;,
        &amp;quot;dishwasher-mode-cluster.xml&amp;quot;,
        &amp;quot;microwave-oven-mode-cluster.xml&amp;quot;,
        &amp;quot;door-lock-cluster.xml&amp;quot;,
        &amp;quot;drlc-cluster.xml&amp;quot;,
        &amp;quot;ecosystem-information-cluster.xml&amp;quot;,
        &amp;quot;electrical-energy-measurement-cluster.xml&amp;quot;,
        &amp;quot;electrical-power-measurement-cluster.xml&amp;quot;,
        &amp;quot;energy-evse-cluster.xml&amp;quot;,
        &amp;quot;energy-evse-mode-cluster.xml&amp;quot;,
        &amp;quot;energy-preference-cluster.xml&amp;quot;,
        &amp;quot;ethernet-network-diagnostics-cluster.xml&amp;quot;,
        &amp;quot;fan-control-cluster.xml&amp;quot;,
        &amp;quot;fault-injection-cluster.xml&amp;quot;,
        &amp;quot;fixed-label-cluster.xml&amp;quot;,
        &amp;quot;flow-measurement-cluster.xml&amp;quot;,
        &amp;quot;general-commissioning-cluster.xml&amp;quot;,
        &amp;quot;general-diagnostics-cluster.xml&amp;quot;,
        &amp;quot;global-attributes.xml&amp;quot;,
        &amp;quot;global-bitmaps.xml&amp;quot;,
        &amp;quot;global-enums.xml&amp;quot;,
        &amp;quot;global-structs.xml&amp;quot;,
        &amp;quot;groups-cluster.xml&amp;quot;,
        &amp;quot;group-key-mgmt-cluster.xml&amp;quot;,
        &amp;quot;icd-management-cluster.xml&amp;quot;,
        &amp;quot;identify-cluster.xml&amp;quot;,
        &amp;quot;illuminance-measurement-cluster.xml&amp;quot;,
        &amp;quot;keypad-input-cluster.xml&amp;quot;,
        &amp;quot;laundry-washer-mode-cluster.xml&amp;quot;,
        &amp;quot;laundry-dryer-controls-cluster.xml&amp;quot;,
        &amp;quot;level-control-cluster.xml&amp;quot;,
        &amp;quot;localization-configuration-cluster.xml&amp;quot;,
        &amp;quot;low-power-cluster.xml&amp;quot;,
        &amp;quot;measurement-and-sensing.xml&amp;quot;,
        &amp;quot;media-input-cluster.xml&amp;quot;,
        &amp;quot;media-playback-cluster.xml&amp;quot;,
        &amp;quot;messages-cluster.xml&amp;quot;,
        &amp;quot;mode-base-cluster.xml&amp;quot;,
        &amp;quot;mode-select-cluster.xml&amp;quot;,
        &amp;quot;semantic-tag-namespace-enums.xml&amp;quot;,
        &amp;quot;network-commissioning-cluster.xml&amp;quot;,
        &amp;quot;occupancy-sensing-cluster.xml&amp;quot;,
        &amp;quot;onoff-cluster.xml&amp;quot;,
        &amp;quot;operational-credentials-cluster.xml&amp;quot;,
        &amp;quot;operational-state-cluster.xml&amp;quot;,
        &amp;quot;operational-state-oven-cluster.xml&amp;quot;,
        &amp;quot;operational-state-rvc-cluster.xml&amp;quot;,
        &amp;quot;oven-mode-cluster.xml&amp;quot;,
        &amp;quot;power-topology-cluster.xml&amp;quot;,
        &amp;quot;pressure-measurement-cluster.xml&amp;quot;,
        &amp;quot;power-source-cluster.xml&amp;quot;,
        &amp;quot;power-source-configuration-cluster.xml&amp;quot;,
        &amp;quot;proxy-configuration-cluster.xml&amp;quot;,
        &amp;quot;proxy-discovery-cluster.xml&amp;quot;,
        &amp;quot;proxy-valid-cluster.xml&amp;quot;,
        &amp;quot;pump-configuration-and-control-cluster.xml&amp;quot;,
        &amp;quot;pwm-cluster.xml&amp;quot;,
        &amp;quot;refrigerator-and-temperature-controlled-cabinet-mode-cluster.xml&amp;quot;,
        &amp;quot;refrigerator-alarm.xml&amp;quot;,
        &amp;quot;relative-humidity-measurement-cluster.xml&amp;quot;,
        &amp;quot;rvc-clean-mode-cluster.xml &amp;quot;,
        &amp;quot;rvc-run-mode-cluster.xml&amp;quot;,
        &amp;quot;replacable-monitoring-cluster.xml&amp;quot;,
        &amp;quot;resource-monitoring-cluster.xml&amp;quot;,
        &amp;quot;scene.xml&amp;quot;,
        &amp;quot;service-area-cluster.xml&amp;quot;,
        &amp;quot;smoke-co-alarm-cluster.xml&amp;quot;,
        &amp;quot;software-diagnostics-cluster.xml&amp;quot;,
        &amp;quot;switch-cluster.xml&amp;quot;,
        &amp;quot;target-navigator-cluster.xml&amp;quot;,
        &amp;quot;temperature-control-cluster.xml&amp;quot;,
        &amp;quot;microwave-oven-control-cluster.xml&amp;quot;,
        &amp;quot;temperature-measurement-cluster.xml&amp;quot;,
        &amp;quot;test-cluster.xml&amp;quot;,
        &amp;quot;thermostat-cluster.xml&amp;quot;,
        &amp;quot;thermostat-user-interface-configuration-cluster.xml&amp;quot;,
        &amp;quot;thread-border-router-management-cluster.xml&amp;quot;,
        &amp;quot;thread-network-diagnostics-cluster.xml&amp;quot;,
        &amp;quot;thread-network-directory-cluster.xml&amp;quot;,
        &amp;quot;time-format-localization-cluster.xml&amp;quot;,
        &amp;quot;time-synchronization-cluster.xml&amp;quot;,
        &amp;quot;timer-cluster.xml&amp;quot;,
        &amp;quot;user-label-cluster.xml&amp;quot;,
        &amp;quot;unit-localization-cluster.xml&amp;quot;,
        &amp;quot;valve-configuration-and-control-cluster.xml&amp;quot;,
        &amp;quot;wake-on-lan-cluster.xml&amp;quot;,
        &amp;quot;washer-controls-cluster.xml&amp;quot;,
        &amp;quot;water-heater-management-cluster.xml&amp;quot;,
        &amp;quot;water-heater-mode-cluster.xml&amp;quot;,
        &amp;quot;webrtc-provider-cluster.xml&amp;quot;,
        &amp;quot;wifi-network-diagnostics-cluster.xml&amp;quot;,
        &amp;quot;wifi-network-management-cluster.xml&amp;quot;,
        &amp;quot;window-covering.xml&amp;quot;,
        &amp;quot;matter-devices.xml&amp;quot;,
        &amp;quot;sample-mei-cluster.xml&amp;quot;,
        &amp;quot;types/door-lock.xml&amp;quot;,
        &amp;quot;types/occupancy-sensing.xml&amp;quot;,
        &amp;quot;types/thermostat-user-interface-configuration.xml&amp;quot;,
        &amp;quot;MyCluster.xml&amp;quot;
    ],
    &amp;quot;manufacturersXml&amp;quot;: &amp;quot;../../ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/zcl/data-model/manufacturers.xml&amp;quot;,
    &amp;quot;options&amp;quot;: {
        &amp;quot;text&amp;quot;: {
            &amp;quot;defaultResponsePolicy&amp;quot;: [
                &amp;quot;Always&amp;quot;,
                &amp;quot;Conditional&amp;quot;,
                &amp;quot;Never&amp;quot;
            ]
        },
        &amp;quot;bool&amp;quot;: [
            &amp;quot;commandDiscovery&amp;quot;
        ]
    },
    &amp;quot;defaults&amp;quot;: {
        &amp;quot;text&amp;quot;: {
            &amp;quot;manufacturerCodes&amp;quot;: &amp;quot;0x1002&amp;quot;,
            &amp;quot;defaultResponsePolicy&amp;quot;: &amp;quot;always&amp;quot;
        },
        &amp;quot;bool&amp;quot;: {
            &amp;quot;commandDiscovery&amp;quot;: true
        }
    },
    &amp;quot;listsUseAttributeAccessInterface&amp;quot;: true,
    &amp;quot;attributeAccessInterfaceAttributes&amp;quot;: {
        &amp;quot;Access Control&amp;quot;: [
            &amp;quot;ClusterRevision&amp;quot;,
            &amp;quot;SubjectsPerAccessControlEntry&amp;quot;,
            &amp;quot;TargetsPerAccessControlEntry&amp;quot;,
            &amp;quot;AccessControlEntriesPerFabric&amp;quot;
        ],
        &amp;quot;Administrator Commissioning&amp;quot;: [
            &amp;quot;WindowStatus&amp;quot;,
            &amp;quot;AdminFabricIndex&amp;quot;,
            &amp;quot;AdminVendorId&amp;quot;
        ],
        &amp;quot;Basic Information&amp;quot;: [
            &amp;quot;DataModelRevision&amp;quot;,
            &amp;quot;VendorName&amp;quot;,
            &amp;quot;VendorID&amp;quot;,
            &amp;quot;ProductName&amp;quot;,
            &amp;quot;ProductID&amp;quot;,
            &amp;quot;Location&amp;quot;,
            &amp;quot;HardwareVersion&amp;quot;,
            &amp;quot;HardwareVersionString&amp;quot;,
            &amp;quot;SoftwareVersion&amp;quot;,
            &amp;quot;SoftwareVersionString&amp;quot;,
            &amp;quot;ManufacturingDate&amp;quot;,
            &amp;quot;PartNumber&amp;quot;,
            &amp;quot;ProductURL&amp;quot;,
            &amp;quot;ProductLabel&amp;quot;,
            &amp;quot;SerialNumber&amp;quot;,
            &amp;quot;UniqueID&amp;quot;,
            &amp;quot;CapabilityMinima&amp;quot;,
            &amp;quot;ProductAppearance&amp;quot;,
            &amp;quot;SpecificationVersion&amp;quot;,
            &amp;quot;MaxPathsPerInvoke&amp;quot;
        ],
        &amp;quot;Bridged Device Basic Information&amp;quot;: [
            &amp;quot;ProductAppearance&amp;quot;
        ],
        &amp;quot;Descriptor&amp;quot;: [
            &amp;quot;ClusterRevision&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Device Energy Management&amp;quot;: [
            &amp;quot;ESAType&amp;quot;,
            &amp;quot;ESACanGenerate&amp;quot;,
            &amp;quot;ESAState&amp;quot;,
            &amp;quot;AbsMinPower&amp;quot;,
            &amp;quot;AbsMaxPower&amp;quot;,
            &amp;quot;PowerAdjustmentCapability&amp;quot;,
            &amp;quot;Forecast&amp;quot;,
            &amp;quot;OptOutState&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Device Energy Management Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Door Lock&amp;quot;: [
            &amp;quot;AliroReaderVerificationKey&amp;quot;,
            &amp;quot;AliroReaderGroupIdentifier&amp;quot;,
            &amp;quot;AliroReaderGroupSubIdentifier&amp;quot;,
            &amp;quot;AliroGroupResolvingKey&amp;quot;,
            &amp;quot;AliroBLEAdvertisingVersion&amp;quot;,
            &amp;quot;NumberOfAliroCredentialIssuerKeysSupported&amp;quot;,
            &amp;quot;NumberOfAliroEndpointKeysSupported&amp;quot;
        ],
        &amp;quot;Energy EVSE&amp;quot;: [
            &amp;quot;State&amp;quot;,
            &amp;quot;SupplyState&amp;quot;,
            &amp;quot;FaultState&amp;quot;,
            &amp;quot;ChargingEnabledUntil&amp;quot;,
            &amp;quot;DischargingEnabledUntil&amp;quot;,
            &amp;quot;CircuitCapacity&amp;quot;,
            &amp;quot;MinimumChargeCurrent&amp;quot;,
            &amp;quot;MaximumChargeCurrent&amp;quot;,
            &amp;quot;MaximumDischargeCurrent&amp;quot;,
            &amp;quot;UserMaximumChargeCurrent&amp;quot;,
            &amp;quot;RandomizationDelayWindow&amp;quot;,
            &amp;quot;NextChargeStartTime&amp;quot;,
            &amp;quot;NextChargeTargetTime&amp;quot;,
            &amp;quot;NextChargeRequiredEnergy&amp;quot;,
            &amp;quot;NextChargeTargetSoC&amp;quot;,
            &amp;quot;ApproximateEVEfficiency&amp;quot;,
            &amp;quot;StateOfCharge&amp;quot;,
            &amp;quot;BatteryCapacity&amp;quot;,
            &amp;quot;VehicleID&amp;quot;,
            &amp;quot;SessionID&amp;quot;,
            &amp;quot;SessionDuration&amp;quot;,
            &amp;quot;SessionEnergyCharged&amp;quot;,
            &amp;quot;SessionEnergyDischarged&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Energy EVSE Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Ethernet Network Diagnostics&amp;quot;: [
            &amp;quot;PHYRate&amp;quot;,
            &amp;quot;FullDuplex&amp;quot;,
            &amp;quot;CarrierDetect&amp;quot;,
            &amp;quot;TimeSinceReset&amp;quot;,
            &amp;quot;PacketRxCount&amp;quot;,
            &amp;quot;PacketTxCount&amp;quot;,
            &amp;quot;TxErrCount&amp;quot;,
            &amp;quot;CollisionCount&amp;quot;,
            &amp;quot;OverrunCount&amp;quot;
        ],
        &amp;quot;General Commissioning&amp;quot;: [
            &amp;quot;RegulatoryConfig&amp;quot;,
            &amp;quot;LocationCapability&amp;quot;,
            &amp;quot;BasicCommissioningInfo&amp;quot;,
            &amp;quot;SupportsConcurrentConnection&amp;quot;
        ],
        &amp;quot;General Diagnostics&amp;quot;: [
            &amp;quot;NetworkInterfaces&amp;quot;,
            &amp;quot;ActiveHardwareFaults&amp;quot;,
            &amp;quot;ActiveRadioFaults&amp;quot;,
            &amp;quot;ActiveNetworkFaults&amp;quot;,
            &amp;quot;RebootCount&amp;quot;,
            &amp;quot;UpTime&amp;quot;,
            &amp;quot;TotalOperationalHours&amp;quot;,
            &amp;quot;BootReason&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;,
            &amp;quot;ClusterRevision&amp;quot;
        ],
        &amp;quot;Group Key Management&amp;quot;: [
            &amp;quot;ClusterRevision&amp;quot;,
            &amp;quot;MaxGroupsPerFabric&amp;quot;,
            &amp;quot;MaxGroupKeysPerFabric&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;ICD Management&amp;quot;: [
            &amp;quot;IdleModeDuration&amp;quot;,
            &amp;quot;ActiveModeDuration&amp;quot;,
            &amp;quot;ActiveModeThreshold&amp;quot;,
            &amp;quot;RegisteredClients&amp;quot;,
            &amp;quot;ICDCounter&amp;quot;,
            &amp;quot;ClientsSupportedPerFabric&amp;quot;,
            &amp;quot;MaximumCheckInBackOff&amp;quot;
        ],
        &amp;quot;Occupancy Sensing&amp;quot;: [
            &amp;quot;HoldTimeLimits&amp;quot;,
            &amp;quot;HoldTime&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Operational Credentials&amp;quot;: [
            &amp;quot;SupportedFabrics&amp;quot;,
            &amp;quot;CommissionedFabrics&amp;quot;,
            &amp;quot;CurrentFabricIndex&amp;quot;
        ],
        &amp;quot;Software Diagnostics&amp;quot;: [
            &amp;quot;CurrentHeapFree&amp;quot;,
            &amp;quot;CurrentHeapHighWatermark&amp;quot;,
            &amp;quot;CurrentHeapUsed&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;,
            &amp;quot;ThreadMetrics&amp;quot;
        ],
        &amp;quot;Unit Testing&amp;quot;: [
            &amp;quot;struct_attr&amp;quot;,
            &amp;quot;nullable_struct&amp;quot;,
            &amp;quot;general_error_boolean&amp;quot;,
            &amp;quot;cluster_error_boolean&amp;quot;,
            &amp;quot;global_struct&amp;quot;,
            &amp;quot;nullable_global_struct&amp;quot;
        ],
        &amp;quot;Thread Border Router Management&amp;quot;: [
            &amp;quot;BorderRouterName&amp;quot;,
            &amp;quot;BorderAgentID&amp;quot;,
            &amp;quot;ThreadVersion&amp;quot;,
            &amp;quot;InterfaceEnabled&amp;quot;,
            &amp;quot;ActiveDatasetTimestamp&amp;quot;,
            &amp;quot;PendingDatasetTimestamp&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Thread Network Diagnostics&amp;quot;: [
            &amp;quot;Channel&amp;quot;,
            &amp;quot;RoutingRole&amp;quot;,
            &amp;quot;NetworkName&amp;quot;,
            &amp;quot;PanId&amp;quot;,
            &amp;quot;ExtendedPanId&amp;quot;,
            &amp;quot;MeshLocalPrefix&amp;quot;,
            &amp;quot;OverrunCount&amp;quot;,
            &amp;quot;PartitionId&amp;quot;,
            &amp;quot;Weighting&amp;quot;,
            &amp;quot;DataVersion&amp;quot;,
            &amp;quot;StableDataVersion&amp;quot;,
            &amp;quot;LeaderRouterId&amp;quot;,
            &amp;quot;DetachedRoleCount&amp;quot;,
            &amp;quot;ChildRoleCount&amp;quot;,
            &amp;quot;RouterRoleCount&amp;quot;,
            &amp;quot;LeaderRoleCount&amp;quot;,
            &amp;quot;AttachAttemptCount&amp;quot;,
            &amp;quot;PartitionIdChangeCount&amp;quot;,
            &amp;quot;BetterPartitionAttachAttemptCount&amp;quot;,
            &amp;quot;ParentChangeCount&amp;quot;,
            &amp;quot;TxTotalCount&amp;quot;,
            &amp;quot;TxUnicastCount&amp;quot;,
            &amp;quot;TxBroadcastCount&amp;quot;,
            &amp;quot;TxAckRequestedCount&amp;quot;,
            &amp;quot;TxAckedCount&amp;quot;,
            &amp;quot;TxNoAckRequestedCount&amp;quot;,
            &amp;quot;TxDataCount&amp;quot;,
            &amp;quot;TxDataPollCount&amp;quot;,
            &amp;quot;TxBeaconCount&amp;quot;,
            &amp;quot;TxBeaconRequestCount&amp;quot;,
            &amp;quot;TxOtherCount&amp;quot;,
            &amp;quot;TxRetryCount&amp;quot;,
            &amp;quot;TxDirectMaxRetryExpiryCount&amp;quot;,
            &amp;quot;TxIndirectMaxRetryExpiryCount&amp;quot;,
            &amp;quot;TxErrCcaCount&amp;quot;,
            &amp;quot;TxErrAbortCount&amp;quot;,
            &amp;quot;TxErrBusyChannelCount&amp;quot;,
            &amp;quot;RxTotalCount&amp;quot;,
            &amp;quot;RxUnicastCount&amp;quot;,
            &amp;quot;RxBroadcastCount&amp;quot;,
            &amp;quot;RxDataCount&amp;quot;,
            &amp;quot;RxDataPollCount&amp;quot;,
            &amp;quot;RxBeaconCount&amp;quot;,
            &amp;quot;RxBeaconRequestCount&amp;quot;,
            &amp;quot;RxOtherCount&amp;quot;,
            &amp;quot;RxAddressFilteredCount&amp;quot;,
            &amp;quot;RxDestAddrFilteredCount&amp;quot;,
            &amp;quot;RxDuplicatedCount&amp;quot;,
            &amp;quot;RxErrNoFrameCount&amp;quot;,
            &amp;quot;RxErrUnknownNeighborCount&amp;quot;,
            &amp;quot;RxErrInvalidSrcAddrCount&amp;quot;,
            &amp;quot;RxErrSecCount&amp;quot;,
            &amp;quot;RxErrFcsCount&amp;quot;,
            &amp;quot;RxErrOtherCount&amp;quot;,
            &amp;quot;ActiveTimestamp&amp;quot;,
            &amp;quot;PendingTimestamp&amp;quot;,
            &amp;quot;Delay&amp;quot;,
            &amp;quot;SecurityPolicy&amp;quot;,
            &amp;quot;ChannelPage0Mask&amp;quot;,
            &amp;quot;OperationalDatasetComponents&amp;quot;
        ],
        &amp;quot;Wi-Fi Network Diagnostics&amp;quot;: [
            &amp;quot;BSSID&amp;quot;,
            &amp;quot;SecurityType&amp;quot;,
            &amp;quot;WiFiVersion&amp;quot;,
            &amp;quot;ChannelNumber&amp;quot;,
            &amp;quot;RSSI&amp;quot;,
            &amp;quot;BeaconLostCount&amp;quot;,
            &amp;quot;BeaconRxCount&amp;quot;,
            &amp;quot;PacketMulticastRxCount&amp;quot;,
            &amp;quot;PacketMulticastTxCount&amp;quot;,
            &amp;quot;PacketUnicastRxCount&amp;quot;,
            &amp;quot;PacketUnicastTxCount&amp;quot;,
            &amp;quot;CurrentMaxRate&amp;quot;,
            &amp;quot;OverrunCount&amp;quot;
        ],
        &amp;quot;Channel&amp;quot;: [
            &amp;quot;Lineup&amp;quot;,
            &amp;quot;CurrentChannel&amp;quot;
        ],
        &amp;quot;Media Playback&amp;quot;: [
            &amp;quot;SampledPosition&amp;quot;,
            &amp;quot;ActiveAudioTrack&amp;quot;,
            &amp;quot;ActiveTextTrack&amp;quot;
        ],
        &amp;quot;Application Launcher&amp;quot;: [
            &amp;quot;CurrentApp&amp;quot;
        ],
        &amp;quot;Application Basic&amp;quot;: [
            &amp;quot;Application&amp;quot;
        ],
        &amp;quot;Time Synchronization&amp;quot;: [
            &amp;quot;TrustedTimeSource&amp;quot;,
            &amp;quot;DefaultNTP&amp;quot;,
            &amp;quot;TimeZone&amp;quot;,
            &amp;quot;DSTOffset&amp;quot;,
            &amp;quot;UTCTime&amp;quot;,
            &amp;quot;LocalTime&amp;quot;,
            &amp;quot;Granularity&amp;quot;,
            &amp;quot;TimeZoneListMaxSize&amp;quot;,
            &amp;quot;DSTOffsetListMaxSize&amp;quot;
        ],
        &amp;quot;Temperature Control&amp;quot;: [
            &amp;quot;SupportedTemperatureLevels&amp;quot;
        ],
        &amp;quot;Dishwasher Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Microwave Oven Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Microwave Oven Control&amp;quot;: [
            &amp;quot;CookTime&amp;quot;,
            &amp;quot;MaxCookTime&amp;quot;,
            &amp;quot;PowerSetting&amp;quot;,
            &amp;quot;MinPower&amp;quot;,
            &amp;quot;MaxPower&amp;quot;,
            &amp;quot;PowerStep&amp;quot;,
            &amp;quot;SupportedWatts&amp;quot;,
            &amp;quot;SelectedWattIndex&amp;quot;,
            &amp;quot;WattRating&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Laundry Washer Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Refrigerator And Temperature Controlled Cabinet Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;RVC Clean Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;RVC Run Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Operational State&amp;quot;: [
            &amp;quot;OperationalState&amp;quot;,
            &amp;quot;OperationalError&amp;quot;,
            &amp;quot;CurrentPhase&amp;quot;,
            &amp;quot;CountdownTime&amp;quot;
        ],
        &amp;quot;RVC Operational State&amp;quot;: [
            &amp;quot;OperationalState&amp;quot;,
            &amp;quot;OperationalError&amp;quot;,
            &amp;quot;CurrentPhase&amp;quot;,
            &amp;quot;CountdownTime&amp;quot;
        ],
        &amp;quot;Oven Cavity Operational State&amp;quot;: [
            &amp;quot;OperationalState&amp;quot;,
            &amp;quot;OperationalError&amp;quot;,
            &amp;quot;CurrentPhase&amp;quot;,
            &amp;quot;CountdownTime&amp;quot;
        ],
        &amp;quot;Activated Carbon Filter Monitoring&amp;quot;: [
            &amp;quot;Condition&amp;quot;,
            &amp;quot;DegradationDirection&amp;quot;,
            &amp;quot;ChangeIndication&amp;quot;,
            &amp;quot;InPlaceIndicator&amp;quot;,
            &amp;quot;LastChangedTime&amp;quot;,
            &amp;quot;ReplacementProductList&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;HEPA Filter Monitoring&amp;quot;: [
            &amp;quot;Condition&amp;quot;,
            &amp;quot;DegradationDirection&amp;quot;,
            &amp;quot;ChangeIndication&amp;quot;,
            &amp;quot;InPlaceIndicator&amp;quot;,
            &amp;quot;LastChangedTime&amp;quot;,
            &amp;quot;ReplacementProductList&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Carbon Monoxide Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Carbon Dioxide Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Nitrogen Dioxide Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Ozone Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;PM2.5 Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Formaldehyde Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;PM1 Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;PM10 Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Total Volatile Organic Compounds Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Radon Concentration Measurement&amp;quot;: [
            &amp;quot;MeasuredValue&amp;quot;,
            &amp;quot;MinMeasuredValue&amp;quot;,
            &amp;quot;MaxMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValue&amp;quot;,
            &amp;quot;PeakMeasuredValueWindow&amp;quot;,
            &amp;quot;AverageMeasuredValue&amp;quot;,
            &amp;quot;AverageMeasuredValueWindow&amp;quot;,
            &amp;quot;Uncertainty&amp;quot;,
            &amp;quot;MeasurementUnit&amp;quot;,
            &amp;quot;MeasurementMedium&amp;quot;,
            &amp;quot;LevelValue&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Air Quality&amp;quot;: [
            &amp;quot;AirQuality&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Electrical Energy Measurement&amp;quot;: [
            &amp;quot;Accuracy&amp;quot;,
            &amp;quot;CumulativeEnergyImported&amp;quot;,
            &amp;quot;CumulativeEnergyExported&amp;quot;,
            &amp;quot;PeriodicEnergyImported&amp;quot;,
            &amp;quot;PeriodicEnergyExported&amp;quot;,
            &amp;quot;CumulativeEnergyReset&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Electrical Power Measurement&amp;quot;: [
            &amp;quot;PowerMode&amp;quot;,
            &amp;quot;NumberOfMeasurementTypes&amp;quot;,
            &amp;quot;Accuracy&amp;quot;,
            &amp;quot;Ranges&amp;quot;,
            &amp;quot;Voltage&amp;quot;,
            &amp;quot;ActiveCurrent&amp;quot;,
            &amp;quot;ReactiveCurrent&amp;quot;,
            &amp;quot;ApparentCurrent&amp;quot;,
            &amp;quot;ActivePower&amp;quot;,
            &amp;quot;ReactivePower&amp;quot;,
            &amp;quot;ApparentPower&amp;quot;,
            &amp;quot;RMSVoltage&amp;quot;,
            &amp;quot;RMSCurrent&amp;quot;,
            &amp;quot;RMSPower&amp;quot;,
            &amp;quot;Frequency&amp;quot;,
            &amp;quot;HarmonicCurrents&amp;quot;,
            &amp;quot;HarmonicPhases&amp;quot;,
            &amp;quot;PowerFactor&amp;quot;,
            &amp;quot;NeutralCurrent&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Power Topology&amp;quot;: [
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Valve Configuration and Control&amp;quot;: [
            &amp;quot;RemainingDuration&amp;quot;
        ],
        &amp;quot;Boolean State Configuration&amp;quot;: [
            &amp;quot;CurrentSensitivityLevel&amp;quot;
        ],
        &amp;quot;Water Heater Management&amp;quot;: [
            &amp;quot;HeaterTypes&amp;quot;,
            &amp;quot;HeatDemand&amp;quot;,
            &amp;quot;TankVolume&amp;quot;,
            &amp;quot;EstimatedHeatRequired&amp;quot;,
            &amp;quot;TankPercentage&amp;quot;,
            &amp;quot;BoostState&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;,
            &amp;quot;ClusterRevision&amp;quot;
        ],
        &amp;quot;Water Heater Mode&amp;quot;: [
            &amp;quot;SupportedModes&amp;quot;,
            &amp;quot;CurrentMode&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ],
        &amp;quot;Wi-Fi Network Management&amp;quot;: [
            &amp;quot;SSID&amp;quot;,
            &amp;quot;PassphraseSurrogate&amp;quot;
        ],
        &amp;quot;Thread Network Directory&amp;quot;: [
            &amp;quot;PreferredExtendedPanID&amp;quot;,
            &amp;quot;ThreadNetworks&amp;quot;,
            &amp;quot;ThreadNetworkTableSize&amp;quot;
        ],
        &amp;quot;Service Area&amp;quot;: [
            &amp;quot;CurrentArea&amp;quot;,
            &amp;quot;EstimatedEndTime&amp;quot;,
            &amp;quot;FeatureMap&amp;quot;
        ]
    },
    &amp;quot;mandatoryDeviceTypes&amp;quot;: &amp;quot;0x0016&amp;quot;,
    &amp;quot;defaultReportingPolicy&amp;quot;: &amp;quot;mandatory&amp;quot;,
    &amp;quot;ZCLDataTypes&amp;quot;: [
        &amp;quot;ARRAY&amp;quot;,
        &amp;quot;BITMAP&amp;quot;,
        &amp;quot;ENUM&amp;quot;,
        &amp;quot;NUMBER&amp;quot;,
        &amp;quot;STRING&amp;quot;,
        &amp;quot;STRUCT&amp;quot;
    ],
    &amp;quot;fabricHandling&amp;quot;: {
        &amp;quot;automaticallyCreateFields&amp;quot;: true,
        &amp;quot;indexFieldId&amp;quot;: 254,
        &amp;quot;indexFieldName&amp;quot;: &amp;quot;FabricIndex&amp;quot;,
        &amp;quot;indexType&amp;quot;: &amp;quot;fabric_idx&amp;quot;
    },
    &amp;quot;uiOptions&amp;quot;: {
        &amp;quot;showProfileId&amp;quot;: false
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;MyCluster.xml&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;
&amp;lt;configurator&amp;gt;
   &amp;lt;cluster&amp;gt;
      &amp;lt;domain&amp;gt;General&amp;lt;/domain&amp;gt;
      &amp;lt;name&amp;gt;MyNewCluster&amp;lt;/name&amp;gt;
      &amp;lt;code&amp;gt;0xFFF1FC01&amp;lt;/code&amp;gt;
      &amp;lt;define&amp;gt;MY_NEW_CLUSTER&amp;lt;/define&amp;gt;
      &amp;lt;description&amp;gt;The MyNewCluster cluster showcases a cluster manufacturer extensions&amp;lt;/description&amp;gt;
      &amp;lt;attribute side=&amp;quot;server&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; define=&amp;quot;MY_ATTRIBUTE&amp;quot; type=&amp;quot;boolean&amp;quot; writable=&amp;quot;true&amp;quot; default=&amp;quot;false&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;MyAttribute&amp;lt;/attribute&amp;gt;
      &amp;lt;command source=&amp;quot;client&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; name=&amp;quot;MyCommand&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Command that takes two uint8 arguments and returns their sum.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
         &amp;lt;arg name=&amp;quot;arg2&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/command&amp;gt;
      &amp;lt;event side=&amp;quot;server&amp;quot; code=&amp;quot;0xFFF10000&amp;quot; name=&amp;quot;MyEvent&amp;quot; priority=&amp;quot;info&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Event that is generated by the server.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/event&amp;gt;
   &amp;lt;/cluster&amp;gt;
   &amp;lt;clusterExtension code=&amp;quot;0x0028&amp;quot;&amp;gt;
      &amp;lt;attribute side=&amp;quot;server&amp;quot; code=&amp;quot;0x17&amp;quot; define=&amp;quot;EXTENDED_ATTRIBUTE&amp;quot; type=&amp;quot;boolean&amp;quot; writable=&amp;quot;true&amp;quot; default=&amp;quot;false&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;ExtendedAttribute&amp;lt;/attribute&amp;gt;
      &amp;lt;command source=&amp;quot;client&amp;quot; code=&amp;quot;0x00&amp;quot; name=&amp;quot;ExtendedCommand&amp;quot; response=&amp;quot;ExtendedCommandResponse&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Command that takes two uint8 arguments and returns their sum.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
         &amp;lt;arg name=&amp;quot;arg2&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/command&amp;gt;
      &amp;lt;event side=&amp;quot;server&amp;quot; code=&amp;quot;0x04&amp;quot; name=&amp;quot;ExtendedEvent&amp;quot; priority=&amp;quot;info&amp;quot; optional=&amp;quot;false&amp;quot;&amp;gt;
         &amp;lt;description&amp;gt;Event that is generated by the server.&amp;lt;/description&amp;gt;
         &amp;lt;arg name=&amp;quot;arg1&amp;quot; type=&amp;quot;int8u&amp;quot;/&amp;gt;
      &amp;lt;/event&amp;gt;
   &amp;lt;/clusterExtension&amp;gt;
   &amp;lt;enum name=&amp;quot;MyNewEnum&amp;quot; type=&amp;quot;int8u&amp;quot;&amp;gt;
      &amp;lt;cluster code=&amp;quot;0xFFF1FC01&amp;quot; /&amp;gt;
      &amp;lt;item name=&amp;quot;EnumValue1&amp;quot; value=&amp;quot;0&amp;quot; /&amp;gt;
      &amp;lt;item name=&amp;quot;EnumValue2&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt;
   &amp;lt;/enum&amp;gt;
   &amp;lt;struct name=&amp;quot;MyStruct&amp;quot; isFabricScoped=&amp;quot;true&amp;quot;&amp;gt;
      &amp;lt;cluster code=&amp;quot;0xFFF1FC01&amp;quot;/&amp;gt;
      &amp;lt;item fieldId=&amp;quot;1&amp;quot; name=&amp;quot;Data&amp;quot; type=&amp;quot;octet_string&amp;quot; length=&amp;quot;128&amp;quot; isFabricSensitive=&amp;quot;true&amp;quot;/&amp;gt;
   &amp;lt;/struct&amp;gt;
   &amp;lt;deviceType&amp;gt;
      &amp;lt;name&amp;gt;my-new-device&amp;lt;/name&amp;gt;
      &amp;lt;domain&amp;gt;CHIP&amp;lt;/domain&amp;gt;
      &amp;lt;typeName&amp;gt;My new device&amp;lt;/typeName&amp;gt;
      &amp;lt;profileId editable=&amp;quot;false&amp;quot;&amp;gt;0x0104&amp;lt;/profileId&amp;gt;
      &amp;lt;deviceId editable=&amp;quot;false&amp;quot;&amp;gt;0xfff10001&amp;lt;/deviceId&amp;gt;
      &amp;lt;class&amp;gt;Simple&amp;lt;/class&amp;gt;
      &amp;lt;scope&amp;gt;Endpoint&amp;lt;/scope&amp;gt;
      &amp;lt;clusters lockOthers=&amp;quot;true&amp;quot;&amp;gt;
         &amp;lt;include cluster=&amp;quot;MyNewCluster&amp;quot; client=&amp;quot;true&amp;quot; server=&amp;quot;true&amp;quot; clientLocked=&amp;quot;false&amp;quot; serverLocked=&amp;quot;false&amp;quot;/&amp;gt;
      &amp;lt;/clusters&amp;gt;
   &amp;lt;/deviceType&amp;gt;
&amp;lt;/configurator&amp;gt;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Bhavya&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533179?ContentTypeID=1</link><pubDate>Mon, 28 Apr 2025 11:54:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3fd8cd84-a9fa-4274-a797-886e5c1d968e</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Could you also share your zcl.json file? I would like to have a look at it and see if it somehow is missing something&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533169?ContentTypeID=1</link><pubDate>Mon, 28 Apr 2025 11:32:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d72c1d03-93f3-4b70-bca6-858ece232f7a</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi Bhavya,&lt;/p&gt;
&lt;p&gt;Noted, thank you for verifying. I will bring it up with the Matter team ASAP&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/533164?ContentTypeID=1</link><pubDate>Mon, 28 Apr 2025 11:26:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8496daab-e836-4f03-a275-0469551aa6d5</guid><dc:creator>Bhavya Mathukiya</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/ahaug"&gt;AHaug&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We have tried with the NCS v3.0.0 and it seems like issue is still there. We have even tried to use zap tool with &lt;strong&gt;manufacturer_specific&lt;/strong&gt; sample but we are getting below error. Can you please check with the Matter team?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;rahul@rahul-H510M-H-V2:~/nrf/manufacturer_specific$ west zap-gui -j ./src/default_zap/zcl.json --cluster ./src/default_zap/NordicDevKitCluster.xml 
Using ZAP file: /home/rahul/nrf/manufacturer_specific/src/default_zap/manufacturer_specific.zap
Using ZCL file: /home/rahul/nrf/manufacturer_specific/src/default_zap/zcl.json
Using app templates: /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json
ZAP installation directory: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install
Found ZAP 2024.8.14 (up to date)
&amp;#128295; Using temporary state directory: /tmp/zap.TkCPEq
[120190:0428/164621.607700:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[120190:0428/164621.607729:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[120190:0428/164621.607737:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
[120190:0428/164621.607746:ERROR:bus.cc(407)] Failed to connect to the bus: &amp;#39;=&amp;#39; character not found or has no value following it
Xlib:  extension &amp;quot;NV-GLX&amp;quot; missing on display &amp;quot;:0&amp;quot;.
[120236:0428/164621.706817:ERROR:viz_main_impl.cc(196)] Exiting GPU process due to errors during initialization
Xlib:  extension &amp;quot;NV-GLX&amp;quot; missing on display &amp;quot;:0&amp;quot;.
Error: 
 
Unknown cluster &amp;quot;Access Control&amp;quot; in attributeAccessInterfaceAttributes
 
 
    at loadZclJsonOrProperties (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader-silabs.js:2066:27)
    at loadZclMetaFilesCommon (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader.js:63:19)
    at Object.loadZclMetafiles (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/zcl/zcl-loader.js:150:28)
    at startNormal (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/main-process/startup.js:62:9)
    at Object.startUpMainInstance (/home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/resources/app.asar/dist/src-electron/main-process/startup.js:744:20)
FATAL ERROR: Error::ThrowAsJavaScriptException napi_throw
FATAL ERROR: command exited with status -6: /home/rahul/ncs/v3.0.0/modules/lib/matter/.zap-install/zap /home/rahul/nrf/manufacturer_specific/src/default_zap/manufacturer_specific.zap --zcl /home/rahul/nrf/manufacturer_specific/src/default_zap/zcl.json --gen /home/rahul/ncs/v3.0.0/modules/lib/matter/src/app/zap-templates/app-templates.json --tempState&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Bhavya&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/532592?ContentTypeID=1</link><pubDate>Wed, 23 Apr 2025 12:06:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4b968d08-6077-438b-ad51-0a409ec3227a</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi Rahul,&lt;/p&gt;
&lt;p&gt;Thank you :)&lt;/p&gt;
&lt;p&gt;I just got a verification that NCS v3.0.0 should be fully tagged and released this week (ETA tomorrow, probably in about 24-48h from now). If you could try to perform the setup and replicate the issue with this release that would be the best approach.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/532478?ContentTypeID=1</link><pubDate>Wed, 23 Apr 2025 05:21:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac663724-2a01-405e-a173-cea21d19c01d</guid><dc:creator>Rahul_Chauhan</dc:creator><description>&lt;p class="" data-start="67" data-end="213"&gt;Hi Andreas,&lt;/p&gt;
&lt;p class="" data-start="67" data-end="213"&gt;&lt;br data-start="78" data-end="81" /&gt; Hope you had a great festival! Just checking in&amp;nbsp; I&amp;rsquo;m still stuck trying to make a custom cluster. Any updates from the Matter team?&lt;/p&gt;
&lt;p class="" data-start="215" data-end="242"&gt;Thanks,&lt;br data-start="222" data-end="225" /&gt; &lt;strong data-start="225" data-end="242" data-is-last-node=""&gt;Rahul Chauhan&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/532052?ContentTypeID=1</link><pubDate>Wed, 16 Apr 2025 15:23:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0b22f83a-73b1-4525-9fdf-65af10fcea55</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;As of now there are either not a known issue or a work in progress since the sprints to finalize the 3.0.0 full release are still ongoing (if it is not an issue with the installation or conflicting tools on your workstation). It might already be a fix in the works.&lt;/p&gt;
&lt;p&gt;I will check in with the Matter team and get back to you after Easter (after the 22nd of April)&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/532022?ContentTypeID=1</link><pubDate>Wed, 16 Apr 2025 12:55:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b7dd6858-8082-4eed-8ba4-6bb1c9396571</guid><dc:creator>Rahul_Chauhan</dc:creator><description>&lt;p class="" data-start="124" data-end="135"&gt;Hi Andreas,&lt;/p&gt;
&lt;p class="" data-start="137" data-end="169"&gt;Thanks again for the suggestion.&lt;/p&gt;
&lt;p class="" data-start="171" data-end="299"&gt;I&amp;rsquo;ve used NCS v2.9.1 before, but it doesn&amp;rsquo;t support &lt;code data-start="223" data-end="240"&gt;west zap-append&lt;/code&gt; or custom Matter clusters&amp;mdash;so I moved to the v3.0.0 series.&lt;/p&gt;
&lt;p class="" data-start="301" data-end="315"&gt;I tested with:&lt;/p&gt;
&lt;ul data-start="317" data-end="369"&gt;
&lt;li class="" data-start="317" data-end="331"&gt;
&lt;p class="" data-start="319" data-end="331"&gt;v3.0.0-rc1&lt;/p&gt;
&lt;/li&gt;
&lt;li class="" data-start="332" data-end="351"&gt;
&lt;p class="" data-start="334" data-end="351"&gt;v3.0.0-preview1&lt;/p&gt;
&lt;/li&gt;
&lt;li class="" data-start="352" data-end="369"&gt;
&lt;p class="" data-start="354" data-end="369"&gt;v3.0.0-preview2&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p class="" data-start="371" data-end="444"&gt;But I&amp;rsquo;m still getting this error when launching ZAP or generating output:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;This Error show&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div class="overflow-y-auto p-4" dir="ltr"&gt;FATAL ERROR: command exited with status -6: /home/rahul/ncs/v3.0.0-rc1/modules/lib/matter/.zap-install/zap /home/rahul/nrf/template/src/default_zap/template.zap --zcl /home/rahul/ncs/v3.0.0-rc1/modules/lib/matter/src/app/zap-templates/zcl/zcl.json --gen /home/rahul/ncs/v3.0.0-rc1/modules/lib/matter/src/app/zap-templates/app-templates.json --tempState&lt;/div&gt;
&lt;/div&gt;
&lt;p class="" data-start="516" data-end="618"&gt;It seems related to the ZAP environment or how &lt;code data-start="563" data-end="573"&gt;zcl.json&lt;/code&gt; and templates are handled in these versions.&lt;/p&gt;
&lt;p class="" data-start="620" data-end="655"&gt;Is there a known fix or workaround?&lt;/p&gt;
&lt;p class="" data-start="657" data-end="696"&gt;Happy to share logs or files if needed.&lt;/p&gt;
&lt;p class="" data-start="698" data-end="719"&gt;Best,&lt;br data-start="703" data-end="706" /&gt; Rahul Chauhan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue Launching ZAP GUI with Custom Cluster in NCS v3.0.0-preview2</title><link>https://devzone.nordicsemi.com/thread/532011?ContentTypeID=1</link><pubDate>Wed, 16 Apr 2025 12:27:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4345efb7-a0f3-4c80-a4ee-bba3f3d386f4</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi Rahul,&lt;/p&gt;
&lt;p&gt;I see that you&amp;#39;re using the preview release of NCS v3.0.0. Unless there is any specific reasons for using the preview release. Could you try by following the documentation for a more stable, fully tagged release such as NCS v2.9.1?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>