We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86a4d58 commit 17e2c84Copy full SHA for 17e2c84
examples/fabric-bridge-app/linux/main.cpp
@@ -35,6 +35,12 @@
35
#include <sys/ioctl.h>
36
#include <thread>
37
38
+// This is declared here and not in a header because zap/embr assumes all clusters
39
+// are defined in a static endpoint in the .zap file. From there, the codegen will
40
+// automatically use PluginApplicationCallbacksHeader.jinja to declare and call
41
+// the respective Init callbacks. However, because EcosystemInformation cluster is only
42
+// ever on a dynamic endpoint, this doesn't get declared and called for us, so we
43
+// need to declare and call it ourselves where the application is initialized.
44
void MatterEcosystemInformationPluginServerInitCallback();
45
46
using namespace chip;
0 commit comments