Skip to content

Commit 561d7e1

Browse files
authored
rename the Robotic Vacuum Operational State cluster (#27273)
* rename the Robotic Vacuum Operational State cluster * remove whitespace from json files * style changes * fix a build file
1 parent 9354db4 commit 561d7e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1287
-1379
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,3 @@ examples/thermostat/ameba/build
8080
# https://github.com/espressif/idf-component-manager#using-with-a-project
8181
examples/*/esp32/managed_components
8282
examples/*/esp32/dependencies.lock
83-
examples/all-clusters-app/all-clusters-common/all-clusters-app.zap.old

src/app/zap-templates/zcl/data-model/chip/operational-state-rvc-cluster.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ limitations under the License.
3838

3939
<cluster>
4040
<domain>Robots</domain>
41-
<name>Robotic Vacuum Operational State</name>
41+
<name>RVC Operational State</name>
4242
<code>0x0061</code>
4343
<define>OPERATIONAL_STATE_RVC_CLUSTER</define>
4444
<client init="false" tick="false">true</client>

src/app/zap-templates/zcl/zcl-with-test-extensions.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,7 @@
302302
],
303303
"Temperature Control": ["SupportedTemperatureLevels"],
304304
"Operational State": ["OperationalState", "OperationalError"],
305-
"Robotic Vacuum Operational State": [
306-
"OperationalState",
307-
"OperationalError"
308-
]
305+
"RVC Operational State": ["OperationalState", "OperationalError"]
309306
},
310307
"defaultReportingPolicy": "mandatory",
311308
"ZCLDataTypes": ["ARRAY", "BITMAP", "ENUM", "NUMBER", "STRING", "STRUCT"],

src/app/zap-templates/zcl/zcl.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,7 @@
300300
],
301301
"Temperature Control": ["SupportedTemperatureLevels"],
302302
"Operational State": ["OperationalState", "OperationalError"],
303-
"Robotic Vacuum Operational State": [
304-
"OperationalState",
305-
"OperationalError"
306-
]
303+
"RVC Operational State": ["OperationalState", "OperationalError"]
307304
},
308305
"defaultReportingPolicy": "mandatory",
309306
"ZCLDataTypes": ["ARRAY", "BITMAP", "ENUM", "NUMBER", "STRING", "STRUCT"],

src/controller/data_model/BUILD.gn

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ if (current_os == "android" || matter_enable_java_compilation) {
242242
"jni/RefrigeratorAndTemperatureControlledCabinetModeSelectClient-ReadImpl.cpp",
243243
"jni/RelativeHumidityMeasurementClient-InvokeSubscribeImpl.cpp",
244244
"jni/RelativeHumidityMeasurementClient-ReadImpl.cpp",
245-
"jni/RoboticVacuumOperationalStateClient-InvokeSubscribeImpl.cpp",
246-
"jni/RoboticVacuumOperationalStateClient-ReadImpl.cpp",
245+
"jni/RvcOperationalStateClient-InvokeSubscribeImpl.cpp",
246+
"jni/RvcOperationalStateClient-ReadImpl.cpp",
247247
"jni/RvcCleanModeSelectClient-InvokeSubscribeImpl.cpp",
248248
"jni/RvcCleanModeSelectClient-ReadImpl.cpp",
249249
"jni/RvcRunModeSelectClient-InvokeSubscribeImpl.cpp",

src/controller/data_model/controller-clusters.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -3416,7 +3416,7 @@ client cluster OperationalState = 96 {
34163416
}
34173417

34183418
/** This cluster supports remotely monitoring and, where supported, changing the operational state of a Robotic Vacuum. */
3419-
client cluster RoboticVacuumOperationalState = 97 {
3419+
client cluster RvcOperationalState = 97 {
34203420
enum ErrorStateEnum : ENUM8 {
34213421
kFailedToFindChargingDock = 64;
34223422
kStuck = 65;

src/controller/data_model/controller-clusters.zap

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
}
1717
],
1818
"package": [
19+
{
20+
"pathRelativity": "relativeToZap",
21+
"path": "../../app/zap-templates/app-templates.json",
22+
"type": "gen-templates-json",
23+
"version": "chip-v1"
24+
},
1925
{
2026
"pathRelativity": "relativeToZap",
2127
"path": "../../app/zap-templates/zcl/zcl.json",
2228
"type": "zcl-properties",
2329
"category": "matter",
2430
"version": 1,
2531
"description": "Matter SDK ZCL data"
26-
},
27-
{
28-
"pathRelativity": "relativeToZap",
29-
"path": "../../app/zap-templates/app-templates.json",
30-
"type": "gen-templates-json",
31-
"version": "chip-v1"
3232
}
3333
],
3434
"endpointTypes": [
@@ -13154,7 +13154,7 @@
1315413154
]
1315513155
},
1315613156
{
13157-
"name": "Robotic Vacuum Operational State",
13157+
"name": "RVC Operational State",
1315813158
"code": 97,
1315913159
"mfgCode": null,
1316013160
"define": "OPERATIONAL_STATE_RVC_CLUSTER",
@@ -13230,7 +13230,7 @@
1323013230
]
1323113231
},
1323213232
{
13233-
"name": "Robotic Vacuum Operational State",
13233+
"name": "RVC Operational State",
1323413234
"code": 97,
1323513235
"mfgCode": null,
1323613236
"define": "OPERATIONAL_STATE_RVC_CLUSTER",

src/controller/java/generated/java/chip/devicecontroller/ClusterIDMapping.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ public static BaseCluster getCluster(long clusterId) {
187187
if (clusterId == OperationalState.ID) {
188188
return new OperationalState();
189189
}
190-
if (clusterId == RoboticVacuumOperationalState.ID) {
191-
return new RoboticVacuumOperationalState();
190+
if (clusterId == RvcOperationalState.ID) {
191+
return new RvcOperationalState();
192192
}
193193
if (clusterId == HepaFilterMonitoring.ID) {
194194
return new HepaFilterMonitoring();
@@ -7709,7 +7709,7 @@ public long getCommandID(String name) throws IllegalArgumentException {
77097709
return Command.valueOf(name).getID();
77107710
}
77117711
}
7712-
public static class RoboticVacuumOperationalState implements BaseCluster {
7712+
public static class RvcOperationalState implements BaseCluster {
77137713
public static final long ID = 97L;
77147714
public long getID() {
77157715
return ID;

0 commit comments

Comments
 (0)