-
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
[controller] fix issues in #30260 #30864
Conversation
PR #30864: Size comparison from 6907eaa to b9e801d Increases (3 builds for linux)
Decreases (3 builds for efr32, linux)
Full report (72 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
PR #30864: Size comparison from 6907eaa to 9528dac Increases above 0.2%:
Increases (49 builds for bl602, bl702, bl702l, cc13x4_26x4, cyw30739, efr32, esp32, k32w, linux, nrfconnect, psoc6, telink)
Decreases (19 builds for bl602, bl702, bl702l, cc13x4_26x4, efr32, esp32, linux, nrfconnect)
Full report (72 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
auto pairingDelegate = commissioner->GetPairingDelegate(); | ||
auto deviceBeingCommissioned = commissioner->mDeviceBeingCommissioned; | ||
if (pairingDelegate != nullptr && deviceBeingCommissioned != nullptr) | ||
if (commissioner->mCommissioningStage != CommissioningStage::kICDRegistration) |
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.
Suggestion if this is touched later
VerifyOrReturn(commissioner->mCommissioningStage == CommissioningStage::kICDRegistration);
} | ||
else | ||
|
||
if (commissioner->mDeviceBeingCommissioned == nullptr) |
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.
Suggestion if this is touched later
VerifyOrReturn(commissioner->mDeviceBeingCommissioned != nullptr);
No description provided.