Skip to content

Commit 9e535b3

Browse files
committed
Merge branch 'fix_icd_attributes_1_3' into 'release/v1.3'
[v1.3] components/esp-matter: Fix the typos when creating ICD management See merge request app-frameworks/esp-matter!896
2 parents 778d93e + 428f23c commit 9e535b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/esp_matter/esp_matter_cluster.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1054,8 +1054,8 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
10541054
if (flags & CLUSTER_FLAG_SERVER) {
10551055
/* Attributes managed internally */
10561056
global::attribute::create_feature_map(cluster, 0);
1057-
attribute::create_idle_mode_duration(cluster, CONFIG_ICD_ACTIVE_MODE_INTERVAL_MS);
1058-
attribute::create_active_mode_duration(cluster, CONFIG_ICD_IDLE_MODE_INTERVAL_SEC);
1057+
attribute::create_idle_mode_duration(cluster, CONFIG_ICD_IDLE_MODE_INTERVAL_SEC);
1058+
attribute::create_active_mode_duration(cluster, CONFIG_ICD_ACTIVE_MODE_INTERVAL_MS);
10591059
attribute::create_active_mode_threshold(cluster, CONFIG_ICD_ACTIVE_MODE_THRESHOLD_MS);
10601060

10611061
/* Attributes not managed internally */

0 commit comments

Comments
 (0)