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 af57aac
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 36 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
12 changes: 6 additions & 6 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
12 changes: 6 additions & 6 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
6 changes: 3 additions & 3 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
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
Empty file modified scripts/setup/bootstrap.sh
100644 → 100755
Empty file.
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>
6 changes: 3 additions & 3 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
6 changes: 3 additions & 3 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.

6 changes: 3 additions & 3 deletions src/darwin/Framework/CHIP/zap-generated/MTRBaseClusters.h

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 af57aac

Please sign in to comment.