Index: main.cpp =================================================================== diff -u -r506a9e3db1a20bda1685e38c5e9041005c9a4a4f -r7077e38c74db9cccb5496ffefcf8936c0916de76 --- main.cpp (.../main.cpp) (revision 506a9e3db1a20bda1685e38c5e9041005c9a4a4f) +++ main.cpp (.../main.cpp) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) @@ -47,7 +47,10 @@ #include "GuiController.h" #include "Logger.h" #include "DriveWatcher.h" +#include "WifiInterface.h" + #include "Threads.h" +// #include "FileHandler.h" // kernel #include @@ -287,6 +290,9 @@ //! - Parse the command line arguments commandlineParse(); + // SYSTEM TEST FOR INSTRUCTIONS WHEN THERE IS NO PORT AVAILABLE + // Storage::FileHandler::copyFolder(QString(Storage::USB_Mount_Point) + "Instructions", QString(Storage::Settings_Path_Name)); + //! - Translation initialization QTranslator translator; bool trLoaded = translator.load(QLocale(), app.applicationName(), QLatin1String("_"), QLatin1String(":/translations")); @@ -344,6 +350,10 @@ //! - Initializing Main Timer _MainTimer.init(); + //! - Initializing WiFi Interface + _WifiInterface.init(Threads::_Wifi_Thread); + _WifiInterface.start(); + //! - Initialize the QML Viewer and starts GUI int app_exec = -1; LOG_DEBUG("UI Initializing");