Skip to content

Commit fab01d8

Browse files
authored
[NXP] Fix TC-I-2.2 test failure (#33876)
* [nxp noup][examples][common] Fix thermostat Identify cluster issue on endepoint 0 Signed-off-by: Martin Girardot <martin.girardot@nxp.com> * [nxp noup][examples][common] Fix all cluster app Identify cluster issue on endepoint 0 Signed-off-by: Martin Girardot <martin.girardot@nxp.com> --------- Signed-off-by: Martin Girardot <martin.girardot@nxp.com>
1 parent cc66da8 commit fab01d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/all-clusters-app/nxp/common/main/DeviceCallbacks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void OnTriggerEffect(::Identify * identify)
5757
}
5858

5959
Identify gIdentify0 = {
60-
chip::EndpointId{ 1 },
60+
chip::EndpointId{ 0 },
6161
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
6262
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
6363
chip::app::Clusters::Identify::IdentifyTypeEnum::kNone,

examples/thermostat/nxp/common/main/DeviceCallbacks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void OnTriggerEffect(::Identify * identify)
5757
}
5858

5959
Identify gIdentify0 = {
60-
chip::EndpointId{ 1 },
60+
chip::EndpointId{ 0 },
6161
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
6262
[](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
6363
chip::app::Clusters::Identify::IdentifyTypeEnum::kNone,

0 commit comments

Comments
 (0)