Skip to content

Commit

Permalink
Add default config for user active trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Oct 30, 2023
1 parent 9f18e1a commit 12369ec
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/lit-icd-app/lit-icd-common/lit-icd-server-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1545,6 +1545,8 @@ server cluster IcdManagement = 70 {
readonly attribute access(read: administer) MonitoringRegistrationStruct registeredClients[] = 3;
readonly attribute access(read: administer) int32u ICDCounter = 4;
readonly attribute int16u clientsSupportedPerFabric = 5;
readonly attribute UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down Expand Up @@ -1905,6 +1907,8 @@ endpoint 0 {
callback attribute registeredClients;
callback attribute ICDCounter default = 0;
callback attribute clientsSupportedPerFabric default = 2;
callback attribute userActiveModeTriggerHint default = 5;
callback attribute userActiveModeTriggerInstruction default = "This is a test";
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
Expand Down
32 changes: 32 additions & 0 deletions examples/lit-icd-app/lit-icd-common/lit-icd-server-app.zap
Original file line number Diff line number Diff line change
Expand Up @@ -3839,6 +3839,38 @@
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "UserActiveModeTriggerHint",
"code": 6,
"mfgCode": null,
"side": "server",
"type": "UserActiveModeTriggerBitmap",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "5",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "UserActiveModeTriggerInstruction",
"code": 7,
"mfgCode": null,
"side": "server",
"type": "char_string",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "This is a test",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "GeneratedCommandList",
"code": 65528,
Expand Down

0 comments on commit 12369ec

Please sign in to comment.