Skip to content

Commit

Permalink
Remove ICDM event (#31604)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs authored and pull[bot] committed Feb 5, 2024
1 parent 3286af5 commit 2799949
Show file tree
Hide file tree
Showing 23 changed files with 4 additions and 236 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1959,9 +1959,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
3 changes: 0 additions & 3 deletions examples/light-switch-app/qpg/zap/switch.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1631,9 +1631,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
4 changes: 0 additions & 4 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 @@ -1417,9 +1417,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down Expand Up @@ -1743,7 +1740,6 @@ endpoint 0 {
}

server cluster IcdManagement {
emits event OnTransitionToActiveMode;
callback attribute idleModeDuration;
callback attribute activeModeDuration;
callback attribute activeModeThreshold;
Expand Down
3 changes: 0 additions & 3 deletions examples/lock-app/lock-common/lock-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1777,9 +1777,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
3 changes: 0 additions & 3 deletions examples/lock-app/qpg/zap/lock.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1433,9 +1433,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1753,9 +1753,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ limitations under the License.
<attribute side="server" code="0x07" define="USER_ACTIVE_MODE_TRIGGER_INSTRUCTION" type="char_string" length="128" writable="false" optional="true" isNullable="false">UserActiveModeTriggerInstruction</attribute>
<attribute side="server" code="0x08" define="OPERATING_MODE" type="OperatingModeEnum" default="0" writable="false" optional="true" isNullable="false">OperatingMode</attribute>

<event side="server" code="0x00" priority="critical" name="OnTransitionToActiveMode" optional="true">
<description>OnTransitionToActiveMode</description>
</event>

<command source="client" code="0x00" name="RegisterClient" response="RegisterClientResponse" isFabricScoped="true" optional="true">
<description>Register a client to the end device</description>
<arg name="CheckInNodeID" type="node_id" optional="false"/>
Expand Down
3 changes: 0 additions & 3 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -2692,9 +2692,6 @@ cluster IcdManagement = 70 {
fabric_idx fabricIndex = 254;
}

critical event OnTransitionToActiveMode = 0 {
}

readonly attribute int32u idleModeDuration = 0;
readonly attribute int32u activeModeDuration = 1;
readonly attribute int16u activeModeThreshold = 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2297,34 +2297,6 @@ public String toString() {
return output.toString();
}
}
public static class IcdManagementClusterOnTransitionToActiveModeEvent {

public IcdManagementClusterOnTransitionToActiveModeEvent(
) {
}

public StructType encodeTlv() {
ArrayList<StructElement> values = new ArrayList<>();

return new StructType(values);
}

public static IcdManagementClusterOnTransitionToActiveModeEvent decodeTlv(BaseTLVType tlvValue) {
if (tlvValue == null || tlvValue.type() != TLVType.Struct) {
return null;
}
return new IcdManagementClusterOnTransitionToActiveModeEvent(
);
}

@Override
public String toString() {
StringBuilder output = new StringBuilder();
output.append("IcdManagementClusterOnTransitionToActiveModeEvent {\n");
output.append("}\n");
return output.toString();
}
}
public static class OvenCavityOperationalStateClusterOperationalErrorEvent {
public ChipStructs.OvenCavityOperationalStateClusterErrorStateStruct errorState;
private static final long ERROR_STATE_ID = 0L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5779,8 +5779,7 @@ public static Attribute value(long id) throws NoSuchFieldError {
}
}

public enum Event {
OnTransitionToActiveMode(0L),;
public enum Event {;
private final long id;
Event(long id) {
this.id = id;
Expand Down
30 changes: 0 additions & 30 deletions src/controller/java/zap-generated/CHIPEventTLVValueDecoder.cpp

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

17 changes: 0 additions & 17 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.

3 changes: 0 additions & 3 deletions src/darwin/Framework/CHIP/zap-generated/MTRClusterConstants.h

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

11 changes: 0 additions & 11 deletions src/darwin/Framework/CHIP/zap-generated/MTREventTLVValueDecoder.mm

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

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

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

23 changes: 0 additions & 23 deletions src/darwin/Framework/CHIP/zap-generated/MTRStructsObjc.mm

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.

10 changes: 0 additions & 10 deletions zzz_generated/app-common/app-common/zap-generated/ids/Events.h

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

7 changes: 2 additions & 5 deletions zzz_generated/chip-tool/zap-generated/cluster/Commands.h

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

Loading

0 comments on commit 2799949

Please sign in to comment.