Skip to content

Commit 97de7ee

Browse files
Restyled by clang-format
1 parent 8bcd2b4 commit 97de7ee

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

examples/external-mei-app/nrfconnect/mei/clusters/sample-external-mei-server.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ void MatterSampleExternalMeiPluginServerInitCallback()
3131
ChipLogProgress(Zcl, "Sample MEI Init. Ep %d, Total Ep %u", MATTER_DM_SAMPLE_EXTERNAL_MEI_CLUSTER_SERVER_ENDPOINT_COUNT,
3232
static_cast<uint16_t>(kNumSupportedEndpoints));
3333
ReturnOnFailure(CommandHandlerInterfaceRegistry::Instance().RegisterCommandHandler(&SampleExternalMeiServer::Instance()));
34-
VerifyOrReturn(AttributeAccessInterfaceRegistry::Instance().Register(&SampleExternalMeiServer::Instance()), CHIP_ERROR_INCORRECT_STATE);
34+
VerifyOrReturn(AttributeAccessInterfaceRegistry::Instance().Register(&SampleExternalMeiServer::Instance()),
35+
CHIP_ERROR_INCORRECT_STATE);
3536
}
3637

3738
void emberAfSampleExternalMeiClusterServerInitCallback(chip::EndpointId endpoint)
@@ -89,7 +90,7 @@ void SampleExternalMeiServer::InvokeCommand(HandlerContext & ctxt)
8990
ChipLogProgress(Zcl, "Ping Command on Ep %d", endpoint);
9091
// NOTE: fabricIndex did not get created by zap, thus I've removed isFabricSensitive="true" in the XML
9192
// Events::PingCountEvent::Type event{ .count = content[endpointIndex].pingCount++, .fabricIndex = fabricIndex };
92-
Events::PingCountEvent::Type event{ .count = content[endpointIndex].pingCount++};
93+
Events::PingCountEvent::Type event{ .count = content[endpointIndex].pingCount++ };
9394
chip::EventNumber placeholderEventNumber;
9495
CHIP_ERROR err = LogEvent(event, endpoint, placeholderEventNumber);
9596
if (CHIP_NO_ERROR != err)

examples/external-mei-app/nrfconnect/mei/zzz_generated/app-common/app-common/zap-generated/cluster-objects.h

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)