|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | +Copyright (c) 2024 Project CHIP Authors |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +you may not use this file except in compliance with the License. |
| 7 | +You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +See the License for the specific language governing permissions and |
| 15 | +limitations under the License. |
| 16 | +--> |
| 17 | +<configurator> |
| 18 | + <domain name="CHIP"/> |
| 19 | + |
| 20 | + <bitmap name="Feature" type="bitmap32"> |
| 21 | + <cluster code="0x0452"/> |
| 22 | + <field name="PANChange" mask="0x1"/> |
| 23 | + </bitmap> |
| 24 | + |
| 25 | + <cluster> |
| 26 | + <domain>HRAP</domain> |
| 27 | + <name>Thread Border Router Management</name> |
| 28 | + <code>0x0452</code> |
| 29 | + <define>THREAD_BORDER_ROUTER_MANAGEMENT</define> |
| 30 | + <client init="false" tick="false">true</client> |
| 31 | + <server init="false" tick="false">true</server> |
| 32 | + <description>Manage the Thread network of Thread Border Router</description> |
| 33 | + |
| 34 | + <globalAttribute code="0xFFFD" side="either" value="1"/> |
| 35 | + |
| 36 | + <attribute side="server" code="0x0000" define="BORDER_ROUTER_NAME" type="char_string" length="63">BorderRouterName</attribute> |
| 37 | + |
| 38 | + <attribute side="server" code="0x0001" define="BORDER_AGENT_ID" type="octet_string">BorderAgentID</attribute> |
| 39 | + |
| 40 | + <attribute side="server" code="0x0002" define="THREAD_VERSION" type="int16u">ThreadVersion</attribute> |
| 41 | + |
| 42 | + <attribute side="server" code="0x0003" define="INTERFACE_ENABLED" type="boolean" default="0">InterfaceEnabled</attribute> |
| 43 | + |
| 44 | + <attribute side="server" code="0x0005" define="ACTIVE_DATASET_TIMESTAMP" type="int64u" isNullable="true">ActiveDatasetTimestamp</attribute> |
| 45 | + |
| 46 | + |
| 47 | + <command source="client" code="0x00" name="GetActiveDatasetRequest" response="DatasetResponse" optional="false"> |
| 48 | + <description>Command to request the active operational dataset of the Thread network to which the border router is connected. This command must be sent over a valid CASE session</description> |
| 49 | + <access op="invoke" privilege="manage"/> |
| 50 | + </command> |
| 51 | + |
| 52 | + <command source="client" code="0x01" name="GetPendingDatasetRequest" response="DatasetResponse" optional="false"> |
| 53 | + <description>Command to request the pending dataset of the Thread network to which the border router is connected. This command must be sent over a valid CASE session</description> |
| 54 | + <access op="invoke" privilege="manage"/> |
| 55 | + </command> |
| 56 | + |
| 57 | + <command source="server" code="0x03" name="DatasetResponse" optional="false"> |
| 58 | + <description>Generated response to GetActiveDatasetRequest or GetPendingDatasetRequest commands.</description> |
| 59 | + <arg name="Dataset" type="octet_string" length="254"/> |
| 60 | + </command> |
| 61 | + |
| 62 | + <command source="client" code="0x04" name="SetActiveDatasetRequest" optional="false"> |
| 63 | + <description>Command to set or update the active Dataset of the Thread network to which the Border Router is connected.</description> |
| 64 | + <arg name="ActiveDataset" type="octet_string" length="254"/> |
| 65 | + <arg name="Breadcrumb" type="int64u" optional="true"/> |
| 66 | + <access op="invoke" privilege="manage"/> |
| 67 | + </command> |
| 68 | + |
| 69 | + <command source="client" code="0x05" name="SetPendingDatasetRequest" optional="true"> |
| 70 | + <description>Command set or update the pending Dataset of the Thread network to which the Border Router is connected.</description> |
| 71 | + <arg name="PendingDataset" type="octet_string" length="254"/> |
| 72 | + <access op="invoke" privilege="manage"/> |
| 73 | + </command> |
| 74 | + |
| 75 | + </cluster> |
| 76 | +</configurator> |
0 commit comments