Cannot connect to WIFI
Posted: Mon Apr 15, 2024 8:01 pm
I'm getting some troubles with my code trying to connect to one Wifi station. I tried changing everything, copied samples from everywhere and nothing worked. The hardware works correctly, because I tried the Arduino IDE Code and it worked
Code of the handler:
The connect function:
And the logs:
Any printf from wifi_event_handler are printed, I do not know if the problem is that I did not register the handler correctly or if I have something wrong in my code.
Thanks for helping me!!
I tried different version of codes from internet, ChatGPT, idf github and nothing worked
Code of the handler:
Code: Select all
/* FreeRTOS event group to signal when we are connected*/
static EventGroupHandle_t s_wifi_event_group;
/* The event group allows multiple bits for each event, but we only care about two events:
* - we are connected to the AP with an IP
* - we failed to connect after the maximum amount of retries */
#define WIFI_CONNECTED_BIT BIT0
#define WIFI_FAIL_BIT BIT1
static int s_retry_num = 0;
static void wifi_event_handler(void* arg, esp_event_base_t event_base,
int32_t event_id, void* event_data)
{
if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) {
esp_wifi_connect();
} else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) {
if (s_retry_num < WIFI_ESP_MAXIMUM_RETRY) {
esp_wifi_connect();
s_retry_num++;
#ifdef VERBOSE
printf("Retry to connect to the AP");
#endif
} else {
xEventGroupSetBits(s_wifi_event_group, WIFI_FAIL_BIT);
}
#ifdef VERBOSE
printf("Connect to the AP fail");
#endif
} else 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;
#ifdef VERBOSE
printf("Got ip:" IPSTR, IP2STR(&event->ip_info.ip));
#endif
s_retry_num = 0;
xEventGroupSetBits(s_wifi_event_group, WIFI_CONNECTED_BIT);
}
}
The connect function:
Code: Select all
int wifi_connect(uint8_t* ssid, uint8_t* password) {
nvs_flash_init();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
esp_wifi_init(&cfg);
s_wifi_event_group = xEventGroupCreate();
static wifi_config_t wifi_config = {
.sta = {
.ssid = "",
.password = "",
},
};
strcpy((char*)wifi_config.sta.ssid, (const char*)ssid); // copy chars from hardcoded configs to struct
strcpy((char*)wifi_config.sta.password, (const char*)password);
#ifdef VERBOSE
printf("SSID: %s\n", wifi_config.sta.ssid);
printf("Password: %s\n", wifi_config.sta.password);
#endif
esp_event_handler_register(WIFI_EVENT, ESP_EVENT_ANY_ID, wifi_event_handler, NULL);
esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, wifi_event_handler, NULL);
esp_wifi_set_mode(WIFI_MODE_STA);
esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config);
esp_wifi_start();
esp_wifi_connect();
#ifdef VERBOSE
printf("Connecting to %s\n", ssid);
#endif
EventBits_t bits = xEventGroupWaitBits(s_wifi_event_group, WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, pdFALSE, pdFALSE, WIFI_ESP_CONN_TIMEOUT);
esp_event_handler_unregister(IP_EVENT, IP_EVENT_STA_GOT_IP, wifi_event_handler);
esp_event_handler_unregister(WIFI_EVENT, ESP_EVENT_ANY_ID, wifi_event_handler);
if (bits & WIFI_CONNECTED_BIT) {
#ifdef VERBOSE
printf("Connected to ssid:%s, password:%s\n", ssid, password);
#endif
return 0;
} else if (bits & WIFI_FAIL_BIT) {
#ifdef VERBOSE
printf("Failed to connect to ssid:%s, password:%s\n", ssid, password);
#endif
return 1;
} else {
#ifdef VERBOSE
printf("Error connecting. Reset 0x00\n");
#endif
return -1;
}
}
And the logs:
Code: Select all
SSID: JM_limpia_el_baño
Password: LaTienesEnElRouter
Connecting to JM_limpia_el_baño
Error connecting. Reset 0x00
Function return: 2;
Any printf from wifi_event_handler are printed, I do not know if the problem is that I did not register the handler correctly or if I have something wrong in my code.
Thanks for helping me!!
I tried different version of codes from internet, ChatGPT, idf github and nothing worked