Skip to content

Commit 10403ef

Browse files
committed
matter: update data model and enable mandatory cmds
Update matter samples data model. * enable VID verification commands. * set identify cluster revision to 6 Signed-off-by: Michał Szablowski <[email protected]>
1 parent 57bb508 commit 10403ef

File tree

83 files changed

+1271
-1021
lines changed

Some content is hidden

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

83 files changed

+1271
-1021
lines changed

applications/matter_bridge/snippets/onoff_plug/bridge.matter

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2491,6 +2491,9 @@ endpoint 0 {
24912491
handle command UpdateFabricLabel;
24922492
handle command RemoveFabric;
24932493
handle command AddTrustedRootCertificate;
2494+
handle command SetVIDVerificationStatement;
2495+
handle command SignVIDVerificationRequest;
2496+
handle command SignVIDVerificationResponse;
24942497
}
24952498

24962499
server cluster GroupKeyManagement {
@@ -2523,7 +2526,7 @@ endpoint 1 {
25232526
callback attribute acceptedCommandList;
25242527
callback attribute attributeList;
25252528
ram attribute featureMap default = 0;
2526-
ram attribute clusterRevision default = 5;
2529+
ram attribute clusterRevision default = 6;
25272530

25282531
handle command Identify;
25292532
}
@@ -2551,7 +2554,7 @@ endpoint 2 {
25512554
callback attribute acceptedCommandList;
25522555
callback attribute attributeList;
25532556
ram attribute featureMap default = 0;
2554-
ram attribute clusterRevision default = 5;
2557+
ram attribute clusterRevision default = 6;
25552558

25562559
handle command Identify;
25572560
handle command TriggerEffect;
@@ -2646,7 +2649,7 @@ endpoint 3 {
26462649
callback attribute acceptedCommandList;
26472650
callback attribute attributeList;
26482651
ram attribute featureMap default = 0;
2649-
ram attribute clusterRevision default = 5;
2652+
ram attribute clusterRevision default = 6;
26502653

26512654
handle command Identify;
26522655
handle command TriggerEffect;
@@ -2769,3 +2772,4 @@ endpoint 3 {
27692772
ram attribute clusterRevision default = 3;
27702773
}
27712774
}
2775+
s

applications/matter_bridge/snippets/onoff_plug/bridge.zap

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2537,6 +2537,30 @@
25372537
"source": "client",
25382538
"isIncoming": 1,
25392539
"isEnabled": 1
2540+
},
2541+
{
2542+
"name": "SetVIDVerificationStatement",
2543+
"code": 12,
2544+
"mfgCode": null,
2545+
"source": "client",
2546+
"isIncoming": 1,
2547+
"isEnabled": 1
2548+
},
2549+
{
2550+
"name": "SignVIDVerificationRequest",
2551+
"code": 13,
2552+
"mfgCode": null,
2553+
"source": "client",
2554+
"isIncoming": 1,
2555+
"isEnabled": 1
2556+
},
2557+
{
2558+
"name": "SignVIDVerificationResponse",
2559+
"code": 14,
2560+
"mfgCode": null,
2561+
"source": "server",
2562+
"isIncoming": 0,
2563+
"isEnabled": 1
25402564
}
25412565
],
25422566
"attributes": [
@@ -3077,7 +3101,7 @@
30773101
"storageOption": "RAM",
30783102
"singleton": 0,
30793103
"bounded": 0,
3080-
"defaultValue": "5",
3104+
"defaultValue": "6",
30813105
"reportable": 1,
30823106
"minInterval": 1,
30833107
"maxInterval": 65534,
@@ -3402,7 +3426,7 @@
34023426
"storageOption": "RAM",
34033427
"singleton": 0,
34043428
"bounded": 0,
3405-
"defaultValue": "5",
3429+
"defaultValue": "6",
34063430
"reportable": 1,
34073431
"minInterval": 1,
34083432
"maxInterval": 65534,
@@ -4382,7 +4406,7 @@
43824406
"storageOption": "RAM",
43834407
"singleton": 0,
43844408
"bounded": 0,
4385-
"defaultValue": "5",
4409+
"defaultValue": "6",
43864410
"reportable": 1,
43874411
"minInterval": 1,
43884412
"maxInterval": 65534,

applications/matter_bridge/snippets/onoff_plug/zap-generated/IMClusterCommandHandler.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,27 @@ namespace app
543543
}
544544
break;
545545
}
546+
case Commands::SetVIDVerificationStatement::Id: {
547+
Commands::SetVIDVerificationStatement::DecodableType commandData;
548+
TLVError = commandData.Decode(aDataTlv,
549+
apCommandObj->GetAccessingFabricIndex());
550+
if (TLVError == CHIP_NO_ERROR) {
551+
wasHandled =
552+
emberAfOperationalCredentialsClusterSetVIDVerificationStatementCallback(
553+
apCommandObj, aCommandPath, commandData);
554+
}
555+
break;
556+
}
557+
case Commands::SignVIDVerificationRequest::Id: {
558+
Commands::SignVIDVerificationRequest::DecodableType commandData;
559+
TLVError = DataModel::Decode(aDataTlv, commandData);
560+
if (TLVError == CHIP_NO_ERROR) {
561+
wasHandled =
562+
emberAfOperationalCredentialsClusterSignVIDVerificationRequestCallback(
563+
apCommandObj, aCommandPath, commandData);
564+
}
565+
break;
566+
}
546567
default: {
547568
// Unrecognized command ID, error status will apply.
548569
ChipLogError(Zcl,

applications/matter_bridge/snippets/onoff_plug/zap-generated/access.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@
156156
0x0000003E, /* Cluster: Operational Credentials, Command: UpdateFabricLabel, Privilege: administer */ \
157157
0x0000003E, /* Cluster: Operational Credentials, Command: RemoveFabric, Privilege: administer */ \
158158
0x0000003E, /* Cluster: Operational Credentials, Command: AddTrustedRootCertificate, Privilege: administer */ \
159+
0x0000003E, /* Cluster: Operational Credentials, Command: SetVIDVerificationStatement, Privilege: administer */ \
160+
0x0000003E, /* Cluster: Operational Credentials, Command: SignVIDVerificationRequest, Privilege: administer */ \
159161
0x0000003F, /* Cluster: Group Key Management, Command: KeySetWrite, Privilege: administer */ \
160162
0x0000003F, /* Cluster: Group Key Management, Command: KeySetRead, Privilege: administer */ \
161163
0x0000003F, /* Cluster: Group Key Management, Command: KeySetRemove, Privilege: administer */ \
@@ -195,6 +197,8 @@
195197
0x00000009, /* Cluster: Operational Credentials, Command: UpdateFabricLabel, Privilege: administer */ \
196198
0x0000000A, /* Cluster: Operational Credentials, Command: RemoveFabric, Privilege: administer */ \
197199
0x0000000B, /* Cluster: Operational Credentials, Command: AddTrustedRootCertificate, Privilege: administer */ \
200+
0x0000000C, /* Cluster: Operational Credentials, Command: SetVIDVerificationStatement, Privilege: administer */ \
201+
0x0000000D, /* Cluster: Operational Credentials, Command: SignVIDVerificationRequest, Privilege: administer */ \
198202
0x00000000, /* Cluster: Group Key Management, Command: KeySetWrite, Privilege: administer */ \
199203
0x00000001, /* Cluster: Group Key Management, Command: KeySetRead, Privilege: administer */ \
200204
0x00000003, /* Cluster: Group Key Management, Command: KeySetRemove, Privilege: administer */ \
@@ -234,6 +238,8 @@
234238
chip::Access::Privilege::kAdminister, /* Cluster: Operational Credentials, Command: UpdateFabricLabel, Privilege: administer */ \
235239
chip::Access::Privilege::kAdminister, /* Cluster: Operational Credentials, Command: RemoveFabric, Privilege: administer */ \
236240
chip::Access::Privilege::kAdminister, /* Cluster: Operational Credentials, Command: AddTrustedRootCertificate, Privilege: administer */ \
241+
chip::Access::Privilege::kAdminister, /* Cluster: Operational Credentials, Command: SetVIDVerificationStatement, Privilege: administer */ \
242+
chip::Access::Privilege::kAdminister, /* Cluster: Operational Credentials, Command: SignVIDVerificationRequest, Privilege: administer */ \
237243
chip::Access::Privilege::kAdminister, /* Cluster: Group Key Management, Command: KeySetWrite, Privilege: administer */ \
238244
chip::Access::Privilege::kAdminister, /* Cluster: Group Key Management, Command: KeySetRead, Privilege: administer */ \
239245
chip::Access::Privilege::kAdminister, /* Cluster: Group Key Management, Command: KeySetRemove, Privilege: administer */ \

applications/matter_bridge/snippets/onoff_plug/zap-generated/endpoint_config.h

Lines changed: 34 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@
307307
ZAP_ATTRIBUTE_MASK(WRITABLE) }, /* IdentifyTime */ \
308308
{ ZAP_SIMPLE_DEFAULT(0x00), 0x00000001, 1, ZAP_TYPE(ENUM8), 0 }, /* IdentifyType */ \
309309
{ ZAP_SIMPLE_DEFAULT(0), 0x0000FFFC, 4, ZAP_TYPE(BITMAP32), 0 }, /* FeatureMap */ \
310-
{ ZAP_SIMPLE_DEFAULT(5), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
310+
{ ZAP_SIMPLE_DEFAULT(6), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
311311
\
312312
/* Endpoint: 1, Cluster: Descriptor (server) */ \
313313
{ ZAP_EMPTY_DEFAULT(), 0x00000000, 0, ZAP_TYPE(ARRAY), \
@@ -328,7 +328,7 @@
328328
ZAP_ATTRIBUTE_MASK(WRITABLE) }, /* IdentifyTime */ \
329329
{ ZAP_SIMPLE_DEFAULT(0x00), 0x00000001, 1, ZAP_TYPE(ENUM8), 0 }, /* IdentifyType */ \
330330
{ ZAP_SIMPLE_DEFAULT(0), 0x0000FFFC, 4, ZAP_TYPE(BITMAP32), 0 }, /* FeatureMap */ \
331-
{ ZAP_SIMPLE_DEFAULT(5), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
331+
{ ZAP_SIMPLE_DEFAULT(6), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
332332
\
333333
/* Endpoint: 2, Cluster: Groups (server) */ \
334334
{ ZAP_EMPTY_DEFAULT(), 0x00000000, 1, ZAP_TYPE(BITMAP8), 0 }, /* NameSupport */ \
@@ -375,7 +375,7 @@
375375
ZAP_ATTRIBUTE_MASK(WRITABLE) }, /* IdentifyTime */ \
376376
{ ZAP_SIMPLE_DEFAULT(0x00), 0x00000001, 1, ZAP_TYPE(ENUM8), 0 }, /* IdentifyType */ \
377377
{ ZAP_SIMPLE_DEFAULT(0), 0x0000FFFC, 4, ZAP_TYPE(BITMAP32), 0 }, /* FeatureMap */ \
378-
{ ZAP_SIMPLE_DEFAULT(5), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
378+
{ ZAP_SIMPLE_DEFAULT(6), 0x0000FFFD, 2, ZAP_TYPE(INT16U), 0 }, /* ClusterRevision */ \
379379
\
380380
/* Endpoint: 3, Cluster: Groups (server) */ \
381381
{ ZAP_EMPTY_DEFAULT(), 0x00000000, 1, ZAP_TYPE(BITMAP8), 0 }, /* NameSupport */ \
@@ -567,50 +567,53 @@
567567
0x00000009 /* UpdateFabricLabel */, \
568568
0x0000000A /* RemoveFabric */, \
569569
0x0000000B /* AddTrustedRootCertificate */, \
570+
0x0000000C /* SetVIDVerificationStatement */, \
571+
0x0000000D /* SignVIDVerificationRequest */, \
570572
chip::kInvalidCommandId /* end of list */, \
571-
/* GeneratedCommandList (index=43)*/ \
573+
/* GeneratedCommandList (index=45)*/ \
572574
0x00000001 /* AttestationResponse */, \
573575
0x00000003 /* CertificateChainResponse */, \
574576
0x00000005 /* CSRResponse */, \
575577
0x00000008 /* NOCResponse */, \
578+
0x0000000E /* SignVIDVerificationResponse */, \
576579
chip::kInvalidCommandId /* end of list */, \
577580
/* Endpoint: 0, Cluster: Group Key Management (server) */\
578-
/* AcceptedCommandList (index=48) */ \
581+
/* AcceptedCommandList (index=51) */ \
579582
0x00000000 /* KeySetWrite */, \
580583
0x00000001 /* KeySetRead */, \
581584
0x00000003 /* KeySetRemove */, \
582585
0x00000004 /* KeySetReadAllIndices */, \
583586
chip::kInvalidCommandId /* end of list */, \
584-
/* GeneratedCommandList (index=53)*/ \
587+
/* GeneratedCommandList (index=56)*/ \
585588
0x00000002 /* KeySetReadResponse */, \
586589
0x00000005 /* KeySetReadAllIndicesResponse */, \
587590
chip::kInvalidCommandId /* end of list */, \
588591
/* Endpoint: 1, Cluster: Identify (server) */\
589-
/* AcceptedCommandList (index=56) */ \
592+
/* AcceptedCommandList (index=59) */ \
590593
0x00000000 /* Identify */, \
591594
chip::kInvalidCommandId /* end of list */, \
592595
/* Endpoint: 2, Cluster: Identify (server) */\
593-
/* AcceptedCommandList (index=58) */ \
596+
/* AcceptedCommandList (index=61) */ \
594597
0x00000000 /* Identify */, \
595598
0x00000040 /* TriggerEffect */, \
596599
chip::kInvalidCommandId /* end of list */, \
597600
/* Endpoint: 2, Cluster: Groups (server) */\
598-
/* AcceptedCommandList (index=61) */ \
601+
/* AcceptedCommandList (index=64) */ \
599602
0x00000000 /* AddGroup */, \
600603
0x00000001 /* ViewGroup */, \
601604
0x00000002 /* GetGroupMembership */, \
602605
0x00000003 /* RemoveGroup */, \
603606
0x00000004 /* RemoveAllGroups */, \
604607
0x00000005 /* AddGroupIfIdentifying */, \
605608
chip::kInvalidCommandId /* end of list */, \
606-
/* GeneratedCommandList (index=68)*/ \
609+
/* GeneratedCommandList (index=71)*/ \
607610
0x00000000 /* AddGroupResponse */, \
608611
0x00000001 /* ViewGroupResponse */, \
609612
0x00000002 /* GetGroupMembershipResponse */, \
610613
0x00000003 /* RemoveGroupResponse */, \
611614
chip::kInvalidCommandId /* end of list */, \
612615
/* Endpoint: 2, Cluster: On/Off (server) */\
613-
/* AcceptedCommandList (index=73) */ \
616+
/* AcceptedCommandList (index=76) */ \
614617
0x00000000 /* Off */, \
615618
0x00000001 /* On */, \
616619
0x00000002 /* Toggle */, \
@@ -619,7 +622,7 @@
619622
0x00000042 /* OnWithTimedOff */, \
620623
chip::kInvalidCommandId /* end of list */, \
621624
/* Endpoint: 2, Cluster: Scenes Management (server) */\
622-
/* AcceptedCommandList (index=80) */ \
625+
/* AcceptedCommandList (index=83) */ \
623626
0x00000000 /* AddScene */, \
624627
0x00000001 /* ViewScene */, \
625628
0x00000002 /* RemoveScene */, \
@@ -628,7 +631,7 @@
628631
0x00000005 /* RecallScene */, \
629632
0x00000006 /* GetSceneMembership */, \
630633
chip::kInvalidCommandId /* end of list */, \
631-
/* GeneratedCommandList (index=88)*/ \
634+
/* GeneratedCommandList (index=91)*/ \
632635
0x00000000 /* AddSceneResponse */, \
633636
0x00000001 /* ViewSceneResponse */, \
634637
0x00000002 /* RemoveSceneResponse */, \
@@ -637,27 +640,27 @@
637640
0x00000006 /* GetSceneMembershipResponse */, \
638641
chip::kInvalidCommandId /* end of list */, \
639642
/* Endpoint: 3, Cluster: Identify (server) */\
640-
/* AcceptedCommandList (index=95) */ \
643+
/* AcceptedCommandList (index=98) */ \
641644
0x00000000 /* Identify */, \
642645
0x00000040 /* TriggerEffect */, \
643646
chip::kInvalidCommandId /* end of list */, \
644647
/* Endpoint: 3, Cluster: Groups (server) */\
645-
/* AcceptedCommandList (index=98) */ \
648+
/* AcceptedCommandList (index=101) */ \
646649
0x00000000 /* AddGroup */, \
647650
0x00000001 /* ViewGroup */, \
648651
0x00000002 /* GetGroupMembership */, \
649652
0x00000003 /* RemoveGroup */, \
650653
0x00000004 /* RemoveAllGroups */, \
651654
0x00000005 /* AddGroupIfIdentifying */, \
652655
chip::kInvalidCommandId /* end of list */, \
653-
/* GeneratedCommandList (index=105)*/ \
656+
/* GeneratedCommandList (index=108)*/ \
654657
0x00000000 /* AddGroupResponse */, \
655658
0x00000001 /* ViewGroupResponse */, \
656659
0x00000002 /* GetGroupMembershipResponse */, \
657660
0x00000003 /* RemoveGroupResponse */, \
658661
chip::kInvalidCommandId /* end of list */, \
659662
/* Endpoint: 3, Cluster: On/Off (server) */\
660-
/* AcceptedCommandList (index=110) */ \
663+
/* AcceptedCommandList (index=113) */ \
661664
0x00000000 /* Off */, \
662665
0x00000001 /* On */, \
663666
0x00000002 /* Toggle */, \
@@ -838,7 +841,7 @@
838841
.mask = ZAP_CLUSTER_MASK(SERVER), \
839842
.functions = NULL, \
840843
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 34 ), \
841-
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 43 ), \
844+
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 45 ), \
842845
.eventList = nullptr, \
843846
.eventCount = 0, \
844847
},\
@@ -850,8 +853,8 @@
850853
.clusterSize = 0, \
851854
.mask = ZAP_CLUSTER_MASK(SERVER), \
852855
.functions = NULL, \
853-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 48 ), \
854-
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 53 ), \
856+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 51 ), \
857+
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 56 ), \
855858
.eventList = nullptr, \
856859
.eventCount = 0, \
857860
},\
@@ -863,7 +866,7 @@
863866
.clusterSize = 9, \
864867
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(ATTRIBUTE_CHANGED_FUNCTION), \
865868
.functions = chipFuncArrayIdentifyServer, \
866-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 56 ), \
869+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 59 ), \
867870
.generatedCommandList = nullptr, \
868871
.eventList = nullptr, \
869872
.eventCount = 0, \
@@ -889,7 +892,7 @@
889892
.clusterSize = 9, \
890893
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(ATTRIBUTE_CHANGED_FUNCTION), \
891894
.functions = chipFuncArrayIdentifyServer, \
892-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 58 ), \
895+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 61 ), \
893896
.generatedCommandList = nullptr, \
894897
.eventList = nullptr, \
895898
.eventCount = 0, \
@@ -902,8 +905,8 @@
902905
.clusterSize = 7, \
903906
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION), \
904907
.functions = chipFuncArrayGroupsServer, \
905-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 61 ), \
906-
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 68 ), \
908+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 64 ), \
909+
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 71 ), \
907910
.eventList = nullptr, \
908911
.eventCount = 0, \
909912
},\
@@ -915,7 +918,7 @@
915918
.clusterSize = 13, \
916919
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(SHUTDOWN_FUNCTION), \
917920
.functions = chipFuncArrayOnOffServer, \
918-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 73 ), \
921+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 76 ), \
919922
.generatedCommandList = nullptr, \
920923
.eventList = nullptr, \
921924
.eventCount = 0, \
@@ -941,8 +944,8 @@
941944
.clusterSize = 8, \
942945
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(SHUTDOWN_FUNCTION), \
943946
.functions = chipFuncArrayScenesManagementServer, \
944-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 80 ), \
945-
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 88 ), \
947+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 83 ), \
948+
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 91 ), \
946949
.eventList = nullptr, \
947950
.eventCount = 0, \
948951
},\
@@ -967,7 +970,7 @@
967970
.clusterSize = 9, \
968971
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(ATTRIBUTE_CHANGED_FUNCTION), \
969972
.functions = chipFuncArrayIdentifyServer, \
970-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 95 ), \
973+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 98 ), \
971974
.generatedCommandList = nullptr, \
972975
.eventList = nullptr, \
973976
.eventCount = 0, \
@@ -980,8 +983,8 @@
980983
.clusterSize = 7, \
981984
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION), \
982985
.functions = chipFuncArrayGroupsServer, \
983-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 98 ), \
984-
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 105 ), \
986+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 101 ), \
987+
.generatedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 108 ), \
985988
.eventList = nullptr, \
986989
.eventCount = 0, \
987990
},\
@@ -1006,7 +1009,7 @@
10061009
.clusterSize = 13, \
10071010
.mask = ZAP_CLUSTER_MASK(SERVER) | ZAP_CLUSTER_MASK(INIT_FUNCTION) | ZAP_CLUSTER_MASK(SHUTDOWN_FUNCTION), \
10081011
.functions = chipFuncArrayOnOffServer, \
1009-
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 110 ), \
1012+
.acceptedCommandList = ZAP_GENERATED_COMMANDS_INDEX( 113 ), \
10101013
.generatedCommandList = nullptr, \
10111014
.eventList = nullptr, \
10121015
.eventCount = 0, \

0 commit comments

Comments
 (0)