Skip to content

Commit 2f7b941

Browse files
authored
- update constraints for LocalTemperatureCalibration (#34536)
- update yaml test - added LocalTemperatureCalibration in all-cluster-app and updated ci-pics
1 parent 420af5c commit 2f7b941

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+1
Original file line numberDiff line numberDiff line change
@@ -8645,6 +8645,7 @@ endpoint 1 {
86458645
ram attribute absMaxHeatSetpointLimit default = 0x0BB8;
86468646
ram attribute absMinCoolSetpointLimit default = 0x0640;
86478647
ram attribute absMaxCoolSetpointLimit default = 0x0C80;
8648+
ram attribute localTemperatureCalibration default = 0x00;
86488649
ram attribute occupiedCoolingSetpoint default = 0x0A28;
86498650
ram attribute occupiedHeatingSetpoint default = 0x07D0;
86508651
ram attribute minHeatSetpointLimit default = 0x02BC;

examples/all-clusters-app/all-clusters-common/all-clusters-app.zap

+16
Original file line numberDiff line numberDiff line change
@@ -16255,6 +16255,22 @@
1625516255
"maxInterval": 65344,
1625616256
"reportableChange": 0
1625716257
},
16258+
{
16259+
"name": "LocalTemperatureCalibration",
16260+
"code": 16,
16261+
"mfgCode": null,
16262+
"side": "server",
16263+
"type": "int8s",
16264+
"included": 1,
16265+
"storageOption": "RAM",
16266+
"singleton": 0,
16267+
"bounded": 0,
16268+
"defaultValue": "0x00",
16269+
"reportable": 1,
16270+
"minInterval": 1,
16271+
"maxInterval": 65534,
16272+
"reportableChange": 0
16273+
},
1625816274
{
1625916275
"name": "OccupiedCoolingSetpoint",
1626016276
"code": 17,

src/app/tests/suites/certification/Test_TC_TSTAT_2_1.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ tests:
243243
response:
244244
constraints:
245245
type: int8s
246-
minValue: -25
247-
maxValue: 25
246+
minValue: -127
247+
maxValue: 127
248248

249249
- label: "Step 13a: TH reads attribute OccupiedCoolingSetpoint from the DUT"
250250
PICS: TSTAT.S.F01 && TSTAT.S.A0017 && TSTAT.S.A0018

src/app/tests/suites/certification/ci-pics-values

+1-1
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ TSTAT.S.A0006=1
19261926
TSTAT.S.A0007=0
19271927
TSTAT.S.A0008=0
19281928
TSTAT.S.A0009=0
1929-
TSTAT.S.A0010=0
1929+
TSTAT.S.A0010=1
19301930
TSTAT.S.A0011=1
19311931
TSTAT.S.A0012=1
19321932
TSTAT.S.A0013=0

src/app/zap-templates/zcl/data-model/chip/thermostat-cluster.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ limitations under the License.
337337
<access op="read" privilege="view"/>
338338
<access op="write" privilege="manage"/>
339339
</attribute>
340-
<attribute side="server" code="0x0010" define="LOCAL_TEMPERATURE_CALIBRATION" type="int8s" min="0xE7" max="0x19" writable="true" default="0x00" optional="true">
340+
<attribute side="server" code="0x0010" define="LOCAL_TEMPERATURE_CALIBRATION" type="int8s" min="-127" max="127" writable="true" default="0x00" optional="true">
341341
<description>LocalTemperatureCalibration</description>
342342
<access op="write" privilege="manage"/>
343343
</attribute>

0 commit comments

Comments
 (0)