Skip to content

Commit a9e80ef

Browse files
committed
[chip-all-clusters-app] Enable SetTCAcknowledgements command and related attributes
1 parent bf5636f commit a9e80ef

File tree

2 files changed

+95
-1
lines changed

2 files changed

+95
-1
lines changed

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+6
Original file line numberDiff line numberDiff line change
@@ -7709,6 +7709,11 @@ endpoint 0 {
77097709
callback attribute regulatoryConfig;
77107710
callback attribute locationCapability;
77117711
callback attribute supportsConcurrentConnection;
7712+
callback attribute TCAcceptedVersion;
7713+
callback attribute TCMinRequiredVersion;
7714+
callback attribute TCAcknowledgements;
7715+
callback attribute TCAcknowledgementsRequired;
7716+
callback attribute TCUpdateDeadline;
77127717
callback attribute generatedCommandList;
77137718
callback attribute acceptedCommandList;
77147719
callback attribute attributeList;
@@ -7721,6 +7726,7 @@ endpoint 0 {
77217726
handle command SetRegulatoryConfigResponse;
77227727
handle command CommissioningComplete;
77237728
handle command CommissioningCompleteResponse;
7729+
handle command SetTCAcknowledgements;
77247730
}
77257731

77267732
server cluster NetworkCommissioning {

examples/all-clusters-app/all-clusters-common/all-clusters-app.zap

+89-1
Original file line numberDiff line numberDiff line change
@@ -1953,6 +1953,14 @@
19531953
"source": "server",
19541954
"isIncoming": 0,
19551955
"isEnabled": 1
1956+
},
1957+
{
1958+
"name": "SetTCAcknowlegements",
1959+
"code": 6,
1960+
"mfgCode": null,
1961+
"source": "client",
1962+
"isIncoming": 1,
1963+
"isEnabled": 1
19561964
}
19571965
],
19581966
"attributes": [
@@ -2036,6 +2044,86 @@
20362044
"maxInterval": 65534,
20372045
"reportableChange": 0
20382046
},
2047+
{
2048+
"name": "TCAcceptedVersion",
2049+
"code": 5,
2050+
"mfgCode": null,
2051+
"side": "server",
2052+
"type": "int16u",
2053+
"included": 1,
2054+
"storageOption": "External",
2055+
"singleton": 0,
2056+
"bounded": 0,
2057+
"defaultValue": null,
2058+
"reportable": 1,
2059+
"minInterval": 1,
2060+
"maxInterval": 65534,
2061+
"reportableChange": 0
2062+
},
2063+
{
2064+
"name": "TCMinRequiredVersion",
2065+
"code": 6,
2066+
"mfgCode": null,
2067+
"side": "server",
2068+
"type": "int16u",
2069+
"included": 1,
2070+
"storageOption": "External",
2071+
"singleton": 0,
2072+
"bounded": 0,
2073+
"defaultValue": null,
2074+
"reportable": 1,
2075+
"minInterval": 1,
2076+
"maxInterval": 65534,
2077+
"reportableChange": 0
2078+
},
2079+
{
2080+
"name": "TCAcknowledgements",
2081+
"code": 7,
2082+
"mfgCode": null,
2083+
"side": "server",
2084+
"type": "bitmap16",
2085+
"included": 1,
2086+
"storageOption": "External",
2087+
"singleton": 0,
2088+
"bounded": 0,
2089+
"defaultValue": null,
2090+
"reportable": 1,
2091+
"minInterval": 1,
2092+
"maxInterval": 65534,
2093+
"reportableChange": 0
2094+
},
2095+
{
2096+
"name": "TCAcknowledgementsRequired",
2097+
"code": 8,
2098+
"mfgCode": null,
2099+
"side": "server",
2100+
"type": "boolean",
2101+
"included": 1,
2102+
"storageOption": "External",
2103+
"singleton": 0,
2104+
"bounded": 0,
2105+
"defaultValue": null,
2106+
"reportable": 1,
2107+
"minInterval": 1,
2108+
"maxInterval": 65534,
2109+
"reportableChange": 0
2110+
},
2111+
{
2112+
"name": "TCUpdateDeadline",
2113+
"code": 9,
2114+
"mfgCode": null,
2115+
"side": "server",
2116+
"type": "int32u",
2117+
"included": 1,
2118+
"storageOption": "External",
2119+
"singleton": 0,
2120+
"bounded": 0,
2121+
"defaultValue": null,
2122+
"reportable": 1,
2123+
"minInterval": 1,
2124+
"maxInterval": 65534,
2125+
"reportableChange": 0
2126+
},
20392127
{
20402128
"name": "GeneratedCommandList",
20412129
"code": 65528,
@@ -25371,4 +25459,4 @@
2537125459
"parentEndpointIdentifier": null
2537225460
}
2537325461
]
25374-
}
25462+
}

0 commit comments

Comments
 (0)