Skip to content

Commit 593726e

Browse files
committed
components/esp-matter:add endpoint list attr for power source cluster
1 parent 280f514 commit 593726e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

components/esp_matter/esp_matter_attribute.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -2957,7 +2957,7 @@ attribute_t *create_number_of_credentials_supported_per_user(cluster_t *cluster,
29572957
attribute_t *create_language(cluster_t *cluster, const char * value, uint16_t length)
29582958
{
29592959
VerifyOrReturnValue(length <= k_max_language_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string size out of bound"));
2960-
2960+
29612961
return esp_matter::attribute::create(cluster, DoorLock::Attributes::Language::Id, ATTRIBUTE_FLAG_WRITABLE,
29622962
esp_matter_char_str((char *)value, length), k_max_language_length);
29632963
}
@@ -3945,6 +3945,12 @@ attribute_t *create_active_bat_charge_faults(cluster_t *cluster, uint8_t * value
39453945
return esp_matter::attribute::create(cluster, PowerSource::Attributes::ActiveBatChargeFaults::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
39463946
}
39473947

3948+
attribute_t *create_endpoint_list(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
3949+
{
3950+
VerifyOrReturnValue(count <= k_max_endpoint_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
3951+
return esp_matter::attribute::create(cluster, PowerSource::Attributes::EndpointList::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
3952+
}
3953+
39483954
} /* attribute */
39493955
} /* power_source */
39503956

components/esp_matter/esp_matter_attribute.h

+2
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,7 @@ constexpr uint8_t k_max_fault_count = 8;
925925
constexpr uint8_t k_max_designation_count = 20;
926926
constexpr uint8_t k_max_charge_faults_count = 16;
927927
constexpr uint8_t k_max_bat_replacement_description_length = 60;
928+
constexpr uint8_t k_max_endpoint_count = 16;
928929

929930
namespace attribute {
930931
attribute_t *create_status(cluster_t *cluster, uint8_t value);
@@ -958,6 +959,7 @@ attribute_t *create_bat_time_to_full_charge(cluster_t *cluster, nullable<uint32_
958959
attribute_t *create_bat_functional_while_charging(cluster_t *cluster, bool value);
959960
attribute_t *create_bat_charging_current(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max);
960961
attribute_t *create_active_bat_charge_faults(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count);
962+
attribute_t *create_endpoint_list(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count);
961963
} /* attribute */
962964
} /* power_source */
963965

components/esp_matter/esp_matter_cluster.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
122122
{
123123
cluster_t *cluster = cluster::create(endpoint, Descriptor::Id, flags);
124124
VerifyOrReturnValue(cluster, NULL, ESP_LOGE(TAG, "Could not create cluster. cluster_id: 0x%08" PRIX32, Descriptor::Id));
125-
125+
126126
if (flags & CLUSTER_FLAG_SERVER) {
127127
static const auto plugin_server_init_cb = CALL_ONCE(MatterDescriptorPluginServerInitCallback);
128128
set_plugin_server_init_callback(cluster, plugin_server_init_cb);
@@ -768,6 +768,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
768768
attribute::create_status(cluster, config->status);
769769
attribute::create_order(cluster, config->order, 0x00, 0xFF);
770770
attribute::create_description(cluster, config->description, strlen(config->description));
771+
attribute::create_endpoint_list(cluster, NULL, 0, 0);
771772
} else {
772773
ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes.");
773774
}

0 commit comments

Comments
 (0)