Skip to content

Commit

Permalink
Regenerate generated files.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple committed May 22, 2023
1 parent 96f5aaf commit 45a05db
Show file tree
Hide file tree
Showing 59 changed files with 560 additions and 555 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1256,15 +1256,15 @@ server cluster PowerSource = 47 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -1277,8 +1277,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;
Expand All @@ -1293,23 +1293,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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1112,15 +1112,15 @@ server cluster PowerSource = 47 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -1133,8 +1133,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;
Expand All @@ -1149,23 +1149,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;
}

Expand Down
16 changes: 8 additions & 8 deletions examples/bridge-app/bridge-common/bridge-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -651,15 +651,15 @@ 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -672,8 +672,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;
Expand All @@ -688,23 +688,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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,15 +667,15 @@ server cluster TimeFormatLocalization = 44 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -688,8 +688,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;
Expand All @@ -704,23 +704,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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,15 +615,15 @@ server cluster OtaSoftwareUpdateRequestor = 42 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -636,8 +636,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;
Expand All @@ -652,23 +652,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;
}

Expand Down
16 changes: 8 additions & 8 deletions examples/chef/devices/rootnode_contactsensor_lFAGG1bfRO.matter
Original file line number Diff line number Diff line change
Expand Up @@ -518,15 +518,15 @@ server cluster TimeFormatLocalization = 44 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -539,8 +539,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;
Expand All @@ -555,23 +555,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;
}

Expand Down
16 changes: 8 additions & 8 deletions examples/chef/devices/rootnode_dimmablelight_bCwGYSDpoe.matter
Original file line number Diff line number Diff line change
Expand Up @@ -667,15 +667,15 @@ server cluster TimeFormatLocalization = 44 {

/** 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;
kNoFailSafe = 3;
kBusyWithOtherAdmin = 4;
}

enum RegulatoryLocationType : ENUM8 {
enum RegulatoryLocationTypeEnum : ENUM8 {
kIndoor = 0;
kOutdoor = 1;
kIndoorOutdoor = 2;
Expand All @@ -688,8 +688,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;
Expand All @@ -704,23 +704,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;
}

Expand Down
Loading

0 comments on commit 45a05db

Please sign in to comment.