Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmelveilleux committed May 31, 2022
1 parent 8c5d5cd commit 5c29287
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions examples/pump-app/cc13x2x7_26x2x7/main/DeviceCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ void DeviceCallbacks::DeviceEventCallback(const ChipDeviceEvent * event, intptr_
break;

case DeviceEventType::kCommissioningComplete:
PLAT_LOG("Commissioning complete (%x,%d)", event->CommissioningComplete.PeerNodeId,
event->CommissioningComplete.PeerFabricIndex);
PLAT_LOG("Commissioning complete for fabric 0x%x", event->CommissioningComplete.fabricIndex);
break;

case DeviceEventType::kOperationalNetworkEnabled:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void CastingServer::DeviceEventCallback(const DeviceLayer::ChipDeviceEvent * eve
else if (event->Type == DeviceLayer::DeviceEventType::kCommissioningComplete)
{
CHIP_ERROR err = CastingServer::GetInstance()->GetTargetVideoPlayerInfo()->Initialize(
event->CommissioningComplete.PeerNodeId, event->CommissioningComplete.PeerFabricIndex);
event->CommissioningComplete.nodeId, event->CommissioningComplete.fabricIndex);

CastingServer::GetInstance()->mCommissioningCompleteCallback(err);
}
Expand Down

0 comments on commit 5c29287

Please sign in to comment.