Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit abad92f

Browse files
committedJun 7, 2024·
Explicitly set the conformance.
1 parent 7d60124 commit abad92f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎src/app/zap-templates/zcl/data-model/chip/global-structs.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ limitations under the License.
1818
<!--
1919
TODO: Make these structures global rather than defining them for each cluster.
2020
This depends on the ability to define global structs via XML tags.
21+
see: https://github.com/project-chip/connectedhomeip/issues/29818
2122
-->
2223

2324
<configurator>
@@ -26,8 +27,8 @@ TODO: Make these structures global rather than defining them for each cluster.
2627
<cluster code="0x0150"/> <!-- Service Area Cluster -->
2728
<!-- TODO: add Basic Information Cluster code="0x0028" -->
2829

29-
<item fieldId="0" name="LocationName" type="char_string" length="128" isNullable="false"/>
30-
<item fieldId="1" name="FloorNumber" type="int16s" isNullable="true"/>
31-
<item fieldId="2" name="AreaType" type="AreaTypeTag" isNullable="true"/>
30+
<item fieldId="0" name="LocationName" type="char_string" length="128" isNullable="false" optional="false"/>
31+
<item fieldId="1" name="FloorNumber" type="int16s" isNullable="true" optional="false"/>
32+
<item fieldId="2" name="AreaType" type="AreaTypeTag" isNullable="true" optional="false"/>
3233
</struct>
3334
</configurator>

0 commit comments

Comments
 (0)
Please sign in to comment.