Skip to content

Commit b527893

Browse files
committed
Zap regen results
1 parent c05c603 commit b527893

32 files changed

+39
-3152
lines changed

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

+4-38
Original file line numberDiff line numberDiff line change
@@ -2943,14 +2943,10 @@ cluster OvenCavityOperationalState = 72 {
29432943
ErrorStateStruct commandResponseState = 0;
29442944
}
29452945

2946-
/** Upon receipt, the device SHALL pause its operation if it is possible based on the current function of the server. */
2947-
command Pause(): OperationalCommandResponse = 0;
29482946
/** Upon receipt, the device SHALL stop its operation if it is at a position where it is safe to do so and/or permitted. */
29492947
command Stop(): OperationalCommandResponse = 1;
29502948
/** Upon receipt, the device SHALL start its operation if it is safe to do so and the device is in an operational state from which it can be started. */
29512949
command Start(): OperationalCommandResponse = 2;
2952-
/** Upon receipt, the device SHALL resume its operation from the point it was at when it received the Pause command, or from the point when it was paused by means outside of this cluster (for example by manual button press). */
2953-
command Resume(): OperationalCommandResponse = 3;
29542950
}
29552951

29562952
/** Attributes and commands for selecting a mode from a list of supported options. */
@@ -3011,7 +3007,7 @@ cluster OvenMode = 73 {
30113007

30123008
response struct ChangeToModeResponse = 1 {
30133009
enum8 status = 0;
3014-
optional char_string statusText = 1;
3010+
optional char_string<64> statusText = 1;
30153011
}
30163012

30173013
/** This command is used to change device modes.
@@ -3105,10 +3101,6 @@ cluster LaundryWasherMode = 81 {
31053101
kWhites = 16387;
31063102
}
31073103

3108-
bitmap Feature : bitmap32 {
3109-
kOnOff = 0x1;
3110-
}
3111-
31123104
struct ModeTagStruct {
31133105
optional vendor_id mfgCode = 0;
31143106
enum16 value = 1;
@@ -3122,8 +3114,6 @@ cluster LaundryWasherMode = 81 {
31223114

31233115
readonly attribute ModeOptionStruct supportedModes[] = 0;
31243116
readonly attribute int8u currentMode = 1;
3125-
attribute optional nullable int8u startUpMode = 2;
3126-
attribute optional nullable int8u onMode = 3;
31273117
readonly attribute command_id generatedCommandList[] = 65528;
31283118
readonly attribute command_id acceptedCommandList[] = 65529;
31293119
readonly attribute event_id eventList[] = 65530;
@@ -3137,7 +3127,7 @@ cluster LaundryWasherMode = 81 {
31373127

31383128
response struct ChangeToModeResponse = 1 {
31393129
enum8 status = 0;
3140-
optional char_string statusText = 1;
3130+
optional char_string<64> statusText = 1;
31413131
}
31423132

31433133
/** This command is used to change device modes.
@@ -3164,10 +3154,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
31643154
kRapidFreeze = 16385;
31653155
}
31663156

3167-
bitmap Feature : bitmap32 {
3168-
kOnOff = 0x1;
3169-
}
3170-
31713157
struct ModeTagStruct {
31723158
optional vendor_id mfgCode = 0;
31733159
enum16 value = 1;
@@ -3181,8 +3167,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
31813167

31823168
readonly attribute ModeOptionStruct supportedModes[] = 0;
31833169
readonly attribute int8u currentMode = 1;
3184-
attribute optional nullable int8u startUpMode = 2;
3185-
attribute optional nullable int8u onMode = 3;
31863170
readonly attribute command_id generatedCommandList[] = 65528;
31873171
readonly attribute command_id acceptedCommandList[] = 65529;
31883172
readonly attribute event_id eventList[] = 65530;
@@ -3196,7 +3180,7 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
31963180

31973181
response struct ChangeToModeResponse = 1 {
31983182
enum8 status = 0;
3199-
optional char_string statusText = 1;
3183+
optional char_string<64> statusText = 1;
32003184
}
32013185

32023186
/** This command is used to change device modes.
@@ -3441,10 +3425,6 @@ cluster DishwasherMode = 89 {
34413425
kLight = 16386;
34423426
}
34433427

3444-
bitmap Feature : bitmap32 {
3445-
kOnOff = 0x1;
3446-
}
3447-
34483428
struct ModeTagStruct {
34493429
optional vendor_id mfgCode = 0;
34503430
enum16 value = 1;
@@ -3458,8 +3438,6 @@ cluster DishwasherMode = 89 {
34583438

34593439
readonly attribute ModeOptionStruct supportedModes[] = 0;
34603440
readonly attribute int8u currentMode = 1;
3461-
attribute optional nullable int8u startUpMode = 2;
3462-
attribute optional nullable int8u onMode = 3;
34633441
readonly attribute command_id generatedCommandList[] = 65528;
34643442
readonly attribute command_id acceptedCommandList[] = 65529;
34653443
readonly attribute event_id eventList[] = 65530;
@@ -3473,7 +3451,7 @@ cluster DishwasherMode = 89 {
34733451

34743452
response struct ChangeToModeResponse = 1 {
34753453
enum8 status = 0;
3476-
optional char_string statusText = 1;
3454+
optional char_string<64> statusText = 1;
34773455
}
34783456

34793457
/** This command is used to change device modes.
@@ -3691,10 +3669,6 @@ cluster MicrowaveOvenMode = 94 {
36913669
kDefrost = 16385;
36923670
}
36933671

3694-
bitmap Feature : bitmap32 {
3695-
kOnOff = 0x1;
3696-
}
3697-
36983672
struct ModeTagStruct {
36993673
optional vendor_id mfgCode = 0;
37003674
enum16 value = 1;
@@ -8206,10 +8180,8 @@ endpoint 1 {
82068180
ram attribute featureMap default = 0;
82078181
ram attribute clusterRevision default = 1;
82088182

8209-
handle command Pause;
82108183
handle command Stop;
82118184
handle command Start;
8212-
handle command Resume;
82138185
handle command OperationalCommandResponse;
82148186
}
82158187

@@ -8256,8 +8228,6 @@ endpoint 1 {
82568228
server cluster LaundryWasherMode {
82578229
callback attribute supportedModes;
82588230
callback attribute currentMode;
8259-
callback attribute startUpMode;
8260-
callback attribute onMode;
82618231
callback attribute generatedCommandList;
82628232
callback attribute acceptedCommandList;
82638233
callback attribute attributeList;
@@ -8271,8 +8241,6 @@ endpoint 1 {
82718241
server cluster RefrigeratorAndTemperatureControlledCabinetMode {
82728242
callback attribute supportedModes;
82738243
callback attribute currentMode;
8274-
callback attribute startUpMode;
8275-
callback attribute onMode;
82768244
callback attribute generatedCommandList;
82778245
callback attribute acceptedCommandList;
82788246
callback attribute attributeList;
@@ -8348,8 +8316,6 @@ endpoint 1 {
83488316
server cluster DishwasherMode {
83498317
callback attribute supportedModes;
83508318
callback attribute currentMode;
8351-
callback attribute startUpMode;
8352-
callback attribute onMode;
83538319
callback attribute generatedCommandList;
83548320
callback attribute acceptedCommandList;
83558321
callback attribute attributeList;

examples/chef/devices/rootnode_dishwasher_cc105034fe.matter

+1-7
Original file line numberDiff line numberDiff line change
@@ -1447,10 +1447,6 @@ cluster DishwasherMode = 89 {
14471447
kLight = 16386;
14481448
}
14491449

1450-
bitmap Feature : bitmap32 {
1451-
kOnOff = 0x1;
1452-
}
1453-
14541450
struct ModeTagStruct {
14551451
optional vendor_id mfgCode = 0;
14561452
enum16 value = 1;
@@ -1464,8 +1460,6 @@ cluster DishwasherMode = 89 {
14641460

14651461
readonly attribute ModeOptionStruct supportedModes[] = 0;
14661462
readonly attribute int8u currentMode = 1;
1467-
attribute optional nullable int8u startUpMode = 2;
1468-
attribute optional nullable int8u onMode = 3;
14691463
readonly attribute command_id generatedCommandList[] = 65528;
14701464
readonly attribute command_id acceptedCommandList[] = 65529;
14711465
readonly attribute event_id eventList[] = 65530;
@@ -1479,7 +1473,7 @@ cluster DishwasherMode = 89 {
14791473

14801474
response struct ChangeToModeResponse = 1 {
14811475
enum8 status = 0;
1482-
optional char_string statusText = 1;
1476+
optional char_string<64> statusText = 1;
14831477
}
14841478

14851479
/** This command is used to change device modes.

examples/chef/devices/rootnode_laundrywasher_fb10d238c8.matter

+1-7
Original file line numberDiff line numberDiff line change
@@ -1349,10 +1349,6 @@ cluster LaundryWasherMode = 81 {
13491349
kWhites = 16387;
13501350
}
13511351

1352-
bitmap Feature : bitmap32 {
1353-
kOnOff = 0x1;
1354-
}
1355-
13561352
struct ModeTagStruct {
13571353
optional vendor_id mfgCode = 0;
13581354
enum16 value = 1;
@@ -1366,8 +1362,6 @@ cluster LaundryWasherMode = 81 {
13661362

13671363
readonly attribute ModeOptionStruct supportedModes[] = 0;
13681364
readonly attribute int8u currentMode = 1;
1369-
attribute optional nullable int8u startUpMode = 2;
1370-
attribute optional nullable int8u onMode = 3;
13711365
readonly attribute command_id generatedCommandList[] = 65528;
13721366
readonly attribute command_id acceptedCommandList[] = 65529;
13731367
readonly attribute event_id eventList[] = 65530;
@@ -1381,7 +1375,7 @@ cluster LaundryWasherMode = 81 {
13811375

13821376
response struct ChangeToModeResponse = 1 {
13831377
enum8 status = 0;
1384-
optional char_string statusText = 1;
1378+
optional char_string<64> statusText = 1;
13851379
}
13861380

13871381
/** This command is used to change device modes.

examples/chef/devices/rootnode_refrigerator_temperaturecontrolledcabinet_temperaturecontrolledcabinet_ffdb696680.matter

+1-7
Original file line numberDiff line numberDiff line change
@@ -1275,10 +1275,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
12751275
kRapidFreeze = 16385;
12761276
}
12771277

1278-
bitmap Feature : bitmap32 {
1279-
kOnOff = 0x1;
1280-
}
1281-
12821278
struct ModeTagStruct {
12831279
optional vendor_id mfgCode = 0;
12841280
enum16 value = 1;
@@ -1292,8 +1288,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
12921288

12931289
readonly attribute ModeOptionStruct supportedModes[] = 0;
12941290
readonly attribute int8u currentMode = 1;
1295-
attribute optional nullable int8u startUpMode = 2;
1296-
attribute optional nullable int8u onMode = 3;
12971291
readonly attribute command_id generatedCommandList[] = 65528;
12981292
readonly attribute command_id acceptedCommandList[] = 65529;
12991293
readonly attribute event_id eventList[] = 65530;
@@ -1307,7 +1301,7 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
13071301

13081302
response struct ChangeToModeResponse = 1 {
13091303
enum8 status = 0;
1310-
optional char_string statusText = 1;
1304+
optional char_string<64> statusText = 1;
13111305
}
13121306

13131307
/** This command is used to change device modes.

examples/laundry-washer-app/nxp/zap/laundry-washer-app.matter

+1-9
Original file line numberDiff line numberDiff line change
@@ -1789,10 +1789,6 @@ cluster LaundryWasherMode = 81 {
17891789
kWhites = 16387;
17901790
}
17911791

1792-
bitmap Feature : bitmap32 {
1793-
kOnOff = 0x1;
1794-
}
1795-
17961792
struct ModeTagStruct {
17971793
optional vendor_id mfgCode = 0;
17981794
enum16 value = 1;
@@ -1806,8 +1802,6 @@ cluster LaundryWasherMode = 81 {
18061802

18071803
readonly attribute ModeOptionStruct supportedModes[] = 0;
18081804
readonly attribute int8u currentMode = 1;
1809-
attribute optional nullable int8u startUpMode = 2;
1810-
attribute optional nullable int8u onMode = 3;
18111805
readonly attribute command_id generatedCommandList[] = 65528;
18121806
readonly attribute command_id acceptedCommandList[] = 65529;
18131807
readonly attribute event_id eventList[] = 65530;
@@ -1821,7 +1815,7 @@ cluster LaundryWasherMode = 81 {
18211815

18221816
response struct ChangeToModeResponse = 1 {
18231817
enum8 status = 0;
1824-
optional char_string statusText = 1;
1818+
optional char_string<64> statusText = 1;
18251819
}
18261820

18271821
/** This command is used to change device modes.
@@ -2323,8 +2317,6 @@ endpoint 1 {
23232317
server cluster LaundryWasherMode {
23242318
callback attribute supportedModes;
23252319
callback attribute currentMode;
2326-
callback attribute startUpMode;
2327-
callback attribute onMode;
23282320
callback attribute generatedCommandList;
23292321
callback attribute acceptedCommandList;
23302322
callback attribute attributeList;

examples/microwave-oven-app/microwave-oven-common/microwave-oven-app.matter

-4
Original file line numberDiff line numberDiff line change
@@ -1343,10 +1343,6 @@ cluster MicrowaveOvenMode = 94 {
13431343
kDefrost = 16385;
13441344
}
13451345

1346-
bitmap Feature : bitmap32 {
1347-
kOnOff = 0x1;
1348-
}
1349-
13501346
struct ModeTagStruct {
13511347
optional vendor_id mfgCode = 0;
13521348
enum16 value = 1;

examples/refrigerator-app/silabs/data_model/refrigerator-thread-app.matter

+1-7
Original file line numberDiff line numberDiff line change
@@ -1614,10 +1614,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
16141614
kRapidFreeze = 16385;
16151615
}
16161616

1617-
bitmap Feature : bitmap32 {
1618-
kOnOff = 0x1;
1619-
}
1620-
16211617
struct ModeTagStruct {
16221618
optional vendor_id mfgCode = 0;
16231619
enum16 value = 1;
@@ -1631,8 +1627,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
16311627

16321628
readonly attribute ModeOptionStruct supportedModes[] = 0;
16331629
readonly attribute int8u currentMode = 1;
1634-
attribute optional nullable int8u startUpMode = 2;
1635-
attribute optional nullable int8u onMode = 3;
16361630
readonly attribute command_id generatedCommandList[] = 65528;
16371631
readonly attribute command_id acceptedCommandList[] = 65529;
16381632
readonly attribute event_id eventList[] = 65530;
@@ -1646,7 +1640,7 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
16461640

16471641
response struct ChangeToModeResponse = 1 {
16481642
enum8 status = 0;
1649-
optional char_string statusText = 1;
1643+
optional char_string<64> statusText = 1;
16501644
}
16511645

16521646
/** This command is used to change device modes.

examples/refrigerator-app/silabs/data_model/refrigerator-wifi-app.matter

+1-7
Original file line numberDiff line numberDiff line change
@@ -1525,10 +1525,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
15251525
kRapidFreeze = 16385;
15261526
}
15271527

1528-
bitmap Feature : bitmap32 {
1529-
kOnOff = 0x1;
1530-
}
1531-
15321528
struct ModeTagStruct {
15331529
optional vendor_id mfgCode = 0;
15341530
enum16 value = 1;
@@ -1542,8 +1538,6 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
15421538

15431539
readonly attribute ModeOptionStruct supportedModes[] = 0;
15441540
readonly attribute int8u currentMode = 1;
1545-
attribute optional nullable int8u startUpMode = 2;
1546-
attribute optional nullable int8u onMode = 3;
15471541
readonly attribute command_id generatedCommandList[] = 65528;
15481542
readonly attribute command_id acceptedCommandList[] = 65529;
15491543
readonly attribute event_id eventList[] = 65530;
@@ -1557,7 +1551,7 @@ cluster RefrigeratorAndTemperatureControlledCabinetMode = 82 {
15571551

15581552
response struct ChangeToModeResponse = 1 {
15591553
enum8 status = 0;
1560-
optional char_string statusText = 1;
1554+
optional char_string<64> statusText = 1;
15611555
}
15621556

15631557
/** This command is used to change device modes.

0 commit comments

Comments
 (0)