Skip to content

Commit 194d918

Browse files
authored
Removed provisional from MWO mode and control clusters (#33548)
* Removed provisional from MWO * Commit after regen * Commit after regen * Make some attributes provisional
1 parent f3f3ba6 commit 194d918

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3334,7 +3334,7 @@ cluster DishwasherAlarm = 93 {
33343334
}
33353335

33363336
/** Attributes and commands for selecting a mode from a list of supported options. */
3337-
provisional cluster MicrowaveOvenMode = 94 {
3337+
cluster MicrowaveOvenMode = 94 {
33383338
revision 1;
33393339

33403340
enum ModeTag : enum16 {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ cluster GroupKeyManagement = 63 {
10121012
}
10131013

10141014
/** Attributes and commands for selecting a mode from a list of supported options. */
1015-
provisional cluster MicrowaveOvenMode = 94 {
1015+
cluster MicrowaveOvenMode = 94 {
10161016
revision 1;
10171017

10181018
enum ModeTag : enum16 {
@@ -1046,7 +1046,7 @@ provisional cluster MicrowaveOvenMode = 94 {
10461046
}
10471047

10481048
/** Attributes and commands for configuring the microwave oven control, and reporting cooking stats. */
1049-
provisional cluster MicrowaveOvenControl = 95 {
1049+
cluster MicrowaveOvenControl = 95 {
10501050
revision 1; // NOTE: Default/not specifically set
10511051

10521052
bitmap Feature : bitmap32 {

src/app/zap-templates/zcl/data-model/chip/microwave-oven-control-cluster.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
<domain name="CHIP"/>
1919

2020

21-
<cluster apiMaturity="provisional">
21+
<cluster>
2222
<name>Microwave Oven Control</name>
2323
<domain>Appliances</domain>
2424
<description>Attributes and commands for configuring the microwave oven control, and reporting cooking stats.</description>
@@ -47,8 +47,8 @@ limitations under the License.
4747
<attribute side="server" code="0x0003" define="MIN_POWER" type="int8u" default="10" writable="false" optional="true">MinPower</attribute>
4848
<attribute side="server" code="0x0004" define="MAX_POWER" type="int8u" default="100" writable="false" optional="true">MaxPower</attribute>
4949
<attribute side="server" code="0x0005" define="POWER_STEP" type="int8u" default="10" writable="false" optional="true">PowerStep</attribute>
50-
<attribute side="server" code="0x0006" define="SUPPORTED_WATTS" type="array" entryType="int16u" writable="false" optional="true">SupportedWatts</attribute>
51-
<attribute side="server" code="0x0007" define="SELECTED_WATT_INDEX" type="int8u" writable="false" optional="true">SelectedWattIndex</attribute>
50+
<attribute apiMaturity="provisional" side="server" code="0x0006" define="SUPPORTED_WATTS" type="array" entryType="int16u" writable="false" optional="true">SupportedWatts</attribute>
51+
<attribute apiMaturity="provisional" side="server" code="0x0007" define="SELECTED_WATT_INDEX" type="int8u" writable="false" optional="true">SelectedWattIndex</attribute>
5252
<attribute side="server" code="0x0008" define="WATT_RATING" type="int16u" writable="false" optional="true">WattRating</attribute>
5353

5454
<command source="client" code="0x00" name="SetCookingParameters" optional="false">

src/app/zap-templates/zcl/data-model/chip/microwave-oven-mode-cluster.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ limitations under the License.
2323
<item value="0x4001" name="Defrost"/>
2424
</enum>
2525

26-
<cluster apiMaturity="provisional">
26+
<cluster>
2727
<domain>General</domain>
2828
<name>Microwave Oven Mode</name>
2929
<code>0x005E</code>

src/controller/data_model/controller-clusters.matter

+2-2
Original file line numberDiff line numberDiff line change
@@ -3526,7 +3526,7 @@ cluster DishwasherAlarm = 93 {
35263526
}
35273527

35283528
/** Attributes and commands for selecting a mode from a list of supported options. */
3529-
provisional cluster MicrowaveOvenMode = 94 {
3529+
cluster MicrowaveOvenMode = 94 {
35303530
revision 1;
35313531

35323532
enum ModeTag : enum16 {
@@ -3560,7 +3560,7 @@ provisional cluster MicrowaveOvenMode = 94 {
35603560
}
35613561

35623562
/** Attributes and commands for configuring the microwave oven control, and reporting cooking stats. */
3563-
provisional cluster MicrowaveOvenControl = 95 {
3563+
cluster MicrowaveOvenControl = 95 {
35643564
revision 1; // NOTE: Default/not specifically set
35653565

35663566
bitmap Feature : bitmap32 {

0 commit comments

Comments
 (0)