Skip to content

Commit

Permalink
correct bitmap
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanzhouyc committed Oct 2, 2024
1 parent 6bbe1d6 commit 3481b6e
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5445,9 +5445,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -7328,5 +7328,3 @@ endpoint 65534 {
handle command ReorderNetwork;
}
}


14 changes: 6 additions & 8 deletions examples/placeholder/linux/apps/app1/config.matter
Original file line number Diff line number Diff line change
Expand Up @@ -7952,9 +7952,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -8105,9 +8105,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -9683,5 +9683,3 @@ endpoint 1 {
handle command SetPendingDatasetRequest;
}
}


14 changes: 6 additions & 8 deletions examples/placeholder/linux/apps/app2/config.matter
Original file line number Diff line number Diff line change
Expand Up @@ -7865,9 +7865,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -8018,9 +8018,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -9557,5 +9557,3 @@ endpoint 1 {
callback attribute clusterRevision default = 5;
}
}


8 changes: 3 additions & 5 deletions examples/tv-app/tv-common/tv-app.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3108,9 +3108,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -4281,5 +4281,3 @@ endpoint 3 {
handle command SetScheduledContentRatingThreshold;
}
}


Original file line number Diff line number Diff line change
Expand Up @@ -2527,9 +2527,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -3238,5 +3238,3 @@ endpoint 1 {
handle command ContentAppMessageResponse;
}
}


Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ limitations under the License.
<cluster code="0x050a"/>
<field name="ContentSearch" mask="0x1"/>
<field name="URLPlayback" mask="0x2"/>
<field name="AdvancedSeek" mask="0x3"/>
<field name="TextTracks" mask="0x4"/>
<field name="AudioTracks" mask="0x5"/>
<field name="AdvancedSeek" mask="0x4"/>
<field name="TextTracks" mask="0x8"/>
<field name="AudioTracks" mask="0x10"/>
</bitmap>

</configurator>
7 changes: 3 additions & 4 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -9020,9 +9020,9 @@ cluster ContentLauncher = 1290 {
bitmap Feature : bitmap32 {
kContentSearch = 0x1;
kURLPlayback = 0x2;
kAdvancedSeek = 0x3;
kTextTracks = 0x4;
kAudioTracks = 0x5;
kAdvancedSeek = 0x4;
kTextTracks = 0x8;
kAudioTracks = 0x10;
}

bitmap SupportedProtocolsBitmap : bitmap32 {
Expand Down Expand Up @@ -10082,4 +10082,3 @@ cluster SampleMei = 4294048800 {
/** Command that takes two uint8 arguments and returns their sum. */
command AddArguments(AddArgumentsRequest): AddArgumentsResponse = 2;
}

7 changes: 3 additions & 4 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.

0 comments on commit 3481b6e

Please sign in to comment.