Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorder EndOfServiceEnum elements according to the canonical pattern #27564

Merged
merged 3 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.