-
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
[ICD] Add ICD CheckInSender class #30385
[ICD] Add ICD CheckInSender class #30385
Conversation
13c2d69
to
ed4d436
Compare
PR #30385: Size comparison from f50e12b to 789e304 Increases (1 build for qpg)
Decreases (11 builds for telink)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #30385: Size comparison from f50e12b to 31086dc Increases above 0.2%:
Increases (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, nrfconnect, psoc6, qpg, telink)
Decreases (5 builds for cc32xx, linux, mbed)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
31086dc
to
3cb83ee
Compare
PR #30385: Size comparison from baa1d7a to 3cb83ee Increases (1 build for qpg)
Decreases (11 builds for telink)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #30385: Size comparison from baa1d7a to 31249a8 Increases above 0.2%:
Increases (65 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, nrfconnect, psoc6, qpg, telink)
Decreases (22 builds for cc13x4_26x4, cc32xx, cyw30739, efr32, linux, mbed, psoc6, qpg, telink)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #30385: Size comparison from baa1d7a to 02be3b3 Increases above 0.2%:
Increases (65 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, nrfconnect, psoc6, qpg, telink)
Decreases (22 builds for cc13x4_26x4, cc32xx, cyw30739, efr32, linux, mbed, psoc6, qpg, telink)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
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.
Approving so this is not blocked on me, but storing the whole entry in the sender seems wrong.
02be3b3
to
bc16fb0
Compare
bc16fb0
to
2c45f09
Compare
PR #30385: Size comparison from 26ec08f to 2c45f09 Increases (1 build for qpg)
Decreases (11 builds for telink)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
@@ -109,7 +109,8 @@ static_library("Linux") { | |||
"${chip_root}/third_party/inipp", | |||
] | |||
|
|||
public_configs = [] | |||
public_configs = | |||
[ "${chip_root}/src/lib/address_resolve:default_address_resolve_config" ] |
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.
why? this was not needed before. Something went wrong here.
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.
may be related to #30527
Break-out PR for the ICD Check-In message feature.
This class was tested along with the complete changes manually with an All-cluster-app -icd build, Chip-tool and Wireshark to monitored the sending of the Check-in Message on the network.
Standard behavior is :
Since DNS resolution, and exchangeCtx message sending are already covered by other Unit tests, no Unit test were added for this class. Instead integration tests will be added once the feature is completed (ICD Check-In sending AND Receiving)