Skip to content

Commit

Permalink
Fix -- missing endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
erjiaqing committed Sep 28, 2023
1 parent be930c5 commit c214394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/CHIPDeviceController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2827,8 +2827,8 @@ void DeviceCommissioner::PerformCommissioningStep(DeviceProxy * proxy, Commissio
case CommissioningStage::kICDIdentification: {
app::AttributePathParams readPaths[1];
// TODO(#29382): We probably want to read "ActiveMode" attribute (to be implemented) for ICD.
readPaths[0] =
app::AttributePathParams(app::Clusters::IcdManagement::Id, app::Clusters::IcdManagement::Attributes::FeatureMap::Id);
readPaths[0] = app::AttributePathParams(endpoint, app::Clusters::IcdManagement::Id,
app::Clusters::IcdManagement::Attributes::FeatureMap::Id);
SendCommissioningReadRequest(proxy, timeout, readPaths, 1);
}
break;
Expand Down

0 comments on commit c214394

Please sign in to comment.