mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-28 03:23:07 +00:00
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Copyright (c) 2023 Project CHIP Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<configurator>
|
|
<domain name="CHIP"/>
|
|
<enum name="ThreadRoleEnum" type="enum8">
|
|
<cluster code="0x131BFC02"/>
|
|
<item name="Disabled" value="0x00"/>
|
|
<item name="Detached" value="0x01"/>
|
|
<item name="Child" value="0x02"/>
|
|
<item name="Router" value="0x03"/>
|
|
<item name="Leader" value="0x04"/>
|
|
</enum>
|
|
<cluster>
|
|
|
|
<name>ThreadBR</name>
|
|
<domain>CHIP</domain>
|
|
<code>0x131BFC02</code>
|
|
<define>THREAD_BR_CLUSTER</define>
|
|
|
|
<description>Attributes and commands for ThreadBR cluster.</description>
|
|
|
|
<globalAttribute side="either" code="0xFFFD" value="2"/>
|
|
|
|
<attribute side="server" code="0x0000" define="DATASET_TLVS" type="octet_string" length="254">DatasetTlvs</attribute>
|
|
<attribute side="server" code="0x0001" define="ROLE" type="ThreadRoleEnum" min="0" max="4">Role</attribute>
|
|
<attribute side="server" code="0x0002" define="BORDER_AGENT_ID" type="octet_string" length="16">BorderAgentId</attribute>
|
|
|
|
<command source="client" code="0x00" name="ConfigureDatasetTlvs" optional="false">
|
|
<description>ConfigureDatasetTlvs command.</description>
|
|
<arg name="DatasetTlvsStr" type="char_string"/>
|
|
</command>
|
|
|
|
<command source="client" code="0x01" name="StartThread" optional="false">
|
|
<description>StartThread command.</description>
|
|
</command>
|
|
|
|
<command source="client" code="0x02" name="StopThread" optional="false">
|
|
<description>StopThread command.</description>
|
|
</command>
|
|
|
|
</cluster>
|
|
</configurator>
|