Index: sources/ApplicationController.cpp =================================================================== diff -u -r8be0073f796109578435eaa14edc7d3b9a2352da -re5577fbd781ded0678882680d5d31f08f56c9c68 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 8be0073f796109578435eaa14edc7d3b9a2352da) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision e5577fbd781ded0678882680d5d31f08f56c9c68) @@ -93,6 +93,8 @@ this , SLOT(onPOSTWiFi (bool))); connect(&_post , SIGNAL( didBluetooth(bool)), this , SLOT(onPOSTBluetooth(bool))); + connect(&_post , SIGNAL( didCloudSync(bool)), + this , SLOT(onPOSTCloudSync(bool))); connect(&_post , SIGNAL( didFail (Gui::GuiAlarmID )), this , SLOT(onPOSTFail (Gui::GuiAlarmID ))); @@ -541,6 +543,7 @@ if (vPass) { _WifiInterface.doStart(); } + emit didPOSTWiFi(vPass); } /*! @@ -554,10 +557,20 @@ } else { _BluetoothInterface.doNotifyStatePOSTError(); + emit didPOSTBluetooth(vPass); } } /*! + * \brief ApplicationController::onPOSTCloudSync + * \details Notifies the CloudSync POST status + */ +void ApplicationController::onPOSTCloudSync(bool vPass) +{ + emit didPOSTCloudSync(vPass); +} + +/*! * \brief ApplicationController::onPOSTFail * \details sends the Alarm Trigger message, used when the POST Failed. * \param vAlarmID