File tree 6 files changed +21
-0
lines changed
6 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,8 @@ list(
141
141
${chip_dir} /examples/all -clusters-app/ameba/main/Globals.cpp
142
142
${chip_dir} /examples/all -clusters-app/ameba/main/LEDWidget.cpp
143
143
${chip_dir} /examples/all -clusters-app/ameba/main/DsoHack.cpp
144
+
145
+ ${chip_dir} /examples/providers/DeviceInfoProviderImpl.cpp
144
146
)
145
147
146
148
add_library (
@@ -181,6 +183,7 @@ target_include_directories(
181
183
${chip_dir} /examples/all -clusters-app/all -clusters-common/include
182
184
${chip_dir} /examples/all -clusters-app/ameba/main/include
183
185
${chip_dir} /examples/platform/ameba
186
+ ${chip_dir} /examples/providers
184
187
${chip_dir_output} /gen/include
185
188
${chip_dir} /src/include /
186
189
${chip_dir} /src/lib/
Original file line number Diff line number Diff line change 22
22
#include " Globals.h"
23
23
#include " LEDWidget.h"
24
24
#include " chip_porting.h"
25
+ #include < DeviceInfoProviderImpl.h>
25
26
#include < lwip_netconf.h>
26
27
27
28
#include < app/clusters/identify-server/identify-server.h>
@@ -89,13 +90,16 @@ Identify gIdentify1 = {
89
90
#endif
90
91
91
92
static DeviceCallbacks EchoCallbacks;
93
+ chip::DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider ;
92
94
93
95
static void InitServer (intptr_t context)
94
96
{
95
97
// Init ZCL Data Model and CHIP App Server
96
98
static chip::CommonCaseDeviceServerInitParams initParams;
97
99
initParams.InitializeStaticResourcesBeforeServerInit ();
98
100
chip::Server::GetInstance ().Init (initParams);
101
+ gExampleDeviceInfoProvider .SetStorageDelegate (&Server::GetInstance ().GetPersistentStorage ());
102
+ chip::DeviceLayer::SetDeviceInfoProvider (&gExampleDeviceInfoProvider );
99
103
100
104
// Initialize device attestation config
101
105
SetDeviceAttestationCredentialsProvider (Examples::GetExampleDACProvider ());
Original file line number Diff line number Diff line change 37
37
${chip_dir} /examples/lighting-app/ameba/main/Globals.cpp
38
38
${chip_dir} /examples/lighting-app/ameba/main/LEDWidget.cpp
39
39
${chip_dir} /examples/lighting-app/ameba/main/DsoHack.cpp
40
+
41
+ ${chip_dir} /examples/providers/DeviceInfoProviderImpl.cpp
40
42
)
41
43
42
44
add_library (
@@ -61,6 +63,7 @@ target_include_directories(
61
63
${chip_dir} /examples/lighting-app/lighting-common/include
62
64
${chip_dir} /examples/lighting-app/ameba/main/include
63
65
${chip_dir} /examples/platform/ameba
66
+ ${chip_dir} /examples/providers
64
67
${chip_dir_output} /gen/include
65
68
${chip_dir} /src/include /
66
69
${chip_dir} /src/lib/
Original file line number Diff line number Diff line change 22
22
#include " Globals.h"
23
23
#include " LEDWidget.h"
24
24
#include " Server.h"
25
+ #include < DeviceInfoProviderImpl.h>
25
26
26
27
#include " chip_porting.h"
27
28
#include < credentials/DeviceAttestationCredsProvider.h>
@@ -74,6 +75,7 @@ void NetWorkCommissioningInstInit()
74
75
#endif
75
76
76
77
static DeviceCallbacks EchoCallbacks;
78
+ chip::DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider ;
77
79
78
80
void OnIdentifyStart (Identify *)
79
81
{
@@ -117,6 +119,8 @@ static void InitServer(intptr_t context)
117
119
static chip::CommonCaseDeviceServerInitParams initParams;
118
120
(void ) initParams.InitializeStaticResourcesBeforeServerInit ();
119
121
chip::Server::GetInstance ().Init (initParams);
122
+ gExampleDeviceInfoProvider .SetStorageDelegate (&Server::GetInstance ().GetPersistentStorage ());
123
+ chip::DeviceLayer::SetDeviceInfoProvider (&gExampleDeviceInfoProvider );
120
124
121
125
// Initialize device attestation config
122
126
SetDeviceAttestationCredentialsProvider (Examples::GetExampleDACProvider ());
Original file line number Diff line number Diff line change 28
28
${chip_dir} /src/app/clusters/ota-requestor/DefaultOTARequestorStorage.cpp
29
29
${chip_dir} /src/app/clusters/ota-requestor/ota-requestor-server.cpp
30
30
${chip_dir} /examples/platform/ameba/ota/OTAInitializer.cpp
31
+
32
+ ${chip_dir} /examples/providers/DeviceInfoProviderImpl.cpp
31
33
)
32
34
33
35
add_library (
@@ -62,6 +64,7 @@ target_include_directories(
62
64
${chip_dir} /src/app/clusters/ota-requestor
63
65
${chip_dir} /examples/ota-requestor-app/ameba/main/include
64
66
${chip_dir} /examples/platform/ameba
67
+ ${chip_dir} /examples/providers
65
68
${sdk_root} /component /soc/realtek/amebad/fwlib/include
66
69
)
67
70
Original file line number Diff line number Diff line change 20
20
#include " CHIPDeviceManager.h"
21
21
#include " DeviceCallbacks.h"
22
22
#include " chip_porting.h"
23
+ #include < DeviceInfoProviderImpl.h>
23
24
24
25
#include < app/clusters/network-commissioning/network-commissioning.h>
25
26
#include < app/server/Server.h>
@@ -73,13 +74,16 @@ void NetWorkCommissioningInstInit()
73
74
}
74
75
75
76
static DeviceCallbacks EchoCallbacks;
77
+ chip::DeviceLayer::DeviceInfoProviderImpl gExampleDeviceInfoProvider ;
76
78
77
79
static void InitServer (intptr_t context)
78
80
{
79
81
// Init ZCL Data Model and CHIP App Server
80
82
static chip::CommonCaseDeviceServerInitParams initParams;
81
83
(void ) initParams.InitializeStaticResourcesBeforeServerInit ();
82
84
chip::Server::GetInstance ().Init (initParams);
85
+ gExampleDeviceInfoProvider .SetStorageDelegate (&Server::GetInstance ().GetPersistentStorage ());
86
+ chip::DeviceLayer::SetDeviceInfoProvider (&gExampleDeviceInfoProvider );
83
87
84
88
// Initialize device attestation config
85
89
SetDeviceAttestationCredentialsProvider (Examples::GetExampleDACProvider ());
You can’t perform that action at this time.
0 commit comments