Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable Starting Smart config Thread #1268

Merged
merged 1 commit into from
Mar 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ int Esp32_Wireless_Open(int index, HAL_Configuration_NetworkInterface * pConfig
{
// Start Samrt config (if enabled (TODO) )
// probably best to have a config flag for this, but for now just start if no Wireless config set up
Start_wifi_smart_config();

// FIXME
// Disable for now, When the smart_config starts it scans for wireless AP
// If it doesn't find any AP it ends up with a exception which causes the device to restart
//Start_wifi_smart_config();
}

return Esp32_Wait_NetNumber(ESP_IF_WIFI_STA);
Expand Down