Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove provisionality for oven op-state and oven mode clusters #33550

Merged
merged 3 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2609,7 +2609,7 @@ cluster BooleanState = 69 {
}

/** This cluster supports remotely monitoring and, where supported, changing the operational state of an Oven. */
provisional cluster OvenCavityOperationalState = 72 {
cluster OvenCavityOperationalState = 72 {
revision 1;

enum ErrorStateEnum : enum8 {
Expand Down Expand Up @@ -2675,7 +2675,7 @@ provisional cluster OvenCavityOperationalState = 72 {
}

/** Attributes and commands for selecting a mode from a list of supported options. */
provisional cluster OvenMode = 73 {
cluster OvenMode = 73 {
revision 1;

enum ModeTag : enum16 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
-->
<configurator>
<domain name="CHIP"/>
<cluster apiMaturity="provisional">
<cluster>
<domain>Appliances</domain>
<name>Oven Cavity Operational State</name>
<code>0x0048</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ limitations under the License.
<item value="0x4008" name="Proofing"/>
</enum>

<cluster apiMaturity="provisional">
<cluster>
<domain>General</domain>
<name>Oven Mode</name>
<code>0x0049</code>
Expand Down
4 changes: 2 additions & 2 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -2804,7 +2804,7 @@ provisional cluster Timer = 71 {
}

/** This cluster supports remotely monitoring and, where supported, changing the operational state of an Oven. */
provisional cluster OvenCavityOperationalState = 72 {
cluster OvenCavityOperationalState = 72 {
revision 1;

enum ErrorStateEnum : enum8 {
Expand Down Expand Up @@ -2870,7 +2870,7 @@ provisional cluster OvenCavityOperationalState = 72 {
}

/** Attributes and commands for selecting a mode from a list of supported options. */
provisional cluster OvenMode = 73 {
cluster OvenMode = 73 {
revision 1;

enum ModeTag : enum16 {
Expand Down
Loading