-
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-tool] Add DataModelLogger::LogJson command and makes it goes ov… #24387
[chip-tool] Add DataModelLogger::LogJson command and makes it goes ov… #24387
Conversation
8d2d905
to
5dab8a1
Compare
PR #24387: Size comparison from 3670731 to 5dab8a1 Increases (11 builds for bl602, bl702, cc13x2_26x2, psoc6, telink)
Decreases (10 builds for bl702, cc13x2_26x2, esp32, qpg, telink)
Full report (41 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, mbed, nrfconnect, psoc6, qpg, telink)
|
5dab8a1
to
f8f20c2
Compare
PR #24387: Size comparison from 2a55f23 to f8f20c2 Increases above 0.2%:
Increases (12 builds for bl702, cc13x2_26x2, esp32, linux, psoc6, qpg, telink)
Decreases (5 builds for bl702, cc13x2_26x2, telink)
Full report (54 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
examples/chip-tool/commands/interactive/InteractiveCommands.cpp
Outdated
Show resolved
Hide resolved
e19335f
to
58ee4da
Compare
PR #24387: Size comparison from 9fbcf1c to 58ee4da Increases above 0.2%:
Increases (6 builds for bl602, linux, telink)
Decreases (6 builds for bl602, esp32, nrfconnect, psoc6, telink)
Full report (54 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
58ee4da
to
8bf626f
Compare
PR #24387: Size comparison from 9fbcf1c to 8bf626f Increases above 0.2%:
Increases (13 builds for bl602, bl702, cc13x2_26x2, linux, psoc6, telink)
Decreases (9 builds for bl602, cc13x2_26x2, esp32, k32w, nrfconnect, psoc6, telink)
Full report (54 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
8bf626f
to
5b27241
Compare
PR #24387: Size comparison from 59ab3ad to 5b27241 Increases above 0.2%:
Increases (11 builds for cc13x2_26x2, cyw30739, esp32, linux, psoc6, qpg, telink)
Decreases (6 builds for bl602, cc13x2_26x2, esp32, psoc6, telink)
Full report (54 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
5b27241
to
4c1188f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added an advance checkmark.
Offline chat with @vivien-apple that some (or all) of the comments may be addressed as followup - please create issues if that is the case and close the comment.
…er websockets in interactive server mode
4c1188f
to
eb5a48b
Compare
PR #24387: Size comparison from fc4281c to eb5a48b Increases above 0.2%:
Increases (9 builds for bl702, cc13x2_26x2, esp32, linux, telink)
Decreases (10 builds for bl702, cc13x2_26x2, esp32, psoc6, telink)
Full report (54 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
…er websockets in interactive server mode (project-chip#24387)
…er websockets in interactive server mode
Problem
This PR sends some data back from
chip-tool
to a web socket client.It both sends the command results as well as any logs dumped by the stack using the
ChipLog*
helpers.I expect the
DataModelLogger::Log*
changes to be temporary and changed in a different way in the future. The fundamental reason why I would like to changed that is because this not going to work withdarwin-framework-tool
as if and I will have to duplicates some code. But in the meantime, it allows moving forward the python runner...