Skip to content

Commit 131c1ae

Browse files
committed
Merge branch 'basic_info/unique_id' into 'main'
Enabled UniqueId Attribute See merge request app-frameworks/esp-matter!871
2 parents 8642047 + 91a9ea4 commit 131c1ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/esp_matter/esp_matter_attribute.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ attribute_t *create_hardware_version(cluster_t *cluster, uint16_t value);
7878
attribute_t *create_hardware_version_string(cluster_t *cluster, char *value, uint16_t length);
7979
attribute_t *create_software_version(cluster_t *cluster, uint32_t value);
8080
attribute_t *create_software_version_string(cluster_t *cluster, char *value, uint16_t length);
81+
attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length);
8182
attribute_t *create_capability_minima(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count);
83+
attribute_t *create_specification_version(cluster_t *cluster, uint32_t value);
84+
attribute_t *create_max_paths_per_invoke(cluster_t *cluster, uint16_t value);
8285

8386
/** These attributes are optional for the cluster, but when added to this cluster, the value is maintained internally.
8487
* If the attributes are added in some other cluster, then the value is not maintained internally.
@@ -90,10 +93,7 @@ attribute_t *create_product_label(cluster_t *cluster, char *value, uint16_t leng
9093
attribute_t *create_serial_number(cluster_t *cluster, char *value, uint16_t length);
9194
attribute_t *create_local_config_disabled(cluster_t *cluster, bool value);
9295
attribute_t *create_reachable(cluster_t *cluster, bool value);
93-
attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length);
9496
attribute_t *create_product_appearance(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count);
95-
attribute_t *create_specification_version(cluster_t *cluster, uint32_t value);
96-
attribute_t *create_max_paths_per_invoke(cluster_t *cluster, uint16_t value);
9797
} /* attribute */
9898
} /* basic_information */
9999

0 commit comments

Comments
 (0)