Skip to content

Commit 431edd1

Browse files
committed
Merge branch 'fix-bounds' into 'release/v1.2'
[v1.2] esp-matter/components: Fix bounds of SystemMode attribute of Thermostat See merge request app-frameworks/esp-matter!865
2 parents 066791d + 8ca654b commit 431edd1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ variables:
6565
# fetch submodules
6666
- export PYTHONPATH=${IDF_PATH}/tools/ci/python_packages/:${PYTHONPATH}
6767
- pip install python-gitlab
68-
- pip install --upgrade idf-component-manager
6968
- python tools/ci/ci_fetch_submodule.py
7069

7170
.setup_ot_br: &setup_ot_br
@@ -140,6 +139,7 @@ variables:
140139
- *get_build_caches
141140
- *chip_submodule_update
142141
- *setup_idf
142+
- pip install 'idf-component-manager~=1.4.0'
143143
- *setup_matter
144144
- cd ${ESP_MATTER_PATH}
145145
- mkdir -p ${REPOS_PATH}

components/esp_matter/esp_matter_cluster.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1499,8 +1499,8 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
14991499
if (config) {
15001500
global::attribute::create_cluster_revision(cluster, config->cluster_revision);
15011501
attribute::create_local_temperature(cluster, config->local_temperature);
1502-
attribute::create_control_sequence_of_operation(cluster, config->control_sequence_of_operation, 0x0, 0x5);
1503-
attribute::create_system_mode(cluster, config->system_mode, 0x0, 0x7);
1502+
attribute::create_control_sequence_of_operation(cluster, config->control_sequence_of_operation, chip::to_underlying(Thermostat::ThermostatControlSequence::kCoolingOnly), chip::to_underlying(Thermostat::ThermostatControlSequence::kCoolingAndHeatingWithReheat));
1503+
attribute::create_system_mode(cluster, config->system_mode, chip::to_underlying(Thermostat::ThermostatSystemMode::kOff), chip::to_underlying(Thermostat::ThermostatSystemMode::kSleep));
15041504
} else {
15051505
ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes.");
15061506
}

0 commit comments

Comments
 (0)