Skip to content
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] [WiFi] Fixing the retry logic for the WiFi Devices #34225

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing the efr32 build
chirag-silabs committed Aug 18, 2024
commit ca91d6dae39ba5912324d69f6bc2a496ece803b1
2 changes: 1 addition & 1 deletion src/platform/silabs/efr32/wifi/wfx_host_events.h
Original file line number Diff line number Diff line change
@@ -150,7 +150,7 @@ typedef struct __attribute__((__packed__)) sl_wfx_mib_req_s
// MAX PASSKEY LENGTH including NULL character
#define WFX_MAX_PASSKEY_LENGTH (64)

#define CONVERT_SEC_TO_MS(TimeInS) (TimeInMS * 1000)
#define CONVERT_SEC_TO_MS(TimeInS) (TimeInS * 1000)

// WLAN MAX retry
#define MAX_JOIN_RETRIES_COUNT 5