Skip to content

Commit 1732454

Browse files
rochaferrazpull[bot]
authored andcommitted
[chef] chg: removed Thread, Wifi and Ethernet Diagnostics Clusters (#23413)
* chg: removed Thread Diagnostics, Wifi Diagnostics and Ethernet Diagnostics clusters * chg: removed User Label Cluster, Scenes Cluster * chg: default value of DefaultOtaProviders set to empty string * Regenerating ZAP
1 parent 21f8c54 commit 1732454

File tree

142 files changed

+902
-18445
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+902
-18445
lines changed

examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.matter

+5-141
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// This IDL was generated automatically by ZAP.
22
// It is for view/code review purposes only.
33

4-
struct LabelStruct {
5-
char_string<16> label = 0;
6-
char_string<16> value = 1;
7-
}
8-
94
server cluster Identify = 3 {
105
enum IdentifyEffectIdentifier : ENUM8 {
116
kBlink = 0;
@@ -107,117 +102,6 @@ server cluster Groups = 4 {
107102
fabric command access(invoke: manage) AddGroupIfIdentifying(AddGroupIfIdentifyingRequest): DefaultSuccess = 5;
108103
}
109104

110-
server cluster Scenes = 5 {
111-
bitmap ScenesCopyMode : BITMAP8 {
112-
kCopyAllScenes = 0x1;
113-
}
114-
115-
struct ExtensionFieldSet {
116-
cluster_id clusterId = 0;
117-
AttributeValuePair attributeValueList[] = 1;
118-
}
119-
120-
struct AttributeValuePair {
121-
optional attrib_id attributeId = 0;
122-
int8u attributeValue[] = 1;
123-
}
124-
125-
readonly attribute int8u sceneCount = 0;
126-
readonly attribute int8u currentScene = 1;
127-
readonly attribute group_id currentGroup = 2;
128-
readonly attribute boolean sceneValid = 3;
129-
readonly attribute bitmap8 nameSupport = 4;
130-
readonly attribute command_id generatedCommandList[] = 65528;
131-
readonly attribute command_id acceptedCommandList[] = 65529;
132-
readonly attribute attrib_id attributeList[] = 65531;
133-
readonly attribute bitmap32 featureMap = 65532;
134-
readonly attribute int16u clusterRevision = 65533;
135-
136-
request struct AddSceneRequest {
137-
group_id groupId = 0;
138-
INT8U sceneId = 1;
139-
INT16U transitionTime = 2;
140-
CHAR_STRING sceneName = 3;
141-
ExtensionFieldSet extensionFieldSets[] = 4;
142-
}
143-
144-
request struct ViewSceneRequest {
145-
group_id groupId = 0;
146-
INT8U sceneId = 1;
147-
}
148-
149-
request struct RemoveSceneRequest {
150-
group_id groupId = 0;
151-
INT8U sceneId = 1;
152-
}
153-
154-
request struct RemoveAllScenesRequest {
155-
group_id groupId = 0;
156-
}
157-
158-
request struct StoreSceneRequest {
159-
group_id groupId = 0;
160-
INT8U sceneId = 1;
161-
}
162-
163-
request struct RecallSceneRequest {
164-
group_id groupId = 0;
165-
INT8U sceneId = 1;
166-
optional nullable INT16U transitionTime = 2;
167-
}
168-
169-
request struct GetSceneMembershipRequest {
170-
group_id groupId = 0;
171-
}
172-
173-
response struct AddSceneResponse = 0 {
174-
ENUM8 status = 0;
175-
group_id groupId = 1;
176-
INT8U sceneId = 2;
177-
}
178-
179-
response struct ViewSceneResponse = 1 {
180-
ENUM8 status = 0;
181-
group_id groupId = 1;
182-
INT8U sceneId = 2;
183-
optional INT16U transitionTime = 3;
184-
optional CHAR_STRING sceneName = 4;
185-
optional ExtensionFieldSet extensionFieldSets[] = 5;
186-
}
187-
188-
response struct RemoveSceneResponse = 2 {
189-
ENUM8 status = 0;
190-
group_id groupId = 1;
191-
INT8U sceneId = 2;
192-
}
193-
194-
response struct RemoveAllScenesResponse = 3 {
195-
ENUM8 status = 0;
196-
group_id groupId = 1;
197-
}
198-
199-
response struct StoreSceneResponse = 4 {
200-
ENUM8 status = 0;
201-
group_id groupId = 1;
202-
INT8U sceneId = 2;
203-
}
204-
205-
response struct GetSceneMembershipResponse = 6 {
206-
ENUM8 status = 0;
207-
nullable INT8U capacity = 1;
208-
group_id groupId = 2;
209-
optional INT8U sceneList[] = 3;
210-
}
211-
212-
fabric command access(invoke: manage) AddScene(AddSceneRequest): AddSceneResponse = 0;
213-
fabric command ViewScene(ViewSceneRequest): ViewSceneResponse = 1;
214-
fabric command access(invoke: manage) RemoveScene(RemoveSceneRequest): RemoveSceneResponse = 2;
215-
fabric command access(invoke: manage) RemoveAllScenes(RemoveAllScenesRequest): RemoveAllScenesResponse = 3;
216-
fabric command access(invoke: manage) StoreScene(StoreSceneRequest): StoreSceneResponse = 4;
217-
fabric command RecallScene(RecallSceneRequest): DefaultSuccess = 5;
218-
fabric command GetSceneMembership(GetSceneMembershipRequest): GetSceneMembershipResponse = 6;
219-
}
220-
221105
server cluster OnOff = 6 {
222106
enum OnOffDelayedAllOffEffectVariant : ENUM8 {
223107
kFadeToOffIn0p8Seconds = 0;
@@ -1388,13 +1272,12 @@ server cluster GroupKeyManagement = 63 {
13881272
}
13891273

13901274
server cluster FixedLabel = 64 {
1391-
readonly attribute LabelStruct labelList[] = 0;
1392-
readonly attribute bitmap32 featureMap = 65532;
1393-
readonly attribute int16u clusterRevision = 65533;
1394-
}
1275+
struct LabelStruct {
1276+
char_string<16> label = 0;
1277+
char_string<16> value = 1;
1278+
}
13951279

1396-
server cluster UserLabel = 65 {
1397-
attribute access(write: manage) LabelStruct labelList[] = 0;
1280+
readonly attribute LabelStruct labelList[] = 0;
13981281
readonly attribute bitmap32 featureMap = 65532;
13991282
readonly attribute int16u clusterRevision = 65533;
14001283
}
@@ -1658,12 +1541,6 @@ endpoint 0 {
16581541
ram attribute featureMap;
16591542
ram attribute clusterRevision default = 1;
16601543
}
1661-
1662-
server cluster UserLabel {
1663-
callback attribute labelList;
1664-
ram attribute featureMap;
1665-
ram attribute clusterRevision default = 1;
1666-
}
16671544
}
16681545
endpoint 1 {
16691546
device type anonymousEndpointType = 257;
@@ -1689,19 +1566,6 @@ endpoint 1 {
16891566
ram attribute clusterRevision default = 3;
16901567
}
16911568

1692-
server cluster Scenes {
1693-
ram attribute sceneCount;
1694-
ram attribute currentScene;
1695-
ram attribute currentGroup;
1696-
ram attribute sceneValid;
1697-
ram attribute nameSupport;
1698-
callback attribute generatedCommandList;
1699-
callback attribute acceptedCommandList;
1700-
callback attribute attributeList;
1701-
ram attribute featureMap;
1702-
ram attribute clusterRevision default = 3;
1703-
}
1704-
17051569
server cluster OnOff {
17061570
ram attribute onOff;
17071571
ram attribute globalSceneControl default = 1;

examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"featureLevel": 81,
2+
"featureLevel": 82,
33
"creator": "zap",
44
"keyValuePairs": [
55
{
@@ -1638,7 +1638,7 @@
16381638
"storageOption": "External",
16391639
"singleton": 0,
16401640
"bounded": 0,
1641-
"defaultValue": "0",
1641+
"defaultValue": "",
16421642
"reportable": 1,
16431643
"minInterval": 1,
16441644
"maxInterval": 65534,
@@ -5140,7 +5140,7 @@
51405140
"mfgCode": null,
51415141
"define": "USER_LABEL_CLUSTER",
51425142
"side": "server",
5143-
"enabled": 1,
5143+
"enabled": 0,
51445144
"attributes": [
51455145
{
51465146
"name": "label list",
@@ -5712,7 +5712,7 @@
57125712
"mfgCode": null,
57135713
"define": "SCENES_CLUSTER",
57145714
"side": "server",
5715-
"enabled": 1,
5715+
"enabled": 0,
57165716
"commands": [
57175717
{
57185718
"name": "AddSceneResponse",
@@ -7292,5 +7292,6 @@
72927292
"endpointVersion": 1,
72937293
"deviceIdentifier": 257
72947294
}
7295-
]
7296-
}
7295+
],
7296+
"log": []
7297+
}

0 commit comments

Comments
 (0)