We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 736240f commit 8e88e99Copy full SHA for 8e88e99
examples/platform/silabs/SiWx917/SiWx917/sl_wifi_if.cpp
@@ -692,16 +692,11 @@ static sl_status_t wfx_rsi_do_join(void)
692
693
// failure only happens when the firmware returns an error
694
ChipLogError(DeviceLayer, "wfx_rsi_do_join: sl_wifi_connect failed: 0x%lx", static_cast<uint32_t>(status));
695
- VerifyOrReturnError((wfx_rsi.join_retries <= MAX_JOIN_RETRIES_COUNT), status);
696
697
wfx_rsi.dev_state &= ~(WFX_RSI_ST_STA_CONNECTING | WFX_RSI_ST_STA_CONNECTED);
698
ChipLogProgress(DeviceLayer, "wfx_rsi_do_join: retry attempt %d", wfx_rsi.join_retries);
699
wfx_retry_connection(++wfx_rsi.join_retries);
700
701
- WfxEvent_t event;
702
- event.eventType = WFX_EVT_STA_START_JOIN;
703
- WfxPostEvent(&event);
704
-
705
return status;
706
}
707
0 commit comments