Skip to content

Commit

Permalink
Converted attributes wrongfully Identified as external or having call…
Browse files Browse the repository at this point in the history
…back in zap/matter files (#30619)
  • Loading branch information
lpbeliveau-silabs authored and pull[bot] committed Jul 5, 2024
1 parent 458af8e commit 1213489
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4429,9 +4429,9 @@ endpoint 1 {
}

server cluster Scenes {
callback attribute nameSupport default = 0x80;
callback attribute lastConfiguredBy;
callback attribute sceneTableSize default = 16;
ram attribute nameSupport default = 0x80;
ram attribute lastConfiguredBy;
ram attribute sceneTableSize default = 16;
callback attribute fabricSceneInfo;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down Expand Up @@ -4989,8 +4989,8 @@ endpoint 2 {
}

server cluster Scenes {
callback attribute nameSupport default = 0x80;
callback attribute sceneTableSize default = 16;
ram attribute nameSupport default = 0x80;
ram attribute sceneTableSize default = 16;
callback attribute fabricSceneInfo;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4672,7 +4672,7 @@
"side": "server",
"type": "NameSupportBitmap",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0x80",
Expand All @@ -4688,7 +4688,7 @@
"side": "server",
"type": "node_id",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
Expand All @@ -4704,7 +4704,7 @@
"side": "server",
"type": "int16u",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "16",
Expand Down Expand Up @@ -10908,7 +10908,7 @@
"side": "server",
"type": "NameSupportBitmap",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0x80",
Expand All @@ -10924,7 +10924,7 @@
"side": "server",
"type": "int16u",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "16",
Expand Down Expand Up @@ -11004,7 +11004,7 @@
"side": "server",
"type": "array",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
Expand Down Expand Up @@ -12254,5 +12254,3 @@
}
]
}


Original file line number Diff line number Diff line change
Expand Up @@ -2531,15 +2531,15 @@ endpoint 1 {
}

server cluster Scenes {
callback attribute nameSupport default = 0x80;
callback attribute lastConfiguredBy;
callback attribute sceneTableSize default = 16;
ram attribute nameSupport default = 0x80;
ram attribute lastConfiguredBy;
ram attribute sceneTableSize default = 16;
callback attribute fabricSceneInfo;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
callback attribute attributeList;
callback attribute featureMap default = 15;
ram attribute featureMap default = 15;
ram attribute clusterRevision default = 5;

handle command AddScene;
Expand Down
10 changes: 4 additions & 6 deletions examples/lighting-app/silabs/data_model/lighting-thread-app.zap
Original file line number Diff line number Diff line change
Expand Up @@ -4111,7 +4111,7 @@
"side": "server",
"type": "NameSupportBitmap",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0x80",
Expand All @@ -4127,7 +4127,7 @@
"side": "server",
"type": "node_id",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
Expand All @@ -4143,7 +4143,7 @@
"side": "server",
"type": "int16u",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "16",
Expand Down Expand Up @@ -4239,7 +4239,7 @@
"side": "server",
"type": "bitmap32",
"included": 1,
"storageOption": "External",
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "15",
Expand Down Expand Up @@ -5902,5 +5902,3 @@
}
]
}


0 comments on commit 1213489

Please sign in to comment.