|
@@ -44,10 +44,11 @@
|
|
|
#define CSR_ACTIVE_SCAN_LIST_CMD_TIMEOUT (1000*30)
|
|
|
#endif
|
|
|
/* ***************************************************************************
|
|
|
- * The MAX BSSID Count should be lower than the command timeout value and it
|
|
|
- * can be of a fraction of 1/3 to 1/2 of the total command timeout value.
|
|
|
+ * The MAX BSSID Count should be lower than the command timeout value.
|
|
|
+ * As in some case auth timeout can take upto 5 sec (in case of SAE auth) try
|
|
|
+ * (command timeout/5000 - 1) candidates.
|
|
|
* ***************************************************************************/
|
|
|
-#define CSR_MAX_BSSID_COUNT (SME_ACTIVE_LIST_CMD_TIMEOUT_VALUE/3000) - 2
|
|
|
+#define CSR_MAX_BSSID_COUNT (SME_ACTIVE_LIST_CMD_TIMEOUT_VALUE/5000) - 1
|
|
|
#define CSR_CUSTOM_CONC_GO_BI 100
|
|
|
extern uint8_t csr_wpa_oui[][CSR_WPA_OUI_SIZE];
|
|
|
bool csr_is_supported_channel(struct mac_context *mac, uint8_t channelId);
|