Skip to content

Commit

Permalink
[nxp] Fix lock app zap files
Browse files Browse the repository at this point in the history
Signed-off-by: marius-alex-tache <marius.tache@nxp.com>
  • Loading branch information
marius-alex-tache committed Sep 12, 2024
1 parent fc3739f commit 9f29a26
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 22 deletions.
17 changes: 13 additions & 4 deletions examples/lock-app/nxp/zap/lock-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,12 @@ cluster GroupKeyManagement = 63 {

/** Allows servers to ensure that listed clients are notified when a server is available for communication. */
cluster IcdManagement = 70 {
revision 2;
revision 3;

enum ClientTypeEnum : enum8 {
kPermanent = 0;
kEphemeral = 1;
}

enum OperatingModeEnum : enum8 {
kSIT = 0;
Expand All @@ -1629,6 +1634,7 @@ cluster IcdManagement = 70 {
kCheckInProtocolSupport = 0x1;
kUserActiveModeTrigger = 0x2;
kLongIdleTimeSupport = 0x4;
kDynamicSitLitSupport = 0x8;
}

bitmap UserActiveModeTriggerBitmap : bitmap32 {
Expand All @@ -1654,6 +1660,7 @@ cluster IcdManagement = 70 {
fabric_scoped struct MonitoringRegistrationStruct {
fabric_sensitive node_id checkInNodeID = 1;
fabric_sensitive int64u monitoredSubject = 2;
fabric_sensitive ClientTypeEnum clientType = 4;
fabric_idx fabricIndex = 254;
}

Expand All @@ -1663,9 +1670,10 @@ cluster IcdManagement = 70 {
readonly attribute access(read: administer) optional MonitoringRegistrationStruct registeredClients[] = 3;
readonly attribute access(read: administer) optional int32u ICDCounter = 4;
readonly attribute optional int16u clientsSupportedPerFabric = 5;
readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
readonly attribute optional OperatingModeEnum operatingMode = 8;
provisional readonly attribute optional UserActiveModeTriggerBitmap userActiveModeTriggerHint = 6;
provisional readonly attribute optional char_string<128> userActiveModeTriggerInstruction = 7;
provisional readonly attribute optional OperatingModeEnum operatingMode = 8;
provisional readonly attribute optional int32u maximumCheckInBackOff = 9;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand All @@ -1678,6 +1686,7 @@ cluster IcdManagement = 70 {
int64u monitoredSubject = 1;
octet_string<16> key = 2;
optional octet_string<16> verificationKey = 3;
ClientTypeEnum clientType = 4;
}

response struct RegisterClientResponse = 1 {
Expand Down
18 changes: 0 additions & 18 deletions examples/lock-app/nxp/zap/lock-app.zap
Original file line number Diff line number Diff line change
Expand Up @@ -786,24 +786,6 @@
"isIncoming": 0,
"isEnabled": 1
}
],
"attributes": [
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
"side": "client",
"type": "int16u",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "1",
"reportable": 1,
"minInterval": 0,
"maxInterval": 65344,
"reportableChange": 0
}
]
},
{
Expand Down

0 comments on commit 9f29a26

Please sign in to comment.