mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-07-01 12:20:51 +02:00
* Move self_test check and Wi-Fi state into their modules Also removed main.h and superfluous GlobalState inits. * Fix compile error * EOL * Fix compile error
476 lines
18 KiB
C
476 lines
18 KiB
C
#include <string.h>
|
|
#include "esp_event.h"
|
|
#include "esp_log.h"
|
|
#include "esp_system.h"
|
|
#include "esp_wifi.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/event_groups.h"
|
|
#include "freertos/task.h"
|
|
#include "lwip/err.h"
|
|
#include "lwip/lwip_napt.h"
|
|
#include "lwip/sys.h"
|
|
#include "nvs_flash.h"
|
|
#include "esp_wifi_types_generic.h"
|
|
|
|
#include "connect.h"
|
|
#include "global_state.h"
|
|
#include "nvs_config.h"
|
|
|
|
// Maximum number of access points to scan
|
|
#define MAX_AP_COUNT 20
|
|
|
|
#if CONFIG_ESP_WPA3_SAE_PWE_HUNT_AND_PECK
|
|
#define ESP_WIFI_SAE_MODE WPA3_SAE_PWE_HUNT_AND_PECK
|
|
#define EXAMPLE_H2E_IDENTIFIER ""
|
|
|
|
#elif CONFIG_ESP_WPA3_SAE_PWE_HASH_TO_ELEMENT
|
|
#define ESP_WIFI_SAE_MODE WPA3_SAE_PWE_HASH_TO_ELEMENT
|
|
#define EXAMPLE_H2E_IDENTIFIER CONFIG_ESP_WIFI_PW_ID
|
|
|
|
#elif CONFIG_ESP_WPA3_SAE_PWE_BOTH
|
|
#define ESP_WIFI_SAE_MODE WPA3_SAE_PWE_BOTH
|
|
#define EXAMPLE_H2E_IDENTIFIER CONFIG_ESP_WIFI_PW_ID
|
|
#endif
|
|
|
|
#if CONFIG_ESP_WIFI_AUTH_OPEN
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_OPEN
|
|
#elif CONFIG_ESP_WIFI_AUTH_WEP
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WEP
|
|
#elif CONFIG_ESP_WIFI_AUTH_WPA_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA_PSK
|
|
#elif CONFIG_ESP_WIFI_AUTH_WPA2_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA2_PSK
|
|
#elif CONFIG_ESP_WIFI_AUTH_WPA_WPA2_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA_WPA2_PSK
|
|
#elif CONFIG_ESP_WIFI_AUTH_WPA3_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA3_PSK
|
|
#elif CONFIG_ESP_WIFI_AUTH_WPA2_WPA3_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WPA2_WPA3_PSK
|
|
#elif CONFIG_ESP_WIFI_AUTH_WAPI_PSK
|
|
#define ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD WIFI_AUTH_WAPI_PSK
|
|
#endif
|
|
|
|
static const char * TAG = "connect";
|
|
|
|
static bool is_scanning = false;
|
|
static uint16_t ap_number = 0;
|
|
static wifi_ap_record_t ap_info[MAX_AP_COUNT];
|
|
static int s_retry_num = 0;
|
|
static int clients_connected_to_ap = 0;
|
|
|
|
static const char *get_wifi_reason_string(int reason);
|
|
static void wifi_softap_on(void);
|
|
static void wifi_softap_off(void);
|
|
|
|
esp_err_t get_wifi_current_rssi(int8_t *rssi)
|
|
{
|
|
wifi_ap_record_t current_ap_info;
|
|
esp_err_t err = esp_wifi_sta_get_ap_info(¤t_ap_info);
|
|
|
|
if (err == ESP_OK) {
|
|
*rssi = current_ap_info.rssi;
|
|
return ERR_OK;
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
// Function to scan for available WiFi networks
|
|
esp_err_t wifi_scan(wifi_ap_record_simple_t *ap_records, uint16_t *ap_count)
|
|
{
|
|
if (is_scanning) {
|
|
ESP_LOGW(TAG, "Scan already in progress");
|
|
return ESP_ERR_INVALID_STATE;
|
|
}
|
|
|
|
ESP_LOGI(TAG, "Starting Wi-Fi scan!");
|
|
is_scanning = true;
|
|
|
|
wifi_ap_record_t current_ap_info;
|
|
if (esp_wifi_sta_get_ap_info(¤t_ap_info) != ESP_OK) {
|
|
ESP_LOGI(TAG, "Forcing disconnect so that we can scan!");
|
|
esp_wifi_disconnect();
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
}
|
|
|
|
wifi_scan_config_t scan_config = {
|
|
.ssid = 0,
|
|
.bssid = 0,
|
|
.channel = 0,
|
|
.show_hidden = false
|
|
};
|
|
|
|
esp_err_t err = esp_wifi_scan_start(&scan_config, false);
|
|
if (err != ESP_OK) {
|
|
ESP_LOGE(TAG, "Wi-Fi scan start failed with error: %s", esp_err_to_name(err));
|
|
is_scanning = false;
|
|
return err;
|
|
}
|
|
|
|
uint16_t retries_remaining = 10;
|
|
while (is_scanning) {
|
|
retries_remaining--;
|
|
if (retries_remaining == 0) {
|
|
is_scanning = false;
|
|
return ESP_FAIL;
|
|
}
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Wi-Fi networks found: %d", ap_number);
|
|
if (ap_number == 0) {
|
|
ESP_LOGW(TAG, "No Wi-Fi networks found");
|
|
}
|
|
|
|
*ap_count = ap_number;
|
|
memset(ap_records, 0, (*ap_count) * sizeof(wifi_ap_record_simple_t));
|
|
for (int i = 0; i < ap_number; i++) {
|
|
memcpy(ap_records[i].ssid, ap_info[i].ssid, sizeof(ap_records[i].ssid));
|
|
ap_records[i].rssi = ap_info[i].rssi;
|
|
ap_records[i].authmode = ap_info[i].authmode;
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Finished Wi-Fi scan!");
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
static void event_handler(void * arg, esp_event_base_t event_base, int32_t event_id, void * event_data)
|
|
{
|
|
GlobalState *GLOBAL_STATE = (GlobalState *)arg;
|
|
if (event_base == WIFI_EVENT)
|
|
{
|
|
if (event_id == WIFI_EVENT_SCAN_DONE) {
|
|
esp_wifi_scan_get_ap_num(&ap_number);
|
|
ESP_LOGI(TAG, "Wi-Fi Scan Done");
|
|
if (esp_wifi_scan_get_ap_records(&ap_number, ap_info) != ESP_OK) {
|
|
ESP_LOGI(TAG, "Failed esp_wifi_scan_get_ap_records");
|
|
}
|
|
is_scanning = false;
|
|
}
|
|
|
|
if (is_scanning) {
|
|
ESP_LOGI(TAG, "Still scanning, ignore wifi event.");
|
|
return;
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_STA_START) {
|
|
ESP_LOGI(TAG, "Connecting...");
|
|
strcpy(GLOBAL_STATE->SYSTEM_MODULE.wifi_status, "Connecting...");
|
|
esp_wifi_connect();
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_STA_CONNECTED) {
|
|
ESP_LOGI(TAG, "Connected!");
|
|
strcpy(GLOBAL_STATE->SYSTEM_MODULE.wifi_status, "Connected!");
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_STA_DISCONNECTED) {
|
|
wifi_event_sta_disconnected_t* event = (wifi_event_sta_disconnected_t*) event_data;
|
|
if (event->reason == WIFI_REASON_ROAMING) {
|
|
ESP_LOGI(TAG, "We are roaming, nothing to do");
|
|
return;
|
|
}
|
|
|
|
ESP_LOGI(TAG, "Could not connect to '%s' [rssi %d]: reason %d", event->ssid, event->rssi, event->reason);
|
|
|
|
if (clients_connected_to_ap > 0) {
|
|
ESP_LOGI(TAG, "Client(s) connected to AP, not retrying...");
|
|
sprintf(GLOBAL_STATE->SYSTEM_MODULE.wifi_status, "Config AP connected!");
|
|
return;
|
|
}
|
|
|
|
sprintf(GLOBAL_STATE->SYSTEM_MODULE.wifi_status, "%s (Error %d, retry #%d)", get_wifi_reason_string(event->reason), event->reason, s_retry_num);
|
|
ESP_LOGI(TAG, "Wi-Fi status: %s", GLOBAL_STATE->SYSTEM_MODULE.wifi_status);
|
|
|
|
// Wait a little
|
|
vTaskDelay(5000 / portTICK_PERIOD_MS);
|
|
|
|
s_retry_num++;
|
|
ESP_LOGI(TAG, "Retrying Wi-Fi connection...");
|
|
esp_wifi_connect();
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_AP_START) {
|
|
ESP_LOGI(TAG, "Configuration Access Point enabled");
|
|
GLOBAL_STATE->SYSTEM_MODULE.ap_enabled = true;
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_AP_STOP) {
|
|
ESP_LOGI(TAG, "Configuration Access Point disabled");
|
|
GLOBAL_STATE->SYSTEM_MODULE.ap_enabled = false;
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_AP_STACONNECTED) {
|
|
clients_connected_to_ap += 1;
|
|
}
|
|
|
|
if (event_id == WIFI_EVENT_AP_STADISCONNECTED) {
|
|
clients_connected_to_ap -= 1;
|
|
}
|
|
}
|
|
|
|
if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) {
|
|
ip_event_got_ip_t * event = (ip_event_got_ip_t *) event_data;
|
|
snprintf(GLOBAL_STATE->SYSTEM_MODULE.ip_addr_str, IP4ADDR_STRLEN_MAX, IPSTR, IP2STR(&event->ip_info.ip));
|
|
|
|
ESP_LOGI(TAG, "IP Address: %s", GLOBAL_STATE->SYSTEM_MODULE.ip_addr_str);
|
|
s_retry_num = 0;
|
|
|
|
GLOBAL_STATE->SYSTEM_MODULE.is_connected = true;
|
|
|
|
ESP_LOGI(TAG, "Connected to SSID: %s", GLOBAL_STATE->SYSTEM_MODULE.ssid);
|
|
|
|
wifi_softap_off();
|
|
}
|
|
}
|
|
|
|
esp_netif_t * wifi_init_softap(char * ap_ssid)
|
|
{
|
|
esp_netif_t * esp_netif_ap = esp_netif_create_default_wifi_ap();
|
|
|
|
uint8_t mac[6];
|
|
esp_wifi_get_mac(ESP_IF_WIFI_AP, mac);
|
|
// Format the last 4 bytes of the MAC address as a hexadecimal string
|
|
snprintf(ap_ssid, 32, "Bitaxe_%02X%02X", mac[4], mac[5]);
|
|
|
|
wifi_config_t wifi_ap_config;
|
|
memset(&wifi_ap_config, 0, sizeof(wifi_ap_config)); // Clear the structure
|
|
strncpy((char *) wifi_ap_config.ap.ssid, ap_ssid, sizeof(wifi_ap_config.ap.ssid));
|
|
wifi_ap_config.ap.ssid_len = strlen(ap_ssid);
|
|
wifi_ap_config.ap.channel = 1;
|
|
wifi_ap_config.ap.max_connection = 10;
|
|
wifi_ap_config.ap.authmode = WIFI_AUTH_OPEN;
|
|
wifi_ap_config.ap.pmf_cfg.required = false;
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_AP, &wifi_ap_config));
|
|
|
|
return esp_netif_ap;
|
|
}
|
|
|
|
void toggle_wifi_softap(void)
|
|
{
|
|
wifi_mode_t mode = WIFI_MODE_NULL;
|
|
ESP_ERROR_CHECK(esp_wifi_get_mode(&mode));
|
|
|
|
if (mode == WIFI_MODE_APSTA) {
|
|
wifi_softap_off();
|
|
} else {
|
|
wifi_softap_on();
|
|
}
|
|
}
|
|
|
|
static void wifi_softap_off(void)
|
|
{
|
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA));
|
|
}
|
|
|
|
static void wifi_softap_on(void)
|
|
{
|
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_APSTA));
|
|
}
|
|
|
|
/* Initialize wifi station */
|
|
esp_netif_t * wifi_init_sta(const char * wifi_ssid, const char * wifi_pass)
|
|
{
|
|
esp_netif_t * esp_netif_sta = esp_netif_create_default_wifi_sta();
|
|
|
|
/* Authmode threshold resets to WPA2 as default if password matches WPA2 standards (pasword len => 8).
|
|
* If you want to connect the device to deprecated WEP/WPA networks, Please set the threshold value
|
|
* to WIFI_AUTH_WEP/WIFI_AUTH_WPA_PSK and set the password with length and format matching to
|
|
* WIFI_AUTH_WEP/WIFI_AUTH_WPA_PSK standards.
|
|
*/
|
|
wifi_auth_mode_t authmode;
|
|
|
|
if (strlen(wifi_pass) == 0) {
|
|
ESP_LOGI(TAG, "No Wi-Fi password provided, using open network");
|
|
authmode = WIFI_AUTH_OPEN;
|
|
} else {
|
|
ESP_LOGI(TAG, "Wi-Fi Password provided, using WPA2");
|
|
authmode = WIFI_AUTH_WPA2_PSK;
|
|
}
|
|
|
|
wifi_config_t wifi_sta_config = {
|
|
.sta =
|
|
{
|
|
.threshold.authmode = authmode,
|
|
.btm_enabled = 1,
|
|
.rm_enabled = 1,
|
|
.scan_method = WIFI_ALL_CHANNEL_SCAN,
|
|
.sort_method = WIFI_CONNECT_AP_BY_SIGNAL,
|
|
.pmf_cfg =
|
|
{
|
|
.capable = true,
|
|
.required = false
|
|
},
|
|
},
|
|
};
|
|
|
|
strncpy((char *) wifi_sta_config.sta.ssid, wifi_ssid, sizeof(wifi_sta_config.sta.ssid));
|
|
wifi_sta_config.sta.ssid[sizeof(wifi_sta_config.sta.ssid) - 1] = '\0';
|
|
|
|
if (authmode != WIFI_AUTH_OPEN) {
|
|
strncpy((char *) wifi_sta_config.sta.password, wifi_pass, sizeof(wifi_sta_config.sta.password));
|
|
wifi_sta_config.sta.password[sizeof(wifi_sta_config.sta.password) - 1] = '\0';
|
|
}
|
|
// strncpy((char *) wifi_sta_config.sta.password, wifi_pass, 63);
|
|
// wifi_sta_config.sta.password[63] = '\0';
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_STA, &wifi_sta_config));
|
|
|
|
ESP_LOGI(TAG, "wifi_init_sta finished.");
|
|
|
|
return esp_netif_sta;
|
|
}
|
|
|
|
void wifi_init(void * pvParameters)
|
|
{
|
|
GlobalState * GLOBAL_STATE = (GlobalState *) pvParameters;
|
|
|
|
char * wifi_ssid = nvs_config_get_string(NVS_CONFIG_WIFI_SSID, CONFIG_ESP_WIFI_SSID);
|
|
// copy the wifi ssid to the global state
|
|
strncpy(GLOBAL_STATE->SYSTEM_MODULE.ssid, wifi_ssid, sizeof(GLOBAL_STATE->SYSTEM_MODULE.ssid));
|
|
GLOBAL_STATE->SYSTEM_MODULE.ssid[sizeof(GLOBAL_STATE->SYSTEM_MODULE.ssid)-1] = 0;
|
|
|
|
free(wifi_ssid);
|
|
|
|
ESP_ERROR_CHECK(esp_netif_init());
|
|
ESP_ERROR_CHECK(esp_event_loop_create_default());
|
|
|
|
esp_event_handler_instance_t instance_any_id;
|
|
esp_event_handler_instance_t instance_got_ip;
|
|
ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT, ESP_EVENT_ANY_ID, &event_handler, GLOBAL_STATE, &instance_any_id));
|
|
ESP_ERROR_CHECK(esp_event_handler_instance_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &event_handler, GLOBAL_STATE, &instance_got_ip));
|
|
|
|
/* Initialize Wi-Fi */
|
|
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
|
ESP_ERROR_CHECK(esp_wifi_init(&cfg));
|
|
|
|
wifi_softap_on();
|
|
|
|
/* Initialize AP */
|
|
wifi_init_softap(GLOBAL_STATE->SYSTEM_MODULE.ap_ssid);
|
|
|
|
/* Skip connection if SSID is null */
|
|
if (strlen(GLOBAL_STATE->SYSTEM_MODULE.ssid) == 0) {
|
|
ESP_LOGI(TAG, "No WiFi SSID provided, skipping connection");
|
|
|
|
/* Start WiFi */
|
|
ESP_ERROR_CHECK(esp_wifi_start());
|
|
|
|
/* Disable power savings for best performance */
|
|
ESP_ERROR_CHECK(esp_wifi_set_ps(WIFI_PS_NONE));
|
|
|
|
return;
|
|
} else {
|
|
|
|
char * wifi_pass = nvs_config_get_string(NVS_CONFIG_WIFI_PASS, CONFIG_ESP_WIFI_PASSWORD);
|
|
|
|
/* Initialize STA */
|
|
ESP_LOGI(TAG, "ESP_WIFI_MODE_STA");
|
|
esp_netif_t * esp_netif_sta = wifi_init_sta(GLOBAL_STATE->SYSTEM_MODULE.ssid, wifi_pass);
|
|
|
|
free(wifi_pass);
|
|
|
|
/* Start Wi-Fi */
|
|
ESP_ERROR_CHECK(esp_wifi_start());
|
|
|
|
/* Disable power savings for best performance */
|
|
ESP_ERROR_CHECK(esp_wifi_set_ps(WIFI_PS_NONE));
|
|
|
|
char * hostname = nvs_config_get_string(NVS_CONFIG_HOSTNAME, CONFIG_LWIP_LOCAL_HOSTNAME);
|
|
|
|
/* Set Hostname */
|
|
esp_err_t err = esp_netif_set_hostname(esp_netif_sta, hostname);
|
|
if (err != ERR_OK) {
|
|
ESP_LOGW(TAG, "esp_netif_set_hostname failed: %s", esp_err_to_name(err));
|
|
} else {
|
|
ESP_LOGI(TAG, "ESP_WIFI setting hostname to: %s", hostname);
|
|
}
|
|
|
|
free(hostname);
|
|
|
|
ESP_LOGI(TAG, "wifi_init_sta finished.");
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
typedef struct {
|
|
int reason;
|
|
const char *description;
|
|
} wifi_reason_desc_t;
|
|
|
|
static const wifi_reason_desc_t wifi_reasons[] = {
|
|
{WIFI_REASON_UNSPECIFIED, "Unspecified reason"},
|
|
{WIFI_REASON_AUTH_EXPIRE, "Authentication expired"},
|
|
{WIFI_REASON_AUTH_LEAVE, "Deauthentication due to leaving"},
|
|
{WIFI_REASON_DISASSOC_DUE_TO_INACTIVITY, "Disassociated due to inactivity"},
|
|
{WIFI_REASON_ASSOC_TOOMANY, "Too many associated stations"},
|
|
{WIFI_REASON_CLASS2_FRAME_FROM_NONAUTH_STA, "Class 2 frame from non-authenticated STA"},
|
|
{WIFI_REASON_CLASS3_FRAME_FROM_NONASSOC_STA, "Class 3 frame from non-associated STA"},
|
|
{WIFI_REASON_ASSOC_LEAVE, "Deassociated due to leaving"},
|
|
{WIFI_REASON_ASSOC_NOT_AUTHED, "Association but not authenticated"},
|
|
{WIFI_REASON_DISASSOC_PWRCAP_BAD, "Disassociated due to poor power capability"},
|
|
{WIFI_REASON_DISASSOC_SUPCHAN_BAD, "Disassociated due to unsupported channel"},
|
|
{WIFI_REASON_BSS_TRANSITION_DISASSOC, "Disassociated due to BSS transition"},
|
|
{WIFI_REASON_IE_INVALID, "Invalid Information Element"},
|
|
{WIFI_REASON_MIC_FAILURE, "MIC failure detected"},
|
|
{WIFI_REASON_4WAY_HANDSHAKE_TIMEOUT, "Incorrect password entered"}, // 4-way handshake timeout
|
|
{WIFI_REASON_GROUP_KEY_UPDATE_TIMEOUT, "Group key update timeout"},
|
|
{WIFI_REASON_IE_IN_4WAY_DIFFERS, "IE differs in 4-way handshake"},
|
|
{WIFI_REASON_GROUP_CIPHER_INVALID, "Invalid group cipher"},
|
|
{WIFI_REASON_PAIRWISE_CIPHER_INVALID, "Invalid pairwise cipher"},
|
|
{WIFI_REASON_AKMP_INVALID, "Invalid AKMP"},
|
|
{WIFI_REASON_UNSUPP_RSN_IE_VERSION, "Unsupported RSN IE version"},
|
|
{WIFI_REASON_INVALID_RSN_IE_CAP, "Invalid RSN IE capabilities"},
|
|
{WIFI_REASON_802_1X_AUTH_FAILED, "802.1X authentication failed"},
|
|
{WIFI_REASON_CIPHER_SUITE_REJECTED, "Cipher suite rejected"},
|
|
{WIFI_REASON_TDLS_PEER_UNREACHABLE, "TDLS peer unreachable"},
|
|
{WIFI_REASON_TDLS_UNSPECIFIED, "TDLS unspecified error"},
|
|
{WIFI_REASON_SSP_REQUESTED_DISASSOC, "SSP requested disassociation"},
|
|
{WIFI_REASON_NO_SSP_ROAMING_AGREEMENT, "No SSP roaming agreement"},
|
|
{WIFI_REASON_BAD_CIPHER_OR_AKM, "Bad cipher or AKM"},
|
|
{WIFI_REASON_NOT_AUTHORIZED_THIS_LOCATION, "Not authorized in this location"},
|
|
{WIFI_REASON_SERVICE_CHANGE_PERCLUDES_TS, "Service change precludes TS"},
|
|
{WIFI_REASON_UNSPECIFIED_QOS, "Unspecified QoS reason"},
|
|
{WIFI_REASON_NOT_ENOUGH_BANDWIDTH, "Not enough bandwidth"},
|
|
{WIFI_REASON_MISSING_ACKS, "Missing ACKs"},
|
|
{WIFI_REASON_EXCEEDED_TXOP, "Exceeded TXOP"},
|
|
{WIFI_REASON_STA_LEAVING, "Station leaving"},
|
|
{WIFI_REASON_END_BA, "End of Block Ack"},
|
|
{WIFI_REASON_UNKNOWN_BA, "Unknown Block Ack"},
|
|
{WIFI_REASON_TIMEOUT, "Timeout occured"},
|
|
{WIFI_REASON_PEER_INITIATED, "Peer-initiated disassociation"},
|
|
{WIFI_REASON_AP_INITIATED, "Access Point-initiated disassociation"},
|
|
{WIFI_REASON_INVALID_FT_ACTION_FRAME_COUNT, "Invalid FT action frame count"},
|
|
{WIFI_REASON_INVALID_PMKID, "Invalid PMKID"},
|
|
{WIFI_REASON_INVALID_MDE, "Invalid MDE"},
|
|
{WIFI_REASON_INVALID_FTE, "Invalid FTE"},
|
|
{WIFI_REASON_TRANSMISSION_LINK_ESTABLISH_FAILED, "Transmission link establishment failed"},
|
|
{WIFI_REASON_ALTERATIVE_CHANNEL_OCCUPIED, "Alternative channel occupied"},
|
|
{WIFI_REASON_BEACON_TIMEOUT, "Beacon timeout"},
|
|
{WIFI_REASON_NO_AP_FOUND, "No access point found"},
|
|
{WIFI_REASON_AUTH_FAIL, "Authentication failed"},
|
|
{WIFI_REASON_ASSOC_FAIL, "Association failed"},
|
|
{WIFI_REASON_HANDSHAKE_TIMEOUT, "Handshake timeout"},
|
|
{WIFI_REASON_CONNECTION_FAIL, "Connection failed"},
|
|
{WIFI_REASON_AP_TSF_RESET, "Access point TSF reset"},
|
|
{WIFI_REASON_ROAMING, "Roaming in progress"},
|
|
{WIFI_REASON_ASSOC_COMEBACK_TIME_TOO_LONG, "Association comeback time too long"},
|
|
{WIFI_REASON_SA_QUERY_TIMEOUT, "SA query timeout"},
|
|
{WIFI_REASON_NO_AP_FOUND_W_COMPATIBLE_SECURITY, "No access point found with compatible security"},
|
|
{WIFI_REASON_NO_AP_FOUND_IN_AUTHMODE_THRESHOLD, "No access point found in auth mode threshold"},
|
|
{WIFI_REASON_NO_AP_FOUND_IN_RSSI_THRESHOLD, "No access point found in RSSI threshold"},
|
|
{0, NULL},
|
|
};
|
|
|
|
static const char *get_wifi_reason_string(int reason) {
|
|
for (int i = 0; wifi_reasons[i].reason != 0; i++) {
|
|
if (wifi_reasons[i].reason == reason) {
|
|
return wifi_reasons[i].description;
|
|
}
|
|
}
|
|
return "Unknown error";
|
|
}
|