Index: sources/ApplicationController.cpp =================================================================== diff -u -rcb71895ec67532240a7002d8f6268bc622710347 -r472c10e72a8d278f13d2343f9c81c1def14490ff --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision cb71895ec67532240a7002d8f6268bc622710347) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 472c10e72a8d278f13d2343f9c81c1def14490ff) @@ -26,7 +26,6 @@ #include "GuiController.h" #include "Settings.h" #include "MSettings.h" -#include "WifiInterface.h" #include "BluetoothInterface.h" #include "VAdjustmentVersions.h" @@ -586,7 +585,7 @@ */ void ApplicationController::onPOSTWiFi(bool vPass) { if (vPass) { - _WifiInterface.doStart(); + // _WifiInterface.doStart(); // =========================================================== FIX ME } // sending the data first, therefore in the slot for the didPOST we have the vPass and the Data to decide to use the data or not. emit didPOSTWirelessData(_post.macWireless()); @@ -669,11 +668,15 @@ /// in manufacturing or update mode the configurations must reside in /root/home /// therefore the settings can be initialized after POST. +#ifdef LEAHI_DIGI_BOARD + initSettings(); +#else #ifdef BUILD_FOR_DESKTOP initSettings(); #else if ( gEnableManufacturing || gEnableUpdating ) initSettings(); #endif +#endif } void ApplicationController::onQuitApplication()