@@ -9,15 +9,17 @@ Helper functions for converting TLV-encoded data to Json format and vice versa.
9
9
The library supports
10
10
11
11
- full bi-directional conversion for matter data model payloads
12
- - Additional support for generic 32-bit unsigned integer ids using "implicit
13
- profile tags":
14
12
15
- - 8-bit IDs are encoded as ` ContextTags ` , which matches matter
16
- specification for encoding field identifiers
17
- - For IDs that are larger, they will be encoded as
18
- ` Implicit Profile Tags ` . The reason for allowing such IDs is to support
19
- json formats where keys contain ids typically found in paths, like
20
- ` {"1234:INT": 10} ` meaning ` "Attribute 1234 has value 10" ` .
13
+ - When the MEI prefix encodes a standard/scoped source, the tag is encoded
14
+ using ContextSpecific tag if tag_id is less than or equal to UINT8_MAX, and
15
+ ImplicitProfile tag if tag_id is larger than UINT8_MAX. The reason for
16
+ allowing such IDs is to support json formats where keys contain ids
17
+ typically found in paths, like ` {"1234:INT": 10} ` meaning
18
+ ` "Attribute 1234 has value 10" ` .
19
+
20
+ - When the MEI prefix encodes a manufacturer code, the tag is encoded using
21
+ FullyQualified_6Bytes tag, the Vendor ID SHALL be set to the manufacturer
22
+ code, the profile number set to 0 and the tag number set to the MEI suffix.
21
23
22
24
### Format details
23
25
@@ -75,12 +77,13 @@ limitations of this format are:
75
77
- TLV List types are not supported.
76
78
- TLV Array cannot contain another TLV Array.
77
79
- The top-level container MUST be an anonymous STRUCT.
78
- - Elements of the TLV Structure MUST have Context or Implicit Profile Tags.
80
+ - Elements of the TLV Structure MUST have Context or Implicit Profile Tags for
81
+ standard/scoped source and Fully Qualified Profile Tags for an MC source.
79
82
- Implicit Profile Tag number MUST be larger or equal to 256 and smaller than
80
83
2^32 + 1.
81
84
- TLV Structure element MUST be sorted by tag numbers from low to high, where
82
85
sorted elements with Context Tags MUST appear first followed by sorted
83
- elements with Implicit Profile Tags.
86
+ elements with Implicit Profile Tags and then Profile Specific Tags .
84
87
85
88
## Format Example
86
89
@@ -120,6 +123,7 @@ elements, arrays, and structures.
120
123
"8:DOUBLE" : 17.9, // 17.9 as double
121
124
"9:FLOAT" : 17.9, // 17.9 as float
122
125
"10:FLOAT" : "-Infinity", // Negative infinity float
126
+ "4293984426:UINT" : 3, // Vendor ID = 0xFFF1, Profile ID = 0, Tag ID = 0x00AA
123
127
"contact:11:STRUCT" : { // structure example with field_name in the Json name
124
128
"name:1:STRING" : "John",
125
129
"age:2:UINT" : 34,
0 commit comments