Skip to content

Commit

Permalink
Renamed enum options and regenerated zap files
Browse files Browse the repository at this point in the history
  • Loading branch information
lpbeliveau-silabs committed Jan 12, 2024
1 parent 64af068 commit 6dc1335
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions data_model/clusters/ICDManagement.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ Davis, CA 95616, USA
<access fabricScoped="true"/>
</struct>
<enum name="OperatingModeEnum">
<item value="0" name="SITOperatingMode" summary="ICD is operating as a Short Idle Time ICD.">
<item value="0" name="SIT" summary="ICD is operating as a Short Idle Time ICD.">
<mandatoryConform/>
</item>
<item value="1" name="LITOperatingMode" summary="ICD is operating as a Long Idle Time ICD.">
<item value="1" name="LIT" summary="ICD is operating as a Long Idle Time ICD.">
<mandatoryConform/>
</item>
</enum>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2116,8 +2116,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
Expand Down
4 changes: 2 additions & 2 deletions examples/lit-icd-app/lit-icd-common/lit-icd-server-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1381,8 +1381,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
Expand Down
4 changes: 2 additions & 2 deletions examples/lock-app/lock-common/lock-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1741,8 +1741,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
Expand Down
4 changes: 2 additions & 2 deletions examples/lock-app/qpg/zap/lock.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1397,8 +1397,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1717,8 +1717,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ limitations under the License.

<enum name="OperatingModeEnum" type="enum8">
<cluster code="0x0046" />
<item value="0" name="SITOperatingMode" />
<item value="1" name="LITOperatingMode" />
<item value="0" name="SIT" />
<item value="1" name="LIT" />
</enum>

<cluster>
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 @@ -2849,8 +2849,8 @@ cluster IcdManagement = 70 {
revision 2;

enum OperatingModeEnum : enum8 {
kSITOperatingMode = 0;
kLITOperatingMode = 1;
kSIT = 0;
kLIT = 1;
}

bitmap Feature : bitmap32 {
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 6dc1335

Please sign in to comment.