-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[chip-tv-casting-app] Update the TV casting app in order to share mor… #19575
Merged
andy31415
merged 1 commit into
project-chip:master
from
vivien-apple:TV_CASTING_APP_ShareMoreCode
Jun 15, 2022
Merged
[chip-tv-casting-app] Update the TV casting app in order to share mor… #19575
andy31415
merged 1 commit into
project-chip:master
from
vivien-apple:TV_CASTING_APP_ShareMoreCode
Jun 15, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
woody-apple
approved these changes
Jun 14, 2022
PR #19575: Size comparison from 4b6fc80 to 152d53f Increases (2 builds for cc13x2_26x2, nrfconnect)
Full report (30 builds for cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
152d53f
to
aeeb87b
Compare
PR #19575: Size comparison from 4b6fc80 to aeeb87b Increases (2 builds for cc13x2_26x2, nrfconnect)
Decreases (2 builds for nrfconnect, telink)
Full report (30 builds for cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, p6, telink)
|
bzbarsky-apple
approved these changes
Jun 15, 2022
aeeb87b
to
98b2706
Compare
PR #19575: Size comparison from 663ecf4 to 98b2706 Increases (1 build for telink)
Full report (8 builds for cyw30739, mbed, nrfconnect, telink)
|
98b2706
to
d7265b8
Compare
d7265b8
to
4b72350
Compare
PR #19575: Size comparison from 663ecf4 to 4b72350 Decreases (1 build for telink)
Full report (10 builds for cyw30739, linux, mbed, nrfconnect, telink)
|
4b72350
to
a7444df
Compare
PR #19575: Size comparison from 09f3e4a to a7444df Increases (4 builds for cc13x2_26x2, cyw30739, telink)
Decreases (2 builds for cc13x2_26x2, cyw30739)
Full report (23 builds for cc13x2_26x2, cyw30739, k32w, linux, mbed, nrfconnect, p6, telink)
|
a7444df
to
7be94f1
Compare
…e code with chip-tool when it comes to commands parsing
7be94f1
to
dea9d93
Compare
PR #19575: Size comparison from 09f3e4a to dea9d93 Increases (1 build for cc13x2_26x2)
Decreases (2 builds for cc13x2_26x2, telink)
Full report (28 builds for cc13x2_26x2, cyw30739, efr32, k32w, linux, mbed, nrfconnect, p6, telink)
|
andy31415
approved these changes
Jun 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…e code with chip-tool when it comes to commands parsing
Problem
The
tv-casting-app
depends onzzz_generated/chip-tool/zap-generated/Commands.h
. That is not bad by itself, but there is the code that understand this file has been duplicated inexamples/tv-casting-app/tv-casting-common/commands/
which makes it painful trying to upgrade some of the "Commands.h" generated content in #19566 as it imply having to duplicate some code...I really want to not have to duplicate "Command.h/cpp" and all the code that handles interactions.
Change overview
tv-casting-app
to reuse the code that handle arguments fromchip-tool
tv-casting-app
to reuse the code that handle the interaction model interactionsTesting
I have tried by following the steps describe in
examples/tv-casting-app/linux/README.md
in order to ensure that commands handling still works.