Issue with WiFi AP #162
-
|
I have followed along the Wifi Connection videos for connection as both AP and then STA. Below in my code I have set the ssid to "My_ESP" and pw tyo "1234". I also get a wiggly line warning in both wifi_connect routines under "ESP_IF_WIFI_AP" and again in "ESP_IF_)WIFI_STA" in the line esp_wifi_set_config The error states Warning: implicit conversion from enumeration type "esp_interface_t" to nfiofferent enumeration type "wifi_interface_t". Here is my main calling task code void wifi_connect(void * params) ...... And the connect code for AP void wifi_connect_ap(const char *ssid, const char *pass) } |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
-
|
That was it. my pw was less than 8 chars. |
Beta Was this translation helpful? Give feedback.
That was it. my pw was less than 8 chars.