When running the wifi example "wpa2_enterprise" it seems that the code as-is does not load the password in the wifi_config setup.
So testing the connection without the password did not get an IP address.
Here is what was changed... we added the password and bssid_set.
Code: Select all
wifi_config_t wifi_config = {
.sta = {
.ssid = EXAMPLE_WIFI_SSID,
.password = EXAMPLE_EAP_PASSWORD,
.bssid_set = 0
},
};
Thanks.