Skip to content

Commit

Permalink
Regenerate generated code.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple committed Jan 18, 2024
1 parent f36bef1 commit ed019da
Show file tree
Hide file tree
Showing 14 changed files with 640 additions and 646 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2990,20 +2990,20 @@ cluster TemperatureControl = 86 {
cluster RefrigeratorAlarm = 87 {
revision 1; // NOTE: Default/not specifically set

bitmap AlarmMap : bitmap32 {
bitmap AlarmBitmap : bitmap32 {
kDoorOpen = 0x1;
}

info event Notify = 0 {
AlarmMap active = 0;
AlarmMap inactive = 1;
AlarmMap state = 2;
AlarmMap mask = 3;
AlarmBitmap active = 0;
AlarmBitmap inactive = 1;
AlarmBitmap state = 2;
AlarmBitmap mask = 3;
}

readonly attribute AlarmMap mask = 0;
readonly attribute AlarmMap state = 2;
readonly attribute AlarmMap supported = 3;
readonly attribute AlarmBitmap mask = 0;
readonly attribute AlarmBitmap state = 2;
readonly attribute AlarmBitmap supported = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down Expand Up @@ -3208,7 +3208,7 @@ cluster SmokeCoAlarm = 92 {
cluster DishwasherAlarm = 93 {
revision 1; // NOTE: Default/not specifically set

bitmap AlarmMap : bitmap32 {
bitmap AlarmBitmap : bitmap32 {
kInflowError = 0x1;
kDrainError = 0x2;
kDoorError = 0x4;
Expand All @@ -3222,16 +3222,16 @@ cluster DishwasherAlarm = 93 {
}

info event Notify = 0 {
AlarmMap active = 0;
AlarmMap inactive = 1;
AlarmMap state = 2;
AlarmMap mask = 3;
AlarmBitmap active = 0;
AlarmBitmap inactive = 1;
AlarmBitmap state = 2;
AlarmBitmap mask = 3;
}

readonly attribute AlarmMap mask = 0;
readonly attribute optional AlarmMap latch = 1;
readonly attribute AlarmMap state = 2;
readonly attribute AlarmMap supported = 3;
readonly attribute AlarmBitmap mask = 0;
readonly attribute optional AlarmBitmap latch = 1;
readonly attribute AlarmBitmap state = 2;
readonly attribute AlarmBitmap supported = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand All @@ -3240,11 +3240,11 @@ cluster DishwasherAlarm = 93 {
readonly attribute int16u clusterRevision = 65533;

request struct ResetRequest {
AlarmMap alarms = 0;
AlarmBitmap alarms = 0;
}

request struct ModifyEnabledAlarmsRequest {
AlarmMap mask = 0;
AlarmBitmap mask = 0;
}

/** Reset alarm */
Expand Down Expand Up @@ -8103,13 +8103,6 @@ endpoint 1 {
ram attribute clusterRevision default = 6;

handle command SetpointRaiseLower;
handle command SetActiveScheduleRequest;
handle command SetActivePresetRequest;
handle command StartPresetsSchedulesEditRequest;
handle command CancelPresetsSchedulesEditRequest;
handle command CommitPresetsSchedulesRequest;
handle command CancelSetActivePresetRequest;
handle command SetTemperatureSetpointHoldPolicy;
}

server cluster FanControl {
Expand Down
2 changes: 0 additions & 2 deletions examples/light-switch-app/qpg/zap/switch.matter
Original file line number Diff line number Diff line change
Expand Up @@ -2105,7 +2105,6 @@ endpoint 0 {

handle command ScanNetworks;
handle command ScanNetworksResponse;
handle command AddOrUpdateWiFiNetwork;
handle command AddOrUpdateThreadNetwork;
handle command RemoveNetwork;
handle command NetworkConfigResponse;
Expand Down Expand Up @@ -2138,7 +2137,6 @@ endpoint 0 {

handle command TestEventTrigger;
handle command TimeSnapshot;
handle command TimeSnapshotResponse;
}

server cluster SoftwareDiagnostics {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2016,7 +2016,6 @@ endpoint 0 {

handle command ScanNetworks;
handle command ScanNetworksResponse;
handle command AddOrUpdateWiFiNetwork;
handle command AddOrUpdateThreadNetwork;
handle command RemoveNetwork;
handle command NetworkConfigResponse;
Expand Down
38 changes: 19 additions & 19 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3247,20 +3247,20 @@ cluster TemperatureControl = 86 {
cluster RefrigeratorAlarm = 87 {
revision 1; // NOTE: Default/not specifically set

bitmap AlarmMap : bitmap32 {
bitmap AlarmBitmap : bitmap32 {
kDoorOpen = 0x1;
}

info event Notify = 0 {
AlarmMap active = 0;
AlarmMap inactive = 1;
AlarmMap state = 2;
AlarmMap mask = 3;
AlarmBitmap active = 0;
AlarmBitmap inactive = 1;
AlarmBitmap state = 2;
AlarmBitmap mask = 3;
}

readonly attribute AlarmMap mask = 0;
readonly attribute AlarmMap state = 2;
readonly attribute AlarmMap supported = 3;
readonly attribute AlarmBitmap mask = 0;
readonly attribute AlarmBitmap state = 2;
readonly attribute AlarmBitmap supported = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down Expand Up @@ -3465,7 +3465,7 @@ cluster SmokeCoAlarm = 92 {
cluster DishwasherAlarm = 93 {
revision 1; // NOTE: Default/not specifically set

bitmap AlarmMap : bitmap32 {
bitmap AlarmBitmap : bitmap32 {
kInflowError = 0x1;
kDrainError = 0x2;
kDoorError = 0x4;
Expand All @@ -3479,16 +3479,16 @@ cluster DishwasherAlarm = 93 {
}

info event Notify = 0 {
AlarmMap active = 0;
AlarmMap inactive = 1;
AlarmMap state = 2;
AlarmMap mask = 3;
AlarmBitmap active = 0;
AlarmBitmap inactive = 1;
AlarmBitmap state = 2;
AlarmBitmap mask = 3;
}

readonly attribute AlarmMap mask = 0;
readonly attribute optional AlarmMap latch = 1;
readonly attribute AlarmMap state = 2;
readonly attribute AlarmMap supported = 3;
readonly attribute AlarmBitmap mask = 0;
readonly attribute optional AlarmBitmap latch = 1;
readonly attribute AlarmBitmap state = 2;
readonly attribute AlarmBitmap supported = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand All @@ -3497,11 +3497,11 @@ cluster DishwasherAlarm = 93 {
readonly attribute int16u clusterRevision = 65533;

request struct ResetRequest {
AlarmMap alarms = 0;
AlarmBitmap alarms = 0;
}

request struct ModifyEnabledAlarmsRequest {
AlarmMap mask = 0;
AlarmBitmap mask = 0;
}

/** Reset alarm */
Expand Down
Loading

0 comments on commit ed019da

Please sign in to comment.