Skip to content

Commit d05639f

Browse files
Fix compilation
1 parent 7c4ea70 commit d05639f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/app/util/util.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ void MatterElectricalPowerMeasurementPluginServerShutdownCallback() {}
206206
void MatterServiceAreaPluginServerShutdownCallback() {}
207207
void MatterWaterHeaterManagementPluginServerShutdownCallback() {}
208208
void MatterWaterHeaterModePluginServerShutdownCallback() {}
209+
void MatterMeterIdentificationPluginServerShutdownCallback() {}
210+
void MatterClosureDimensionPluginServerShutdownCallback() {}
211+
void MatterElectricalGridConditionsPluginServerShutdownCallback() {}
212+
void MatterCommodityPricePluginServerShutdownCallback() {}
209213

210214
bool emberAfContainsAttribute(chip::EndpointId endpoint, chip::ClusterId clusterId, chip::AttributeId attributeId)
211215
{

src/darwin/Framework/CHIP/ServerEndpoint/MTRIMDispatch.mm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ void emberAfClusterInitCallback(EndpointId endpoint, ClusterId clusterId)
7373
// clusters dont use it.
7474
}
7575

76+
void emberAfClusterShutdownCallback(EndpointId endpoint, ClusterId clusterId)
77+
{
78+
assertChipStackLockedByCurrentThread();
79+
80+
// No-op: Descriptor and OTA do not need this, and our client-defined
81+
// clusters dont use it.
82+
}
83+
7684
Protocols::InteractionModel::Status emAfWriteAttributeExternal(const ConcreteAttributePath & path,
7785
const EmberAfWriteDataInput & input)
7886
{

0 commit comments

Comments
 (0)