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 19, 2023
1 parent b43bf3f commit 6ccbf1f
Show file tree
Hide file tree
Showing 35 changed files with 309 additions and 277 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2626,7 +2626,7 @@ server cluster MediaPlayback = 1286 {

command Play(): PlaybackResponse = 0;
command Pause(): PlaybackResponse = 1;
command StopPlayback(): PlaybackResponse = 2;
command Stop(): PlaybackResponse = 2;
}

server cluster MediaInput = 1287 {
Expand Down
8 changes: 4 additions & 4 deletions examples/tv-app/tv-common/tv-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1676,15 +1676,15 @@ server cluster MediaPlayback = 1286 {
kVariableSpeed = 0x2;
}

struct PlaybackPosition {
int64u updatedAt = 0;
struct PlaybackPositionStruct {
epoch_us updatedAt = 0;
nullable int64u position = 1;
}

readonly attribute PlaybackStateEnum currentState = 0;
readonly attribute nullable epoch_us startTime = 1;
readonly attribute nullable int64u duration = 2;
readonly attribute nullable PlaybackPosition sampledPosition = 3;
readonly attribute nullable PlaybackPositionStruct sampledPosition = 3;
readonly attribute single playbackSpeed = 4;
readonly attribute nullable int64u seekRangeEnd = 5;
readonly attribute nullable int64u seekRangeStart = 6;
Expand Down Expand Up @@ -1713,7 +1713,7 @@ server cluster MediaPlayback = 1286 {

command Play(): PlaybackResponse = 0;
command Pause(): PlaybackResponse = 1;
command StopPlayback(): PlaybackResponse = 2;
command Stop(): PlaybackResponse = 2;
command StartOver(): PlaybackResponse = 3;
command Previous(): PlaybackResponse = 4;
command Next(): PlaybackResponse = 5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ client cluster MediaPlayback = 1286 {

command Play(): PlaybackResponse = 0;
command Pause(): PlaybackResponse = 1;
command StopPlayback(): PlaybackResponse = 2;
command Stop(): PlaybackResponse = 2;
command StartOver(): PlaybackResponse = 3;
command Previous(): PlaybackResponse = 4;
command Next(): PlaybackResponse = 5;
Expand Down
8 changes: 4 additions & 4 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3628,15 +3628,15 @@ client cluster MediaPlayback = 1286 {
kVariableSpeed = 0x2;
}

struct PlaybackPosition {
int64u updatedAt = 0;
struct PlaybackPositionStruct {
epoch_us updatedAt = 0;
nullable int64u position = 1;
}

readonly attribute PlaybackStateEnum currentState = 0;
readonly attribute nullable epoch_us startTime = 1;
readonly attribute nullable int64u duration = 2;
readonly attribute nullable PlaybackPosition sampledPosition = 3;
readonly attribute nullable PlaybackPositionStruct sampledPosition = 3;
readonly attribute single playbackSpeed = 4;
readonly attribute nullable int64u seekRangeEnd = 5;
readonly attribute nullable int64u seekRangeStart = 6;
Expand Down Expand Up @@ -3665,7 +3665,7 @@ client cluster MediaPlayback = 1286 {

command Play(): PlaybackResponse = 0;
command Pause(): PlaybackResponse = 1;
command StopPlayback(): PlaybackResponse = 2;
command Stop(): PlaybackResponse = 2;
command StartOver(): PlaybackResponse = 3;
command Previous(): PlaybackResponse = 4;
command Next(): PlaybackResponse = 5;
Expand Down
19 changes: 10 additions & 9 deletions src/controller/java/zap-generated/CHIPAttributeTLVValueDecoder.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions src/controller/java/zap-generated/CHIPInvokeCallbacks.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/controller/python/chip/clusters/CHIPClusters.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src/controller/python/chip/clusters/Objects.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6ccbf1f

Please sign in to comment.