@@ -132,13 +132,13 @@ void Sync_SubDevice_test()
132
132
133
133
// Add lights 1..4 --> will be mapped to ZCL endpoints 3..6
134
134
AddDeviceEndpoint (&gLight1 , &bridgedLightEndpoint, Span<const EmberAfDeviceType>(gBridgedOnOffDeviceTypes ),
135
- Span<DataVersion>(gLight1DataVersions ), 1 );
135
+ Span<DataVersion>(gLight1DataVersions ), chip::CharSpan (), 1 );
136
136
AddDeviceEndpoint (&gLight2 , &bridgedLightEndpoint, Span<const EmberAfDeviceType>(gBridgedOnOffDeviceTypes ),
137
- Span<DataVersion>(gLight2DataVersions ), 1 );
137
+ Span<DataVersion>(gLight2DataVersions ), chip::CharSpan (), 1 );
138
138
AddDeviceEndpoint (&gLight3 , &bridgedLightEndpoint, Span<const EmberAfDeviceType>(gBridgedOnOffDeviceTypes ),
139
- Span<DataVersion>(gLight3DataVersions ), 1 );
139
+ Span<DataVersion>(gLight3DataVersions ), chip::CharSpan (), 1 );
140
140
AddDeviceEndpoint (&gLight4 , &bridgedLightEndpoint, Span<const EmberAfDeviceType>(gBridgedOnOffDeviceTypes ),
141
- Span<DataVersion>(gLight4DataVersions ), 1 );
141
+ Span<DataVersion>(gLight4DataVersions ), chip::CharSpan (), 1 );
142
142
}
143
143
144
144
void Add_SubDevice_test ()
@@ -147,7 +147,7 @@ void Add_SubDevice_test()
147
147
gLight2 .SetChangeCallback (&HandleDeviceStatusChanged);
148
148
// Re-add Light 2 -- > will be mapped to ZCL endpoint 7
149
149
AddDeviceEndpoint (&gLight2 , &bridgedLightEndpoint, Span<const EmberAfDeviceType>(gBridgedOnOffDeviceTypes ),
150
- Span<DataVersion>(gLight2DataVersions ), 1 );
150
+ Span<DataVersion>(gLight2DataVersions ), chip::CharSpan (), 1 );
151
151
}
152
152
153
153
void Remove_SubDevice_test ()
0 commit comments