Skip to content

Commit

Permalink
Reorder EndOfServiceEnum elements according to the canonical pattern (#…
Browse files Browse the repository at this point in the history
…27564)

* Reorder EndOfServiceEnum elements according to the canonical pattern

Fixes #27563

* Regenerated dependent files
  • Loading branch information
robszewczyk authored and pull[bot] committed Feb 23, 2024
1 parent 04006f2 commit 1140868
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1634,8 +1634,8 @@ server cluster SmokeCoAlarm = 92 {
}

enum EndOfServiceEnum : ENUM8 {
kExpired = 0;
kNormal = 1;
kNormal = 0;
kExpired = 1;
}

enum ExpressedStateEnum : ENUM8 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ limitations under the License.

<enum name="EndOfServiceEnum" type="ENUM8">
<cluster code="0x005C" />
<item value="0" name="Expired" />
<item value="1" name="Normal" />
<item value="0" name="Normal" />
<item value="1" name="Expired" />
</enum>

<enum name="ContaminationStateEnum" type="ENUM8">
Expand Down
4 changes: 2 additions & 2 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3176,8 +3176,8 @@ client cluster SmokeCoAlarm = 92 {
}

enum EndOfServiceEnum : ENUM8 {
kExpired = 0;
kNormal = 1;
kNormal = 0;
kExpired = 1;
}

enum ExpressedStateEnum : ENUM8 {
Expand Down
4 changes: 2 additions & 2 deletions src/controller/python/chip/clusters/Objects.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/darwin/Framework/CHIP/zap-generated/MTRBaseClusters.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1140868

Please sign in to comment.