From 51c7ce9bb3cedcd0ff3a76b4ee071209efb13039 Mon Sep 17 00:00:00 2001 From: Ken Leone Date: Wed, 24 May 2023 06:03:22 +0000 Subject: [PATCH] Regnerate matter file using latest zap-cli --- .../chef/devices/rootnode_pump_a811bb33a0.matter | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/chef/devices/rootnode_pump_a811bb33a0.matter b/examples/chef/devices/rootnode_pump_a811bb33a0.matter index abc8537bbe5e61..8859b11d79c201 100644 --- a/examples/chef/devices/rootnode_pump_a811bb33a0.matter +++ b/examples/chef/devices/rootnode_pump_a811bb33a0.matter @@ -349,7 +349,7 @@ server cluster UnitLocalization = 45 { /** This cluster is used to manage global aspects of the Commissioning flow. */ server cluster GeneralCommissioning = 48 { - enum CommissioningError : ENUM8 { + enum CommissioningErrorEnum : ENUM8 { kOk = 0; kValueOutsideRange = 1; kInvalidAuthentication = 2; @@ -357,7 +357,7 @@ server cluster GeneralCommissioning = 48 { kBusyWithOtherAdmin = 4; } - enum RegulatoryLocationType : ENUM8 { + enum RegulatoryLocationTypeEnum : ENUM8 { kIndoor = 0; kOutdoor = 1; kIndoorOutdoor = 2; @@ -370,8 +370,8 @@ server cluster GeneralCommissioning = 48 { attribute access(write: administer) int64u breadcrumb = 0; readonly attribute BasicCommissioningInfo basicCommissioningInfo = 1; - readonly attribute RegulatoryLocationType regulatoryConfig = 2; - readonly attribute RegulatoryLocationType locationCapability = 3; + readonly attribute RegulatoryLocationTypeEnum regulatoryConfig = 2; + readonly attribute RegulatoryLocationTypeEnum locationCapability = 3; readonly attribute boolean supportsConcurrentConnection = 4; readonly attribute command_id generatedCommandList[] = 65528; readonly attribute command_id acceptedCommandList[] = 65529; @@ -386,23 +386,23 @@ server cluster GeneralCommissioning = 48 { } request struct SetRegulatoryConfigRequest { - RegulatoryLocationType newRegulatoryConfig = 0; + RegulatoryLocationTypeEnum newRegulatoryConfig = 0; CHAR_STRING countryCode = 1; INT64U breadcrumb = 2; } response struct ArmFailSafeResponse = 1 { - CommissioningError errorCode = 0; + CommissioningErrorEnum errorCode = 0; CHAR_STRING debugText = 1; } response struct SetRegulatoryConfigResponse = 3 { - CommissioningError errorCode = 0; + CommissioningErrorEnum errorCode = 0; CHAR_STRING debugText = 1; } response struct CommissioningCompleteResponse = 5 { - CommissioningError errorCode = 0; + CommissioningErrorEnum errorCode = 0; CHAR_STRING debugText = 1; }