-
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
[Silabs]- Adds fix for LastConnectErrorValue have null after device reset #26448
[Silabs]- Adds fix for LastConnectErrorValue have null after device reset #26448
Conversation
LeelakumarPS
commented
May 9, 2023
- Adds fix for LastConnectErrorValue have null after device reset
- Tested manually
de095e3
to
fc2e126
Compare
PR #26448: Size comparison from 38466c2 to c1e25cd Full report (1 build for cc32xx)
|
c1e25cd
to
2c671f6
Compare
@LeelakumarPS could you expand the summary to explain what the issue was and what the fix is? Looking at the delta I see this changed As a reviewer I lack some context here. |
PR #26448: Size comparison from 7e69af7 to 2c671f6 Increases (4 builds for bl602, cyw30739, psoc6)
Decreases (4 builds for bl602, bl702, cc32xx, psoc6)
Full report (25 builds for bl602, bl702, cc13x2_26x2, cc32xx, cyw30739, k32w, linux, psoc6)
|
@@ -179,12 +179,10 @@ void SlWiFiDriver::UpdateNetworkingStatus() | |||
ByteSpan networkId = ByteSpan((const unsigned char *) mStagingNetwork.ssid, mStagingNetwork.ssidLen); | |||
if (!wfx_is_sta_connected()) | |||
{ | |||
mpStatusChangeCallback->OnNetworkingStatusChange(Status::kUnknownError, MakeOptional(networkId), | |||
MakeOptional((int32_t) SL_STATUS_FAIL)); | |||
mpStatusChangeCallback->OnNetworkingStatusChange(Status::kUnknownError, MakeOptional(networkId), NullOptional); |
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.
This should be reverted.