-
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
Added documentation regarding requesting SED poll interval update. #11521
Added documentation regarding requesting SED poll interval update. #11521
Conversation
In the project-chip#11314 PR there were some post-merge comments regarding missing documentation. * Added missing documentation for the RequestSEDFastPollingMode and SetSEDPollingConfig methods. * Added setting new mode only if it's different than the current one.
PR #11521: Size comparison from 3f82de1 to 0bc40c6 Increases (1 build for k32w)
Full report (38 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, 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.
Change in _RequestSEDFastPollingMode breaks _SetSEDPollingConfig.
We can only have one such write-only-if-necessary guard and that needs to be in SetSEDPollingMode where it currently lives with the check of the actual interval:
if (interval != curPollingIntervalMS)
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.
Thank you!
Fast tracking given this is documentation, plus a simple code refactor. |
…roject-chip#11521) In the project-chip#11314 PR there were some post-merge comments regarding missing documentation. * Added missing documentation for the RequestSEDFastPollingMode and SetSEDPollingConfig methods. * Added setting new mode only if it's different than the current one.
Problem
In the #11314 PR there were some post-merge comments regarding missing documentation.
Change overview
RequestSEDFastPollingMode
andSetSEDPollingConfig
methods.Testing
No special testing seems to be required, as it's a pretty small change with no functional changes done.